Search results

  1. K

    screen refresh

    On a subform, when I navigate back through records of the subform, it sometimes leaves the information in the fields from the previous record. It only changes them, if I go back one or more records and then navigate forward. Any ideas? thanks
  2. K

    auto close?

    the form is still present. Does not go "invisible"....
  3. K

    auto close?

    fixed It was an error in my coding. I simply had the field to update OnChange as opposed to OnAfterUpdate. Is there a way, such that the initial form does not show the warning when the program starts ie "shut down in few moments" and only show when the time has elapsed?
  4. K

    startup routines

    thanks sometimes it's just so simple. thanks. Ken
  5. K

    auto close?

    close order I used the petersoftware - excellent... thanks. The one problem I encountered was if someone was working on a record adding information and then left it alone, when the auto close went into effect the sequence of closing caused a problem. There was no related record to attach it...
  6. K

    startup routines

    How do I write a VBA script that runs before the first form opens when Access opens the database? thanks
  7. K

    auto close?

    thanks thanks for your help
  8. K

    auto close?

    My staff frequently does not close out the access database which prevents me from opening it exclusively to modify it. is there a way to automatically close the database after a period of inactivity? thanks
  9. K

    Form size on different computers

    I have created several forms being used by different persons on different computers. How do I maintain the size of the form? Since the resolution on the monitors is set different, changes to the form need to be made. Is there a way to set this so that each computer has its own settings? thanks...
  10. K

    closing forms

    thanks...seems to work with the me.name..... why?
  11. K

    closing forms

    had tried that already without success?
  12. K

    closing forms

    I seem to have difficulty closing a form. In VBA when opening a new form, i want the previous form to close. I am using the docmd.close "formname" without success. any ideas?
  13. K

    Null struggles

    What exists in a "field" in a table when no records have yet been added? When I debug.print the field, it results in "null". However, any VBA line that references this as "null" does not seem to work. I am trying to default a field only when the first record is added. After the first record...
  14. K

    can't edit fields?

    I am struggling with a subform. I am unable to edit the fields. It allows the cursor to enter the field (a memo, date field and text field) but does not allow any changes. I believe all permissions have been set, ie. allow edits, enable, etc of both the fields and form. It is a 'dynaset'. It...
  15. K

    form to report

    Any quick ways either to convert a form to a report or to print a form as on the screen?
  16. K

    requery a subform?

    Thanks.... the answer was using the name of the form that the main form referenced. I had changed the name of the frmPatGoalProb to "Goal"... it now works. Why I changed the name I'll never know. Thanks to all of you for your perserverance....
  17. K

    requery a subform?

    tried it but it still states it cannot find the subform?
  18. K

    requery a subform?

    yes.... subform name is frmPatGoalProb code: forms!frmPatGoalProb.requery produces --> Access can't find the form..... the main form with subform are open. I have tried placing code in main form, subform and tried various combinations of the Me!frmPatGoalProb.requery.... without...
  19. K

    requery a subform?

    still unsuccessful. Error state it cannot find the form. The form/subform is open. What am I doing wrong?
  20. K

    requery a subform?

    I am still not getting this.... I have tried VBA code as suggested (I think) but still get errors that form cannot be found or object issues.... At what event should I be using the requery? At the on current? As for the background issue, I am using an outside table and check boxes to select...
Back
Top Bottom