PDA

Click to See Complete Forum and Search --> : column


Sep 18th, 2000, 02:17 PM
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]

CoMMiE
Sep 19th, 2000, 01:00 AM
Hi postman
can you please rephrase your question
what do you mean by address a column?

Sep 19th, 2000, 10:08 AM
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

Syl
Sep 19th, 2000, 11:02 AM
Hi,

I assume that you already have a recordset, let's say: rst.

Then use:


rst.Fields(5)

or

rst.Fields("MyFieldsName")

or

rst!MyFieldsName


Is taht what you wanted?

Sep 19th, 2000, 02:41 PM
Thank you I'll try And let you know!!