Hi All,
How do I assign a date to ADP from a cursor? The list below works when assigning to the following types:
Textbox
lname.Text = qcur.GetString("lname")
Spinner
spBgy.Add(qcur.GetString("bgy"))
radio buttons:
If qcur.GetString("sex")= "f" Then
rbFemale.Checked = True
else if qcur.GetString("sex")= "m" Then
rbMale.Checked = True
End If
I can't seem to get the correct syntax for ADP. Thanks in advance.
How do I assign a date to ADP from a cursor? The list below works when assigning to the following types:
Textbox
lname.Text = qcur.GetString("lname")
Spinner
spBgy.Add(qcur.GetString("bgy"))
radio buttons:
If qcur.GetString("sex")= "f" Then
rbFemale.Checked = True
else if qcur.GetString("sex")= "m" Then
rbMale.Checked = True
End If
I can't seem to get the correct syntax for ADP. Thanks in advance.