Leadin Space in a text box

  • Thread starter Thread starter Samer
  • Start date Start date
S

Samer

How can allow leading space before text in a text box for formatimg purposes


Thanks a lot


Samer
 
Try this in your textbox's AfterUpdate event handler

{yourtextboxname} = " " & trim({yourtextboxname})

Hope This Helps
Gerald Stanley MCSD
 
Back
Top