I have a form in a simple application that uses a mask edit box to allow the user to enter a date. Whenever the user first loads the form I want the mask edit box to default to the current date so something like:
Private Sub Form_Load()
mskEffectiveDate.Text = "sysdate"
Call PopulateStore
End Sub
What is the correct syntax for this?
Private Sub Form_Load()
mskEffectiveDate.Text = "sysdate"
Call PopulateStore
End Sub
What is the correct syntax for this?