Discussion:
fixed character length?
(too old to reply)
Joeke
2004-01-24 17:09:49 UTC
Permalink
How can get a fixed character lenght in a textbox?

Joey
Martin Trump
2004-01-24 17:34:03 UTC
Permalink
Post by Joeke
How can get a fixed character lenght in a textbox?
Maybe:-

Text1.MaxLength = <whatever>

and perhaps, to pad out shorter entries to ensure a fixed length, use...

wanted = Right$(Space$(10) & Text1.Text, <whatever>

Text

HTH
--
Martin Trump
Loading...