Hi all,
I'm wondering how if possible to convert a string to a Boolean
For instance, normally someone would use:
Dim continue As Boolean
continue = True
If continue = True Then MsgBox "Boolean variables are cool"
However, I'd like to say something like the following.
Dim tocontinue1 As Boolean
Dim tocontinue2 As Boolean
'choose is only a string that I want to change to represent the tocontinue1 Boolean
choose = "tocontinue1"
If Z = 1 Then choose = True
If tocontinue1 = True or Then MsgBox "Boolean variables are cool"
Any Help is welcome.
Thanks,
BDB
Bookmarks