At Your Survey design question

G

Guest

Per suggestions on this forum, I've downloaded the At Your Survey database to
help us gather and report on survey data.

Not knowing much about programming..
I'm wondering how to modify frmSurveyResponses. How can I create another
button that will go to the next response record AND default the survey used
in the previous record?

I appologize if the solution is ridiculously simple!
TIA, ty
 
D

Duane Hookom

You can use the Survey Navigation buttons at the bottom left of the form. If
you have more than one survey defined, you can find a record with the survey
you want and then right click in the Survey combo box and filter by
selection.

If you have only one survey that you are working with, you can view the form
in design view and set the default value of the survey combo box. You can
also use code in the after update event of the combo box

Private Sub cboSrvID_AfterUpdate()
Me.cboSrvID.DefaultValue = Me.cboSrvID
End Sub

Don't appologize...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top