Problem with Generating Members???

Rayeugene

Member
Here you go:

My problem:

Dim lblNumber2 As Label
Dim edtResult As EditText
Dim lblComments As Label
Dim lblMathSign As Label
Dim lblNumber1 As Label
Dim btnAction As Button
This is line 11 through 16 of the IDE. Why doesn't it look like lines 12 -17 in the Beginners Tutorial "My first Program" ?
Can't figure out?
Thank you,
Ray
 

stevel05

Expert
Licensed User
Longtime User
Hi Ray,

The order that the lines appear in is not important as long as you have them all in Sub Globals and they are spelt correctly.

Why are they in a different order? I don't know, perhaps they were manually sorted for clarity, or entered in a different order in the designer (although I don't know if that'll make a difference).

The bottom line is it won't give you a problem.
 
Upvote 0

Rayeugene

Member
Thank you. It will however make it a little more time consuming following along in the book when not in order. I'll see what happens and report.
Ray
 
Upvote 0

stevel05

Expert
Licensed User
Longtime User
It's only the Dim'ed variables within Sub Globals that might not be in order. The rest of the program should be exactly as written.

I hope it doesn't give you a problem.
 
Upvote 0
Top