A
Avi
Hi All,
I am reading a text file after converting it to a record set. I have
defined a custom delimiter (|). My txt file looks like
**************
a|b|d
1|4,11|12
3|2,13|14
**************
and I am reading the record set like
******************************************
While oRs.EOF <> "True"
MsgBox oRs(0).Value
MsgBox oRs(1).Value
MsgBox oRs(2).Value
oRs.MoveNext
Wend
******************************************
Problem I am facing is; the second column b is read as date and I am
not getting any clue why. Messagebox oRs(1).Value displays values as
4:11:00 AM and I want to see this as 4,11 only
Please let me know if you have any idea why this is happening and how
can i fix the issue.
Any help on this issue is highly appreciated.
Thanks,
Avinash
I am reading a text file after converting it to a record set. I have
defined a custom delimiter (|). My txt file looks like
**************
a|b|d
1|4,11|12
3|2,13|14
**************
and I am reading the record set like
******************************************
While oRs.EOF <> "True"
MsgBox oRs(0).Value
MsgBox oRs(1).Value
MsgBox oRs(2).Value
oRs.MoveNext
Wend
******************************************
Problem I am facing is; the second column b is read as date and I am
not getting any clue why. Messagebox oRs(1).Value displays values as
4:11:00 AM and I want to see this as 4,11 only
Please let me know if you have any idea why this is happening and how
can i fix the issue.
Any help on this issue is highly appreciated.
Thanks,
Avinash