[Ql-Users] Turbo Help Please

2008-04-23 Thread Matrassyl
Am trying to compile a program with turbo 5.06. I am getting a codegen error message Duplicate Label line 9480. Line 9480 contains only END IF of a properly constructed IF END IF expression. Duplicate Label is not mentioned in the manual as a codegen error report. Can anyone clarify

Re: [Ql-Users] Turbo Help Please

2008-04-23 Thread Malcolm Cadman
In message [EMAIL PROTECTED], [EMAIL PROTECTED] writes Hi, Are you sure that every IF statement has an END IF ? Particularly when nested loops and conditions are coded. I know that Turbo does insist on correct syntax, without any shortcuts that the BASIC parser may sometimes accept. Which is

Re: [Ql-Users] qpc2 and asus eee

2008-04-23 Thread Malcolm Cadman
In message [EMAIL PROTECTED], Mike Phillips [EMAIL PROTECTED] writes Hi, I was wondering what the actual performance of QPC2 is like when running on WIN XP on the Asus PC ( which has Linux flavour as a basic OS ). I have QPC2 running on a PC with WIN XP ... so, just what is the comparison.

Re: [Ql-Users] Turbo Help Please

2008-04-23 Thread Matrassyl
In a message dated 23/04/2008 19:59:57 GMT Daylight Time, [EMAIL PROTECTED] writes: Are you sure that every IF statement has an END IF ? Particularly when nested loops and conditions are coded Hi Malcolm, I am fairly sure that they do it is one of the first things I looked for. Duncan

Re: [Ql-Users] Turbo Help Please

2008-04-23 Thread Gerhard Plavec
In original SuperBASIC some (dubious) programm like IF a=b then FOR i=a TO b STEP 0.1 ELSE FOR i=a TO b STEP -0.1 ENDIF ... more commands ... END FOR i may run without any problem... But if you try to compile (Turbo or Liberator) some parser error will appear... you have to write