OMG, your answer is above in my previous post! As I said, this is a KNOWN issue. It's been known for a loooong time and the solution is to NOT use LEFT and to use MID instead. LEFT conflicts with the LEFT of a forms property, although LEFT is fine in a module.
Here is your code fixed:
|
Code:
|
Private Sub Command2_Click()
Dim mls
mls = Cstr(text1)
Label3 = Mid(mls, 1, 3)
End Sub |
__________________
Ohayden,
Axim X30
Pocket PC Software:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Last edited by Ohayden; 08-17-03 at 02:00 PM.
|