G
Guest
Hello,
I have a class called clsPerson. A property of this class is Date_Of_Birth
(DOB).
In my Access Database the field is date/Time data Type. I am trying to set
the class property DOB to the contents of a textbox (txtDOB.text) that the
user entered.
so I have my:
Dim objPerson as New clsPerson
objPerson.DOB = txtDOB.text
Then I run my SQL statement to update my database using the property from
inside the class. This does not work. I get NO errors, just that the property
is enty.
Any Suggustions on what i am doing wrong?
Thanks in Advance,
Mark
I have a class called clsPerson. A property of this class is Date_Of_Birth
(DOB).
In my Access Database the field is date/Time data Type. I am trying to set
the class property DOB to the contents of a textbox (txtDOB.text) that the
user entered.
so I have my:
Dim objPerson as New clsPerson
objPerson.DOB = txtDOB.text
Then I run my SQL statement to update my database using the property from
inside the class. This does not work. I get NO errors, just that the property
is enty.
Any Suggustions on what i am doing wrong?
Thanks in Advance,
Mark