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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help getting values from form.

Status
Not open for further replies.

MalcolmJ

Programmer
Mar 10, 2004
2
0
0
IE
I am trying to design a form using check boxes and spinner controls. I'm not sure how to return the values from these controls. I tried using something like the following:

checkval=thisform.Check1
spinval=thisform.spinner1

I get datatype mismatch messages. What am I doing wrong.
 
You are referencing the object, not the value of the object.

checkval=thisform.Check1.value
spinval=thisform.spinner1.value

Dave S.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top