Jump to content

Get the Day of the week..?


 Share

Recommended Posts

Here is a simple way using a Com Control.

Func StartVBS()

Global $VBS=""

$VBS=ObjCreate("MSScriptControl.ScriptControl")

$VBS.Language="VBScript"

EndFunc

Func MonthName($mNum,$aBBv=False)

Return $VBS.Eval("MonthName("&$mNum&","&$aBBv&")")

EndFunc

Func WeekDayName($wNum,$aBBv=False)

Return $VBS.Eval("WeekDayName("&$wNum&","&$aBBv&")")

EndFunc

StartVBS()

$TXT="Short Month Name "&MonthName(@Mon,True)&@crlf

$TXT&="Short Week Name "&WeekDayName(@wDay,True)&@crlf

$TXT&="Long Month Name "&MonthName(@Mon)&@crlf

$TXT&="Long Week Name "&WeekDayName(@wDay)&@crlf

msgbox(0,"VBS ScriptControl",$TXT)

$VBS=0

Link to comment
Share on other sites

@xroot

Please use code for your scripts like this :

Func StartVBS()
Global $VBS=""
$VBS=ObjCreate("MSScriptControl.ScriptControl")
$VBS.Language="VBScript"
EndFunc

Func MonthName($mNum,$aBBv=False)
Return $VBS.Eval("MonthName("&$mNum&","&$aBBv&")")
EndFunc

Func WeekDayName($wNum,$aBBv=False)
Return $VBS.Eval("WeekDayName("&$wNum&","&$aBBv&")")
EndFunc

StartVBS()
$TXT="Short Month Name "&MonthName(@Mon,True)&@crlf
$TXT&="Short Week Name "&WeekDayName(@wDay,True)&@crlf
$TXT&="Long Month Name "&MonthName(@Mon)&@crlf
$TXT&="Long Week Name "&WeekDayName(@wDay)&@crlf

msgbox(0,"VBS ScriptControl",$TXT)
$VBS=0

Cheers, FireFox.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...