Arlen Posted February 16, 2019 Posted February 16, 2019 (edited) Why do I get this error "Unable to parse line.:" when I try to run the code below... #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> $Form1_1 = GUICreate("URL", 324, 140, 470, 291, -1, -1) $Button1 = GUICtrlCreateButton("ADD", 160, 80, 147, 49) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 MsgBox(0, "", "hi") EndSwitch WEnd Autoit (3.3.14.5) Edited February 18, 2019 by Melba23 User problem - not bug
Arlen Posted February 16, 2019 Author Posted February 16, 2019 2 minutes ago, Subz said: Works fine for me, which line isn't parsing? Found the issue, I had 2 empty lines at the bottom of the script.
jchd Posted February 17, 2019 Posted February 17, 2019 This doesn't explain that! This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
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