Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Storing value in DAP textbox in a VBS variable

Status
Not open for further replies.

rayeni

MIS
Dec 13, 2002
13
US
I am having trouble storing a MS Access DAP textbox value into VBS variable. I continue to get an "Object Expected" error.

I will admit that I am GREEN when it come to VBS.

This is a portion of my code (with textbox name = RFINumber):

-------------------------------------------
Dim RFI
RFI = RFINumber.value
-------------------------------------------

Where am I going wrong?

Thanks
 
You must instantiate the textbox object with a
Code:
Set
instruction.

Hope This Help
PH.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top