Legal size and Landscape

  • Thread starter Thread starter Sok Hong
  • Start date Start date
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?

..
 
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
 
Back
Top