Sub GetDate 'Put contents of database fields in to memory fields, the db. functions calls this name GetFields, this is the name you should use
lblDateDis.Text = db.Field3(0,0)
End Sub
Sub PutDate
db.Field3(0,0) = lblDateDis.Text
End Sub
Sub btnCommenceDate_Click
cdate.Hint = "MM/DD/YYYY"
If cdate.Show ("Enter the date you started or will start your workout.","Commencement Date","OK","Cancel","",Null) = DialogResponse.POSITIVE Then
lblDateDis.Text = cdate.Input
PutDate
End If
End Sub