I am having this exact problem. The wizard worked in Access 2003, even if the form was unbound.
Main Topics
Browse All TopicsI have always in other versions of Microsoft Access 2007 used the Command Buttons to open other forms from the "main form." While my buttons that are already on the main form open the new forms fine, I am having problems while creating a NEW button.
1) I click on the button tool
2) I select Form Operations for categories and Open Form for Actions
3) "What form would you like the command button to open?" I select the new form which is called "Next Contact Main" (which contains a Next Contact - sub as a subform as well)
4)" Do you want the button to find specific information..." I select the first option to open the form and find specific data.
5) "Which fields contain matching data the button can use to look up information?"
The left column shows "Main Form" and the right column shows "Next Contact Main"
Normally, both columns would be populated with the fields on the respective forms, but in this case, the left column is empty so I can not select the common field which in this case would be the "Main ID" field. The right column which is the "Next Contact Main" form is populated fine, but the left column is completely empty so it will not let me continue with the wizard. (I've attached a snip of the issue as a png file)
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: boag2000Posted on 2009-04-27 at 16:49:35ID: 24246681
This will happen if your Main form is Unbound.
e_Click()
This is because in an Unbound form, there are no real "Fields" only textboxes.
Hence there are no fields to display in the dialog box.
If there is a value you wish to join the two form on than you will have to do it through code.
The Button wizard was not meant to handle situations like this.
The code might look something like this:
Private Sub cmdOpenFormForSpecificMovi
DoCmd.OpenForm "frmDetailVideos", , , "MovieID=" & Me.cboMovie
End Sub
Here is a sample
;-)
JeffCoachman
sample