hello ,
I have the same form for new and update record BUT I want to set a different view.
for the new record all fields are open.
for the update form some of the fields will be enabled.
I wrote an event for Private Sub Form_Current ()
if (Me.id_reject="") // new record
...
else // existing record
...
end if
but the debuger always go to the else part . my condition for new record does not work.
how can I fix the problem ?
Thanks in advance
Liz