Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Boolean Examples!!!

Status
Not open for further replies.

BLBurden

Technical User
Jan 25, 2003
236
US
I am using the below example in my VB module.
Dim q1Answered As Boolean
Dim q2Answered As Boolean
Dim q3Answered As Boolean
Dim q4Answered As Boolean
Dim q5Answered As Boolean etc...


I have a bit more to entered. Is it possible to use the below example instead of typing in a single file? Will this work instead.

Dim q1Answered: q50Answer As Boolean

Thanks for your help

BLB[elephant2] - Always Grateful
A good friend will bail you out of jail. A true friend will be sitting at your side saying, "Boy - didn't we have fun?"
 
Why not using an array ?
Dim qAnswered(50) As Boolean

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top