Hi it's me again.
text1.text = rs!datebirth
the text1 not depend of adodc1
datebirth in recordset is integer not date
why if i define a diferent dataformat date in the propierties the field show always yyyy/mm/dd
TIA
Printable View
Hi it's me again.
text1.text = rs!datebirth
the text1 not depend of adodc1
datebirth in recordset is integer not date
why if i define a diferent dataformat date in the propierties the field show always yyyy/mm/dd
TIA
Try using:
Text1.Text = Format(rs!datebirth, "MM/dd/yyyy")