Public Variable Declaration
Posted
#1
(In Topic #255)
Regular

As I use a lot of For / Next loops in my program, I thought of using the same variables in each Sub, so I wanted to declare them as Public like I was used to in RealBasic. However, that seems not possible in Gambas. If I put f.e. :
' Gambas class file
Public x As Integer
Public Sub Form_Open()
For x = 1 To 10
‘Some code
Next
End
I get : “Loop variable cannot be global …..”
Does this mean I have to keep declaring such variables in each Sub ?
Greetings
Old african saying:
You eat an elephant one small bite at a time.
You eat an elephant one small bite at a time.
Posted
Regular

Though my preference is to Dim them separately.
I did not realize you can't use a class level variable for an iterator, so I just learned something new.
Side note: The meaning of "Global Variable" is somewhat nebulous. In Gambas, since there are no "True Global Variables", the term seems to be used for what is more commonly called "Class Level", "Module Level", or even "File Level" variables.
You should be aware of is that the limits of For/Next loops are set before the first iteration and don't change after that. In other words, if you have an expression for the "To" or the "Step" value, it only gets evaluated once. To me, this is a good thing as it saves you from having to create a local variable for efficiency purposes.
Ced
.... and carry a big stick!
Posted
Regular

Doctor Watson said
…I get : “Loop variable cannot be global …..”
I didn't know that either, but there are potential dangers in trying to do this. If your code contains "Wait" instructions you could end up with a new loop starting before the first had finished, which would reset x.
You can of course use code snippets if you have enabled these via Tools > Preferences > Code Snippets.
For example, create a new code snippet with the trigger string: dx
…and the code: Dim intX as Integer
Then in your code, you just type: dx <TAB>
Posted
Guru

Posted
Regular

Thanks all, I'll see what I can do with it.
Old african saying:
You eat an elephant one small bite at a time.
You eat an elephant one small bite at a time.
1 guest and 0 members have just viewed this.


