B
billypit786
Hi,
My project is in Ms Access 2002.
I only want to know ,in Access, is there any function like FLAG or
Label or Go To.
I don't know its name properly.
But in C or C++ we use this function to jump at perticular line in
code.
this is just example code is not working.this is just sample to show
what i want?.
Quote:
Originally Posted by
1 x=some string
2 for(i=1,j=1;i<10,j<strlen(X);i++,j++)
3 {
4 if(i=j)
5 go to LabelA
6 else
7 some code
8 }
9 some code
10
..
..
..
20 LabelA:
21 for(k=0;k<10;k++)
22 {
23 print("string match");
24 }
How can I jump to line 5 to line 20?
My project is in Ms Access 2002.
I only want to know ,in Access, is there any function like FLAG or
Label or Go To.
I don't know its name properly.
But in C or C++ we use this function to jump at perticular line in
code.
this is just example code is not working.this is just sample to show
what i want?.
Quote:
Originally Posted by
1 x=some string
2 for(i=1,j=1;i<10,j<strlen(X);i++,j++)
3 {
4 if(i=j)
5 go to LabelA
6 else
7 some code
8 }
9 some code
10
..
..
..
20 LabelA:
21 for(k=0;k<10;k++)
22 {
23 print("string match");
24 }
How can I jump to line 5 to line 20?