Please, please help if you know what I need to do. I need to get this done and I'm stuck.
I'll explain what I have, then what I'm trying to do.
A form (frm_start) with two controls, an editable field that's unbound (text_input) and an OK button (control_ok). Also, I have a query (qry_start) that wants 1 input (user_input) and will return 1 row, 3 columns from a table.
What I want to do is, the user starts at the form (frm_start) and inputs a value into the (text_input) then clicks OK (control_ok), at this point, it takes that value supplied and passes it into (qry_start) as the (user_input) arguement that's required, then the returned 3 columns of data is opens another form (frm_ending) and passes those 3 columns of data into that form as arguements so I can have the newly opened form do things based on those.
In example, user inputs "Magic1" and clicks okay, the query gets ran suppling "Magic1" as the required user input, this query will return 3 columns of data (1 row) which will now open another form passing these 3 values into the new form as arguements. The 'new form' uses these arguements to fill in existing boxes and to format properly.
I hope anyone who took time to read this can help. I don't know Access functions/syntax well enough to code this.