Hi,
This is probably such a simple thing to do but i just dont know how...
txtDateRecieved.Text = mobjADORst.Fields("DATERECIEVED")
which contains "2009/10/01 11:23"
I need to split the contents into 3 fields:
txtDate should contain "2009/10/01"
txtHour should contain "11"
txtMinu should contain "23"
I figured out how to populate the first field by doing the following:
Dim Sdate As String * 10
but how do I get the time to populate into the other 2 fields?
thanks
This is probably such a simple thing to do but i just dont know how...
txtDateRecieved.Text = mobjADORst.Fields("DATERECIEVED")
which contains "2009/10/01 11:23"
I need to split the contents into 3 fields:
txtDate should contain "2009/10/01"
txtHour should contain "11"
txtMinu should contain "23"
I figured out how to populate the first field by doing the following:
Dim Sdate As String * 10
but how do I get the time to populate into the other 2 fields?
thanks