CmputrAce Posted June 24, 2009 Posted June 24, 2009 I pulled this from the help file to test the ListBox #AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 #include <GuiListBox.au3> $Debug_LB = False ; Check ClassName being passed to ListBox functions, set to True and use a handle to another control to see it work _Main() Func _Main() Local $hListBox ; Create GUI GUICreate("List Box Click Item_GUICtrlListBox_ClickItem", 400, 296) $hListBox = GUICtrlCreateList("", 2, 2, 396, 296) GUISetState() ; Add strings _GUICtrlListBox_BeginUpdate($hListBox) For $iI = 1 To 9 _GUICtrlListBox_AddString($hListBox, StringFormat("%03d : Random string", Random(1, 100, 1))) Next _GUICtrlListBox_EndUpdate($hListBox) ; Click an item _GUICtrlListBox_ClickItem($hListBox, 4, "left", True) ; Loop until user exits Do Until GUIGetMsg() = $GUI_EVENT_CLOSE GUIDelete() EndFunc ;==>_Main I get this message: Line 2 (File "C:\Devel\WinScript\AutoIt\test.au3") #include <GuiListBox.au3> Error: Error opening the file If I try to "Execute" GuiListBox.au3, I get: Line 1055 (File "C:P\Program Files\AutoIt3\Include\WinAPI.au3") Func _WinAPI_CreateFont($nHeight, $nWidth, $nEscape = 0, $nOrientn = 0, $fnWeight = $__WINAPCONSTANT_FW_NORMAL, $bItalic = False, $bUnderline = False, $bStrikeout = False, $nCharset = $__WINAPCONSTANT_DEFAULT_CHARSET, $nOutputPrec = $__WINAPCONSTANT_OUT_DEFAULT_PRECIS, $nClipPrec = $__WINAPCONSTANT_CLIP_DEFAULT_PRECIS, $nQuality = $__WINAPCONSTANT_DEFAULT_QUALITY, $nPitch = 0, $szFace = 'Arial') Error:Badly formatted "Func" statement. Any thoughts?
Zedna Posted June 24, 2009 Posted June 24, 2009 (File "C:P\Program Files\AutoIt3\Include\WinAPI.au3")There is bad path C:P\Program Files\... Resources UDF ResourcesEx UDF AutoIt Forum Search
CmputrAce Posted June 24, 2009 Author Posted June 24, 2009 There is bad path C:P\Program Files\...That was a typo: The error message is:Line 1055 (File "C:\Program Files\AutoIt3\Include\WinAPI.au3")Func _WinAPI_CreateFont($nHeight, $nWidth, $nEscape = 0, $nOrientn = 0, $fnWeight = $__WINAPCONSTANT_FW_NORMAL, $bItalic = False, $bUnderline = False, $bStrikeout = False, $nCharset = $__WINAPCONSTANT_DEFAULT_CHARSET, $nOutputPrec = $__WINAPCONSTANT_OUT_DEFAULT_PRECIS, $nClipPrec = $__WINAPCONSTANT_CLIP_DEFAULT_PRECIS, $nQuality = $__WINAPCONSTANT_DEFAULT_QUALITY, $nPitch = 0, $szFace = 'Arial')Error:Badly formatted "Func" statement.
CmputrAce Posted June 24, 2009 Author Posted June 24, 2009 Not sure why it happened, but I uninstalled AutoIt and reinstalled it. Case closed.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now