Re: Problem with CSV Date column
- From: "Cor Ligthert [MVP]" <notmyfirstname@xxxxxxxxx>
- Date: Wed, 21 Mar 2007 07:00:30 +0100
Bill.
I really don't see why Rich solution would not fit.
Dit you try it?
Cor
"Bill Nguyen" <billn_nospam_please@xxxxxxxx> schreef in bericht
news:%23hbEIazaHHA.4808@xxxxxxxxxxxxxxxxxxxxxxx
Rich;
Thanks but this is propbably not the solution.
I need the data to be in text format (with leading zero) so that I can
convert it into a date field.
Thanks again
Bill
"Rich" <Rich@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:2690EC81-9053-4FA1-BB29-8C847CBFF643@xxxxxxxxxxxxxxxx
Greetings,
Try reading your data this way:
Imports System.Data.OleDb
Imports System.Data
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim da As OleDbDataAdapter, ds As DataSet, conn As OleDbConnection
conn = New OleDbConnection
conn.ConnectionString = "provider=Microsoft.Jet.OLEDB.4.0;data
source=C:\bin\test1.xls;Extended Properties=Excel 8.0"
da = New OleDbDataAdapter
ds = New DataSet
da.SelectCommand = New OleDbCommand
da.SelectCommand.Connection = conn
da.SelectCommand.CommandText = "Select * From [SubscribersList$]"
da.Fill(ds, "tbl1")
dgrv1.DataSource = ds.Tables("tbl1")
End Sub
My test Excel file included a date field, and the dates displayed
correctly
in the datagridview.
hth
Rich
"Bill Nguyen" wrote:
I'm reading a CSV file with the date colum formatted as "YYMMDD" ->
"070310"
when viewed in notepad or similar trext editor.
However, in my app, using ODBCReader, the column value becomes "70310"
(integer value). This invalidates my attempt to convert the field into a
date field. I notice that this happened to other columns as well.
Is there a way to keep the original format (or to convert into date
field
for this column?
Thanks
Bill
.
- References:
- Problem with CSV Date column
- From: Bill Nguyen
- Re: Problem with CSV Date column
- From: Bill Nguyen
- Problem with CSV Date column
- Prev by Date: Re: calling a sub/function whose name is the value of a variable?
- Next by Date: Re: table copying in ado 2.0
- Previous by thread: Re: Problem with CSV Date column
- Next by thread: DataGridView will not show on Production machines
- Index(es):