Printing forms so that label shows thru text box??

  • Thread starter Thread starter alethead
  • Start date Start date
A

alethead

Guest
Does anyone know how to set up the form so that a label will be inside the text box or if the text box is in front of the label,to make the label show in the text box?
 
in the properties you could set the default value to be what you want your label to read. If for instance you have a drop down box and it's blank, but you want it to read "Choose Option".

Or you might be able to hide/unhide

ongotfocus event

if txt.value is null then
lblcaption.visible = true
else
lblcaption.visible = false
 

Users who are viewing this thread

Back
Top Bottom