提问个比较弱智的问题,为什么在特定条件下tab控件上的input会显示不正常
只要input在tab控件内,在执行button1的操作后,input1的边框消失了!,想了很久,还是没明白原因在哪,同样的现象还出现在_IECreate 等操作.
请各位高人解惑{:face (382):}#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 549, 346)
$Tab1 = GUICtrlCreateTab(24, 32, 489, 289)
GUICtrlCreateTabItem("1")
$Input1 = GUICtrlCreateInput("为什么这个input控件在点击button1后显示不全", 88, 136, 345, 21)
$Button1 = GUICtrlCreateButton("Button1", 168, 208, 193, 33)
GUICtrlCreateTabItem("2")
GUICtrlCreateTabItem("")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
ShellExecute('Explorer', '/select, ' & @ComSpec)
EndSwitch
WEnd
XP 下面是正常的… 回复 1# tubaba
8.1 也未见异常..... 请问楼上二位用的autoti是什么版本? 回复 4# tubaba
3.3.10.2 3.3.6.1 WIN7 64 3.10.2无问题 3.3.7.15
win7 x64正常 非常感谢大家的反馈,我的是3.3.6.1 在winxp 32位试了下,还真是显示正常,下班回去我试试3.3.10.2 在win7 x64下的情况. 上面发生的那情况是3.3.6.1在win7x64下的表现{:face (88):}
页:
[1]