Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Imput Mask = 99:99!!
Message
From
03/09/1998 11:22:32
 
 
To
03/09/1998 11:05:37
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00132790
Message ID:
00132808
Views:
14
>>I want to use a ch6 field to represent a time value.
>>I would like to use the imputmask of 99:99!!.
>>for example 12:45PM. I want to force the !! to
>>be either AM or PM. any ideas? thanks :)
>Rob,
>Keypress, ,nteractivechange ?
*keypress
>if this.selstart = 6
>   nodefault
>   if inlist(nKeyCode,asc("A"),asc("a"),asc("P"),asc("p"))
>      This.value = this.value + upper(chr(nKeyCode))+"M"
>   endif
>endif
Hope works. Not tested.
>Cetin
----------
Good morning Cetin and thanks for your reply,
Lets talk about your code:

if this.selstart = 6 && is selstart meanig the time field? and the AM/PM
would be on the 5th and 6th positions of the field. Not sure how you
are testing for both positions.

nodefault && why are you using this?


if inlist(nKeyCode,asc("A"),asc("a"),asc("P"),asc("p"))
This.value = this.value + upper(chr(nKeyCode))+"M"
endif
endif
Robert Keith
Independent Developer
San Antonio, Texas
E-mail address:
rebelrob1@yahoo.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform