Combo Box Selection Method

tmulrooney

Registered User.
Local time
Today, 18:23
Joined
Mar 8, 2002
Messages
23
I want to make a report with several subreports.
My report file will call back to a form which will have the parameter box. For example:

My form will have two combo boxes side by side. The first combo box the user will select from a list of data. The second combo box will be a sort order. Options are ascending and decending. The subreport will go to this form read the first box and call the data. Then my subreport will look at the second combo box and sort accordingly.

How do you make the values you select on the form stay selected. For instance I open the form, select from combo box one "events entered" and the second combo select "ascending" then I close the form. When I open it again I have to select the values again. I want the last selection still to be selected. Am I making any since?

Tim
 
tmulrooney,

Forms don't save data.

You could, at run-time, alter the Default property for your
combo boxes and save your changes.

A better solution would be to create a table and base your
combos on it.

Wayne
 

Users who are viewing this thread

Back
Top Bottom