I have setup a boolean based on the following conditions
Public STRData as string
Public BooleanRedFlag as boolean = False
If STRData = "" then
_BooleanRedFlag = TRue
end If
What should happen is that is the STRData string is returned with
nothing it should set my boolean flag.
When i add a break point and a watch to my code the STRData value
says its true.
What am I missing it should read "".
Public STRData as string
Public BooleanRedFlag as boolean = False
If STRData = "" then
_BooleanRedFlag = TRue
end If
What should happen is that is the STRData string is returned with
nothing it should set my boolean flag.
When i add a break point and a watch to my code the STRData value
says its true.
What am I missing it should read "".
Comment