Setting form properties: AllowEdit,AllowUpdate,AllowDelete

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

Guest

Being new to this programming game. I just need some pointers to the right direction

I am trying to set properties through code when a form is loaded/opened. Which event should I place the event function in. BeforeUpdate, AfterUpdate, OnFormOpen, OnFormLoad. Just some direction, that's all

Thanks,
 
If you want to set the properties for all records, use the Open event of the
form.

If you want to set the properties conditionally for some records (e.g. if
the field NoChanges is True), use the Current event.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

Stasia said:
Being new to this programming game. I just need some pointers to the right direction.

I am trying to set properties through code when a form is loaded/opened.
Which event should I place the event function in. BeforeUpdate, AfterUpdate,
OnFormOpen, OnFormLoad. Just some direction, that's all!
 
Back
Top