Zero Value

Mark Richardson

Registered User.
Local time
Today, 20:54
Joined
Mar 27, 2003
Messages
24
Can someone help??
I am trying to allow a user to input a zero into a field as the first character. At present i have changed the fields property to text which will allow the user to achieve this. However, i am also using the entry to make another field visible/invisible. I had originally set up some code that looked for the figure 0 but as the user can input more than one figure i need to be able to change the vb code to look at the first digit and then make the field visible. But now it is a text field i am having difficulty remebering how to write down the code so that it will look at the first character whilst ignoring the next few.
 
Try:

FirstChar=Left([YourString],1)
 

Users who are viewing this thread

Back
Top Bottom