S
Saintsman
I have a form projindex which users enter records
There is a library field where users pick from a library - this has a popup
form on click event to allow them to select a library item - the pop up
library form has list boxes & filters and its source is the same table as
projindex. This works OK when I have an existing record & want to change the
library item, but how do I add a new record by code & should this be on the
projindex form or the popup form
current code is:
DoCmd.OpenForm "subprojpopup", , , "id = " & Me!ID
I assume I need some code that if new record then addnew, else
docmd.openform etc
Thank very much
There is a library field where users pick from a library - this has a popup
form on click event to allow them to select a library item - the pop up
library form has list boxes & filters and its source is the same table as
projindex. This works OK when I have an existing record & want to change the
library item, but how do I add a new record by code & should this be on the
projindex form or the popup form
current code is:
DoCmd.OpenForm "subprojpopup", , , "id = " & Me!ID
I assume I need some code that if new record then addnew, else
docmd.openform etc
Thank very much