Combining Check Values

W

Wanda

I have used the Change Value function for when a check box
is True to populate the "txtLocation" text field, but when
I select the next check box (meaning I want to populate
the txtLocation text field with both addresses), it erases
my first address and puts in the second one. How can I
change the code to append the next address selected?

Select Case Name
Case "chkSpectrum"
If chkSpectrum = True Then
txtLocation.Value = "(e-mail address removed)"
End If

Case "chkSitt"
If chkSitt = True Then
txtLocation.Value = "(e-mail address removed);"
End If

Thanks. Wanda
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top