Public Variable Declaration

Post

Posted
Rating:
#1 (In Topic #255)
Regular
Doctor Watson is in the usergroup ‘Regular’
 Hi.
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.
Online now: No Back to the top

Post

Posted
Rating:
#2
Avatar
Regular
Cedron is in the usergroup ‘Regular’
Yes, but you can also use the following form (In more recent versions of Gambas):

Code (gambas)

  1. For x As Integer = 1 To 10
  2.   Print x
  3.  

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!
Online now: No Back to the top

Post

Posted
Rating:
#3
Avatar
Regular
stevedee is in the usergroup ‘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>
Online now: No Back to the top

Post

Posted
Rating:
#4
Avatar
Guru
cogier is in the usergroup ‘Guru’
Following on from Stevedee's comments you can use this now. Just type: -

di

You will get this ready for you to type a variable name

Code (gambas)

Online now: Yes Back to the top

Post

Posted
Rating:
#5
Regular
Doctor Watson is in the usergroup ‘Regular’
 Sorry for late reply. I was out of the country for afew days.
Thanks all, I'll see what I can do with it.

 Old african saying:
You eat an elephant one small bite at a time.
Online now: No Back to the top
1 guest and 0 members have just viewed this.