Search the Community
Showing results for tags 'IPAddress control'.
-
This is koda generated code. There is one commented line, ";_GUICtrlIpAddress_ShowHide($IPAddressBox, @SW_HIDE)". If it is commented out, the control appears on all tabs, whatever my tab selection. It it's not commented out, _GUICtrlIpAddress_ShowHide($IPAddressBox, @SW_SHOW) in the $TabSheet2 case does not make it reappear. I suppose it is hidden behind the tab. Is there a way to make this work? The code: #include #include #include #include #include #include #include #Region ### START Koda GUI section ### Form= $frmSelPrinter = GUICreate("X Coon Select Printer", 578, 351, 192, 124) $Tab1 = GUICtrlCreateTab(8, 8, 561, 329) $TabSheet1 = GUICtrlCreateTabItem("Use Windows Drivers") $lbPrinters = GUICtrlCreateList("", 24, 64, 529, 214) $Label1 = GUICtrlCreateLabel("Available Windows Drivers :", 24, 40, 136, 17) $btnSelectDriver = GUICtrlCreateButton("Select Driver", 24, 288, 137, 33) $TabSheet2 = GUICtrlCreateTabItem("use LPR") GUICtrlSetState(-1,$GUI_SHOW) $rbWinDrv = GUICtrlCreateRadio("Send jobs through Windows driver", 24, 48, 201, 17) $Radio1 = GUICtrlCreateRadio("Send jobs to an IP address", 288, 48, 201, 17) $lbWinDrivers = GUICtrlCreateList("", 24, 96, 241, 175) $IPAddressBox = _GUICtrlIpAddress_Create($frmSelPrinter, 296, 96, 249, 25) _GUICtrlIpAddress_Set($IPAddressBox, "0.0.0.0") ;_GUICtrlIpAddress_ShowHide($IPAddressBox, @SW_HIDE) $Label2 = GUICtrlCreateLabel("IP Address :", 288, 72, 61, 17) $Label3 = GUICtrlCreateLabel("Available Windows Drivers :", 24, 72, 136, 17) $btnSelDriver = GUICtrlCreateButton("Select Driver", 24, 296, 129, 25) $Button1 = GUICtrlCreateButton("Accept IP Address", 432, 296, 113, 25) GUICtrlCreateTabItem("") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit case $TabSheet1 ;case added outside of koda to allow switching tabs _GUICtrlIpAddress_ShowHide($IPAddressBox, @SW_HIDE) case $TabSheet2 ;case added outside of koda to allow switching tabs _GUICtrlIpAddress_ShowHide($IPAddressBox, @SW_SHOW) EndSwitch WEnd
- 2 replies
-
- IPAddress control
- TabSheet
-
(and 1 more)
Tagged with: