ctype for date?

  • Thread starter Thread starter Child
  • Start date Start date
C

Child

trying to edit a date in a datagrid.
i need this to be a date:
birthday = ctype(e.item.cells(6).controls(0), textbox).text

how do i do that?

--
BethF, Anchorage, AK

It's YOUR God.
They are YOUR rules.
YOU burn in hell.
 
birthday = ctype(e.item.cells(6).controls(0), textbox).text
Dim bd As System.DateTime = System.DateTime.Parse(birthday)

Great footer :)
 
Back
Top