Here's my question. I have a form where user can select how they want to edit a customer, by cust naumber, last name there are about 5 different selections. After the user selects the option say the customer number I want to open another form using that customer number as the where clause.
I use the following code to open the form
where the stdlink = custNumber = " & VCustNumber & " When the form comes up it's blank. The forms record source is the customer table. When I look at the forms data it shows the filter as customernumber = the number specified in the stdlink. Any ideas why this is happening.
Thanks
I use the following code to open the form
Code:
docmd.openform "EditCust",,stdLink
Thanks
Comment