The datatype smalldatetime is in SQL Server table.
Yes, I select the date from calender control.
Right now, the date value I store into the table is
in this way:
'dtInvoiceDate is a calender control
invoicedate = dtInvoiceDate.text
I want to use short date e.g. 4/23/2003 without time value.
If I use dtInvoiceDate.value, it gives me date and time.
Is there a way I can use short date using the value property. I wonder if date.text is causing the problem