Identifying Columns in VB

G

Guest

I need to create a very simple User Form utilizing the
information from two columns in my Project Resource Usage
Page: the name of the resource and the projects assigned
to that resource. How do I call up the column with vb?
 
J

JackD

The column is actually a field.
So for the resource name you would use resource.name
for the assignments you might use resource.assignments to return the
collection of assignments and then work with that collection.

-Jack
 
N

Nilesh.Joisar

-----Original Message-----
The column is actually a field.
So for the resource name you would use resource.name
for the assignments you might use resource.assignments to return the
collection of assignments and then work with that collection.

-Jack




.
 
Top