Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Change system date programatically
Message
From
04/01/2005 09:06:58
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Change system date programatically
Environment versions
Visual FoxPro:
VFP 6
OS:
Windows '98
Network:
Windows 98
Database:
Visual FoxPro
Miscellaneous
Thread ID:
00974058
Message ID:
00974058
Views:
108
Dear Experts

To change system date programatically I use following method

lcCmd = GETENV("ComSpec") + [ /C ]
lcCmd = lcCmd + [ DATE 04-01-2005"
loShell = CREATEOBJECT("wscript.shell")
= loShell.Run(lcCmd,1,.t.)

This works fine but I want to change system date with date given in a textbox.

To do this there is a date type textbox containing value 04-10-1975
And there is a command button having following code

lcCmd = GETENV("ComSpec") + [ /C ]
DATE1=thisform.text2.Value
lcCmd = lcCmd + [ date ] + DATE1
loShell = CREATEOBJECT("wscript.shell")
= loShell.Run(lcCmd,1,.t.)

But it does not work and shows error message, Operator/Operant type mismatch.

Please help
Next
Reply
Map
View

Click here to load this message in the networking platform