Hi guys,
I would like to have suggestions about how to do this thing:
I have two tables:
HeaderTable:
Index
field1 (InvoiceNo)
field2 (InvoiceDescription)
DetailTable
Index
Field1 (ItemCode)
Field2 (Item Description)
it Can be only one header and "N" details
For example:
InvoiceNo: 1000
InvoiceDescription: "My Invoice"
With some details:
ItemCode: 20
Item Description: "Book"
ItemCode: 30
Item Description: "Magazine"
And the output will be a delimiter text file like this:
1000|My Invoice|20|Book|30|Magazine
It is possible if this comes from a SQL Tables to convert to a delimiter Text File on Visual Basic?
Some suggestions guys about how to interprete this on VB?
Thanks a lot!
MR
I would like to have suggestions about how to do this thing:
I have two tables:
HeaderTable:
Index
field1 (InvoiceNo)
field2 (InvoiceDescription)
DetailTable
Index
Field1 (ItemCode)
Field2 (Item Description)
it Can be only one header and "N" details
For example:
InvoiceNo: 1000
InvoiceDescription: "My Invoice"
With some details:
ItemCode: 20
Item Description: "Book"
ItemCode: 30
Item Description: "Magazine"
And the output will be a delimiter text file like this:
1000|My Invoice|20|Book|30|Magazine
It is possible if this comes from a SQL Tables to convert to a delimiter Text File on Visual Basic?
Some suggestions guys about how to interprete this on VB?
Thanks a lot!
MR