Legal size and Landscape

S

Sok Hong

I am trying to set 19 seperate check boxes so that when
one of them is clicked, a text string I set will be
entered into the set table field.

For example, I set "Billing" field as a check box, if the
user checks that box, I would want the code to enter in
the word "Billing" in the set table.

Any clue on how I can get started with that? Is there a
previous article that tells you how to do something like
that?

..
 
G

Gary Miller

Your subject line is not very related to your question!

One way would be to put code in the AfterUpdate event of the
checkbox that would do the job...

Sub chkBilling_AfterUpdate()

If Me!chkBilling = True Then
Me!FieldYouWantToFillName = "Billing"
End If

EndSub

Gary Miller
Sisters, OR
 

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