Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (262 - 264 of 3893)

Ticket Resolution Summary Owner Reporter
#975 Fixed GUICtrlCreateCheckbox() on tabs. Valik GEOSoft
Description

The code is pretty self explanatory. Black areas (desktop color) where the checkbox text should be. If You comment out the Tab items then it changes to gray and if you further comment out the tab itself everything is fine.


$Frm_Main = GUICreate("Test Form", 400, 300)
$Tab = GUICtrlCreateTab( 0, 0, 400, 300)
$hTab_1 = GUICtrlCreateTabItem("Tab 1")
$hCheck = GUICtrlCreateCheckBox("Demonstartion", 10, 30, 150, 20)
GUICtrlCreateTabItem("")
GUISetState()
While 1
   $Msg = GUIGetMsg()
   Switch $Msg
      Case -3
         Exit
   EndSwitch
WEnd

Also if you comment out the tab items (leave the tab in) and set the GUI background color to 0xFFFFFF then it doesn't show the grey area.

#976 Fixed InetGet with more than 2 params fails Au3Check ProgAndy
Description

When you specify more than 2 parameters in InetGet, you will get an error from Au3Check: ERROR: InetGet() [built-in] called with wrong number of args. Example: InetGet("http://www.autoitscript.com","C:\AutoIt.htm",1)

#979 Fixed _ArrayDisplay() - just old/incorrect syntax in header comment Gary Zedna
Description

"C:\Program Files\AutoIt3\Include\array.au3"

now it's (3.3.1)

; Syntax.........: _ArrayDisplay(Const ByRef $avArray[, $sTitle = "Array: ListView Display"[, $iItemLimit = -1[, $iTranspose = 0[, $sSeparator = ""[, $sReplace = "|"]]]]])

should be:

; Syntax.........: _ArrayDisplay(Const ByRef $avArray[, $sTitle = "Array: ListView Display"[, $iItemLimit = -1[, $iTranspose = 0[, $sSeparator = ""[, $sReplace = "|"[, $sHeader = ""]]]]]])
Note: See TracQuery for help on using queries.