Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Date only format
Message
From
07/04/2003 15:35:09
 
 
To
07/04/2003 14:55:18
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00774834
Message ID:
00774873
Views:
16
I doubt you can do it directly. You can put code in the refresh to:
This.Value = TTOD(Table.field)
and then in the valid, or wherever works best for you,
Local llOk
llOk = .T.
IF !EMPTY(DTOC(this.Value))   && valid date?
   IF this.Value <> TTOD(table.field)   && changed?
      replace table.field WITH DTOT(this.Value)
   Endif
Else
   llOk = .F.
   MessageBox('Invalid date')
ENDIF

Return llOk
>Does anyone know if it is possible to limit a textbox to only display and allow editing of the date portion of a datatime field?
>
>Thanks, BOb
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform