How do I address a column from access vb?
(I succedd to address the table, and yes I'm new at this)
PostMan
[Edited by PostMan on 09-18-2000 at 03:20 PM]
Printable View
How do I address a column from access vb?
(I succedd to address the table, and yes I'm new at this)
PostMan
[Edited by PostMan on 09-18-2000 at 03:20 PM]
Hi postman
can you please rephrase your question
what do you mean by address a column?
Hi CoMMiE.
I mean that I succeedd to address a recoredset in a table in access but I Couldn't access any colum accept the first!!
Thank you for the reply
PostMan
Hi,
I assume that you already have a recordset, let's say: rst.
Then use:
orCode:rst.Fields(5)
orCode:rst.Fields("MyFieldsName")
Is taht what you wanted?Code:rst!MyFieldsName
Thank you I'll try And let you know!!