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!

drop down menu/combo box 2

Status
Not open for further replies.

tziviak2

MIS
Jul 20, 2004
53
0
0
US
I want the user to be able to choose from a list and according to the value-I want to insert a value in a table.
ex. user can choose from apple/banana/pear. if the user chooses apple-then enter 1 in the field, banana-2,pear-3.
I need the user to choose from many different lists-before they press on a button-to record the value. how would I go about it?
thank you
 
Try this:

sql="UPDATE tblGoalsReportCard SET MeasuMeth = " & request.form("MOM") & ", ProgReport = " & request.form("ROP") & ", ProgTowardsGoal = " & request.form("PTG") & ", ReasNotMeetingGoal = " & request.form("RFNMG")
sql=sql & " WHERE tblGoalsReportCard.rcRecNum= " & rs("rcRecNum")

-L
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top