開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
None
問題(Question):
為什麼用findwindow找combobox的hanlder都找不到,可是button卻可以??
餵入的資料(Input):
這是我找尋的code, currChild卻是0
IntPtr mWin = FindWindow("ThunderRT6FormDC", "POSDLLDemo");
IntPtr mFrame = FindWindowEx(mWin, IntPtr.Zero, "ThunderRT6Frame", "Port Config");
currChild = FindWindowEx(mFrame, prevChild, "ThunderRT6ComboBox", "COM1");
預期的正確結果(Expected Output):
取得combobox的handler
錯誤結果(Wrong Output):
NULL
程式碼(Code):(請善用置底文網頁, 記得排版)
補充說明(Supplement):
我用C++寫的,只不過我要找的目標是用VB寫的,這次沒有迷路