Sorry for this newbie question, years of VB6 programming must have dulled my brain:
I'm trying to compile the sample program "browser_test2.iwb" with IWBasic 2 (compiler version 2.094), and am getting the following errors:
Compiling...
browser_test2.iwb
File: C:\Documents and Settings\All Users\Documents\IWBasic\projects\browser_test2.iwb (96) Error: syntax error - ,
File: C:\Documents and Settings\All Users\Documents\IWBasic\projects\browser_test2.iwb (97) Error: syntax error - ,
etc.
This is on an Windows XP SP3 machine, and I haven't changed any of the IWBasic settings (as I'm still figuring out what they do). The "simple_browser.iwb" sample compiled and ran fine.
Is this a known problem?
			
			
			
				compiler version 2.094 is your problem
should be 2.090
you've got the version that has caused other people problems.
LarryMc
			
			
			
				Larry,
Thanks for the quick reply.
When is an updated version of IWBasic expected?. 
Otherwise, how can I get compiler version 2.090?
			
			
			
				check your email
LarryMc
			
			
			
				This is a compiler (yacc) problem. For a temporary solution, add parenthesis to the commands :
old: OPENWINDOW .win, .....
new: OPENWINDOW(.win, ..... )
Or use the attached sample.