Hallo everybody!
I have arrays whose number is varying depending on the values, that an users enters on a form.
I need a recombination of all values saved in these arrays, which would mean....
Example: If there are 3 Arrays with the length of 5 Values, 3 Values and 2 Values, I need to generate the following code:
Is there any Method that builds/writes VB code?
I thought of the following solution:
Generating the VB code as Text and write it to a file. Then include this file at the appropriate place in my programm. But here I cannot find the include method. Would anyone know, what is a syntax for an "INCLUDE"-Method?
Thanks for any comments!!!
skyyakal
I have arrays whose number is varying depending on the values, that an users enters on a form.
I need a recombination of all values saved in these arrays, which would mean....
Example: If there are 3 Arrays with the length of 5 Values, 3 Values and 2 Values, I need to generate the following code:
Code:
FOR array1=0 To 5
FOR array2=0 To 3
FOR array3=0 To 2
...
NEXT
NEXT
NEXT
Is there any Method that builds/writes VB code?
I thought of the following solution:
Generating the VB code as Text and write it to a file. Then include this file at the appropriate place in my programm. But here I cannot find the include method. Would anyone know, what is a syntax for an "INCLUDE"-Method?
Thanks for any comments!!!
skyyakal