Search results

  1. S

    Is this possible to do?

    What I suggested should work just fine for you then. As an added precaution (in case the user accidentally clicks on the "Record Save" button instead of "Record in Process" button) I would set the RptCompleted field to false when the used clicks on the "Record in Process" button. I imagine you...
  2. S

    Is this possible to do?

    First off, make sure you have the RptCompleted column in your form's recordsource. If you are using the table as the recordsource (instead of a query) then you should be fine. Then add a checkbox control to your form and set the control source to the RptCompleted column. In you code, just before...
  3. S

    Problem using EVAL function

    That procedure was just an example. In my application I have created popup menus and have set the action as "=processShortcutMenu()". I have defined that function in a module as: Public Function processShortcutMenu() Dim cmdbarCtl As CommandBarControl Set cmdbarCtl =...
  4. S

    Problem using EVAL function

    When I use the EVAL function to execute a procedure in a form it executes the procedure twice. Does anyone know of a workaround or a fix for this? For example: On Click: =eval(Form_AfterUpdate) where Form_AfterUpdate is a public procedure. I tried to use the EVAL function in a popup menu...
Back
Top Bottom