Check box

  • Thread starter Thread starter Dib
  • Start date Start date
D

Dib

Hi,

Is there a way to use a Check Box within a Text Box

example I have a Text box that shows data

Testing1( ). I need to put a Check Box in the ( ) and save the value so
that the Testing1(Yes) . is this possible

Please advice,
Thanks
Dib
 
The simple answer is NO - you cannot put a check box
control within a text box control. However, you can use
what a user has done with a check box to influence the
behaviour of a textbox e.g. make it visible/invisible,
enable/disable it for user input etc. This type of
interaction is achieved by putting code into the check
box's AfterUpdate event handler.

Hope That Helps
Gerald Stanley MCSD
 
Back
Top