May 9, 2003 #1 DvlDawg Technical User Apr 23, 2003 27 US How do I limit the number of characters entered in a textbox, regardless of the amount the user inputs? I thought is was something like: myinput = dMain.TextBox1,*8
How do I limit the number of characters entered in a textbox, regardless of the amount the user inputs? I thought is was something like: myinput = dMain.TextBox1,*8
May 9, 2003 Thread starter #2 DvlDawg Technical User Apr 23, 2003 27 US I figured this out, no post reply needed. Thanks. Dim Myinput As String*8 'Number is the string length, andthing after that wont be sent to the screen. I needed this in case of fat fingers. Upvote 0 Downvote
I figured this out, no post reply needed. Thanks. Dim Myinput As String*8 'Number is the string length, andthing after that wont be sent to the screen. I needed this in case of fat fingers.