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

conditional Popup

Status
Not open for further replies.

samusa

Programmer
Jan 1, 2001
107
US
Hi Experts!
I have option buttons(Yes/No) on Data access page.I want a popup window when user click on NO option that will accept user comments and this should be saved to memo field of Access table. Could somebody tell me how to do it in either javascript or vbscript. I would greatly appreciate it


Sam
 
Answer = MsgBox("Do you like cookies", 4)
If (Answer = 6) Then
MsgBox "Me too."
End If

 
Not sure how to connect your code with my situation. If option No is clicked ,it stores NO value in "optno" field of tblstudent table.There is also a memo field in the table "NoComment". I want pop window to accept user comments and once he click on OK button, it should be saved to NoComment field.Appreciate your help

Sam
 
Ah, sounds like you need a new form.

Try asking here: forum705
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top