problem with blank form

Sudha

Registered User.
Local time
Today, 18:47
Joined
May 1, 2001
Messages
29
Hi,
I have a form where the user uses a combo box to make a selection and the corresponding details are displayed. While creating the combo box I chose the third option i.e "find a record on my form based on the value I selected in my combo box''.
I am using this form for an Edit button. here also when the form is open the first record is always displayed. I change the Forms Data Entry to Yes and I do get a blank form but when i make a selection using the combo box I don't any corresponding details. How can I keep a blank form initially and then make a selection using the combo box and display the details.
 
Data Entry only allows new records to be added; you can't view existing records!

Move to a new record when you open the form. No new record will actually be added (unless you enter something) and the fields will be blank:

Code:
Private Sub Form_Load()
  DoCmd.GoToRecord , , acNewRec
End Sub
 

Users who are viewing this thread

Back
Top Bottom