Hi,
I've read that the default valuie of a Boolean variable is set to "False". However, i have the following piece if code where the default value seems to be "True".
In the above code, longTr is false but goingS is True. How is that possible.
I've searched everywhere else in the codes (including all the class modules) but cant seem to find the variable goingS anywhere else.
I've searched using CTRL+F. is there a better way of searching within the codes, since this way i cant even see if there is a mistake in what I type in when looking for something.
Any help appreciated.
Pk
I've read that the default valuie of a Boolean variable is set to "False". However, i have the following piece if code where the default value seems to be "True".
Code:
Function checkForFree(longTr As Boolean, opType As Integer, goingS As Boolean, curZone As Zone) As Facility
' rest of code
In the above code, longTr is false but goingS is True. How is that possible.
I've searched everywhere else in the codes (including all the class modules) but cant seem to find the variable goingS anywhere else.
I've searched using CTRL+F. is there a better way of searching within the codes, since this way i cant even see if there is a mistake in what I type in when looking for something.
Any help appreciated.
Pk