O
OlszanskiA
I have a form with 6 check boxes. The user can select any number of check
boxes, each which refer to a specific phrase, and combines the phrases
together into one scentence. I have this working but want it to be more
functional with better code.
I have:
If Me.Check1 = -1 then
Phrase1 = "Strong interpersonal skills"
End
Etc. for each Checkbox
Each checkbox is refered to by seqential numbers (Me.Check1, Me.Check2, etc.)
Question: Is there a way to combine this into one statement such as a Select
Case within a loop?
For example:
For num = 0 to 6
Select Case Me.Check(num)
Case 1
Phrase1 = "strong interpersonal skills"
Etc...
End Select
When I refer to Me.Check(num) it is not recognized. Any ideas?
Despite my searching through help, Balters book, and these forums, I've come
up empty handed!
Thank you!!
boxes, each which refer to a specific phrase, and combines the phrases
together into one scentence. I have this working but want it to be more
functional with better code.
I have:
If Me.Check1 = -1 then
Phrase1 = "Strong interpersonal skills"
End
Etc. for each Checkbox
Each checkbox is refered to by seqential numbers (Me.Check1, Me.Check2, etc.)
Question: Is there a way to combine this into one statement such as a Select
Case within a loop?
For example:
For num = 0 to 6
Select Case Me.Check(num)
Case 1
Phrase1 = "strong interpersonal skills"
Etc...
End Select
When I refer to Me.Check(num) it is not recognized. Any ideas?
Despite my searching through help, Balters book, and these forums, I've come
up empty handed!
Thank you!!