WizardOz Member Licensed User Longtime User Jul 31, 2011 #1 This code: B4X: Dim Tid_Liste() As String Dim Temp_global as Int For Temp_global = 2 To 6 Tid_Liste(Temp_global-1)=Tid_Liste(Temp_global) Next Temp_global trows this error: B4X: Tid_Liste(Temp_global-1)=Tid_Liste(Temp_global) javac 1.6.0_21 main.java:405: not a statement }_temp_global; ^ 1 error Why?????? Anyone?
This code: B4X: Dim Tid_Liste() As String Dim Temp_global as Int For Temp_global = 2 To 6 Tid_Liste(Temp_global-1)=Tid_Liste(Temp_global) Next Temp_global trows this error: B4X: Tid_Liste(Temp_global-1)=Tid_Liste(Temp_global) javac 1.6.0_21 main.java:405: not a statement }_temp_global; ^ 1 error Why?????? Anyone?
agraham Expert Licensed User Longtime User Jul 31, 2011 #2 Next Temp_global Next statements are not qualified in Basic4android. Upvote 0
WizardOz Member Licensed User Longtime User Jul 31, 2011 #3 aaand I will be answering this myself... B4X: For X = 1 to 10 ... Next X is not the way of B4A... This is the right path to non-error: B4X: For X = 1 to 10 ... Next So, I will be saying as Mr.Simpson does; "Dohh"... :signOops: Upvote 0
aaand I will be answering this myself... B4X: For X = 1 to 10 ... Next X is not the way of B4A... This is the right path to non-error: B4X: For X = 1 to 10 ... Next So, I will be saying as Mr.Simpson does; "Dohh"... :signOops:
WizardOz Member Licensed User Longtime User Jul 31, 2011 #4 agraham said: Next Temp_global Next statements are not qualified in Basic4android. Click to expand... Thanx agraham :sign0161: Upvote 0
agraham said: Next Temp_global Next statements are not qualified in Basic4android. Click to expand... Thanx agraham :sign0161: