M
Mac
I have following statement.
SELECT inv.PARTNO, inv.DESC from INV where inv.partno = me.partno.value
I want to save this part no and desc so I can use it while inserting to the
table.
In SQL, I use INTO CURSOR XYZ and I can retreive my part number like this:
SELECT inv.PARTNO, inv.DESC from INV where inv.partno = me.partno.value
INTO CURSOR XYZ
And xyz.partno usual give me part number.
How do I do this in Access, VB or VB.NET ?
Thanks
SELECT inv.PARTNO, inv.DESC from INV where inv.partno = me.partno.value
I want to save this part no and desc so I can use it while inserting to the
table.
In SQL, I use INTO CURSOR XYZ and I can retreive my part number like this:
SELECT inv.PARTNO, inv.DESC from INV where inv.partno = me.partno.value
INTO CURSOR XYZ
And xyz.partno usual give me part number.
How do I do this in Access, VB or VB.NET ?
Thanks