Variable and Me property question (1 Viewer)

hammerva

Registered User.
Local time
Today, 03:16
Joined
Dec 19, 2000
Messages
102
This is probably difficult to explain what I am trying to do but here goes.

Is it possible to use a string value in the Me property. In one of our processes at work we can create a "question mark variable" as it is called. Which that question mark variable we can put that anywhere like at the end of another variable or as a field of a table.

I was wondering if I could create a string variable like "Document Type" let say. And then the user enters a value. Whatever that value is; it will be used somelike that this for a field on a table:

me."Document type value".Value = "yes"

Basically I am trying to figure out a way to avoid using subforms and since I can't create an array of textboxes on a form I was wondering if this is possible.

Hope I explained this well. :rolleyes:
 

Travis

Registered User.
Local time
Yesterday, 19:16
Joined
Dec 17, 1999
Messages
1,332
You can use text, you just need to type more :^)


Me.Controls("Document type value").Value = "yes"
 

Users who are viewing this thread

Top Bottom