I have a listbox on a form. It is not multi-select. I want the user to pick one item from the list and click on a command button which will open another form at the record selected in the list box. The command button on-click property involes an event procedure which includes the line DoCmd.OpenForm stDocName, , , "ItemID=intItemChosen". intItemChosen contains the itemID of the record I want to open but I keep getting a pop-up window asking me for the item id. I want the form to open without the pop-up appearing. Does anybody know how to do this?