W wllsth Registered User. Local time Today, 09:36 Joined Sep 17, 2008 Messages 81 Oct 15, 2008 #1 I want two versions of the same form. First one allows updates the second one is view only. Is there a quick way of doing this ??
I want two versions of the same form. First one allows updates the second one is view only. Is there a quick way of doing this ??
Kiwiman Registered User Local time Today, 09:36 Joined Apr 27, 2008 Messages 798 Oct 15, 2008 #2 Howzit You can just use the one form and open them the following way. Put the code against the relevant control Code: DoCmd.OpenForm "yourform", , , , acFormEdit ' Open form as normal DoCmd.OpenForm "yourform", , , , acFormReadOnly ' Open form readonly
Howzit You can just use the one form and open them the following way. Put the code against the relevant control Code: DoCmd.OpenForm "yourform", , , , acFormEdit ' Open form as normal DoCmd.OpenForm "yourform", , , , acFormReadOnly ' Open form readonly
W wllsth Registered User. Local time Today, 09:36 Joined Sep 17, 2008 Messages 81 Oct 15, 2008 #3 That's just perfect. Thanks