Changing from add to edit mode with a find button

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

How do I alter the code of a "Find next" button to change the form from
"add mode" to "edit mode"? In Access 2000
The problem is this...
I have a switchboard that I want to open certain forms in "add mode".
But, I want to have find button to search the table. The standard "find next"
button I created apparently doesn't work in "Add Mode". How can I get it to
switch to "Edit Mode", so a search is possible. I don't care if this opens a
seperate form, if that's what I have to do. I'm fairly new at this.

Thanks,

Tom
 
To switch between Add and Edit modes, toggle the DataEntry property of the
form:
Me.DataEntry = Not Me.DataEntry
 
Back
Top