Home > Available Help Files > PC-DMIS BASIC Language > Language Reference A – Z > Month Function > Example - Month Function
Current Help File: PC-DMIS Basic (View Core Help)
Example - Month Function
Sub Main() MyDate = "08/18/22" MsgBox "MyDate is: " & MyDate
'MsgBox MyDate x = Month(MyDate) MsgBox "MyDate's month is: " & x End Sub