Guest stanley Posted May 24, 2004 Posted May 24, 2004 Hi, is it possible to get the system time and store it in a variable? regards Stanley
Beastmaster Posted May 24, 2004 Posted May 24, 2004 Yep, if you use NT/W2K/XP/? and ... if Command Extensions are enabled, then there are several dynamic environment variables that can be expanded but which don't show up i the list of variables displayed by SET. These variable values are computed dynamically each time the value of the variable is expanded If the user explicitly defines a variable with one of these names, t that definition will override the dynamic one described below: %DATE% - expands to current date using same format as DATE command. %TIME% - expands to current time using same format as TIME command. MsgBox, 0, My time is ..., %TIME%
cohaholic Posted June 12, 2005 Posted June 12, 2005 Yep, if you use NT/W2K/XP/? and ...if Command Extensions are enabled, then there are several dynamicenvironment variables that can be expanded but which don't show up ithe list of variables displayed by SET. These variable values arecomputed dynamically each time the value of the variable is expandedIf the user explicitly defines a variable with one of these names, tthat definition will override the dynamic one described below:%DATE% - expands to current date using same format as DATE command.%TIME% - expands to current time using same format as TIME command. MsgBox, 0, My time is ..., %TIME%<{POST_SNAPBACK}>and HOW do you enable this?Thanks,Chris
Recommended Posts