Search results

  1. C

    Records Problem bwtn Forms

    I didn't mention I'm working in Access 97; so i'm not sure if it likes the "ME" code, but i'll try it and let you know, thanks for reply
  2. C

    Records Problem bwtn Forms

    I have a Main Survey form which a user can add a new record then enter data and then click to the next form to fill out the next form data for the same record (which contains subforms); they are linked by the same record # field called (AS Record#) but say i'm at record # 24 on the main survey...
  3. C

    Refresh Problem, Help!

    Pat Hartman Wins! Thank-you thank-you! I took your command and put it into an event procedure for a button on my main form under the On click property. It works! A user can enter data on the main form then click the button to save the new record before moving to the next form, and it does...
  4. C

    Refresh Problem, Help!

    Command Where would I put this command? does it go on the main form? what property?
  5. C

    Refresh Problem, Help!

    On close sol'n So did I find the right code then? none of my forms close from one to the next...one just opens over top of the other but i'll try it...
  6. C

    Refresh Problem, Help!

    Didn't work that won't work cuz my second form has the form back ground with tab control pages with @5 subforms on these pages , I would have to put this button function on all subforms, wouldn't I. I tried it with my button on the External form (second form with tabbed subforms) and put that...
  7. C

    Refresh Problem, Help!

    Code Not working I tried that code on the main form under After update as: Event procedure: (...)button, then Dim frm As Form For Each frm In Forms If frm.Name = "Accessibility Survey Form" Then Forms![Accessibility Survey Form].Refresh End If Next frm does not like the spaces in the main...
  8. C

    Refresh Problem, Help!

    This Code? I think I found it, it was suggested to you by Harry... Are you talking this code? dim frm as Form For Each frm In Forms If frm.Name = "MainFormName" then Forms!MainFormName.Refresh End if Next frm Does it go on the main form or the second form or a button on which one?I'm...
  9. C

    Refresh Problem, Help!

    Re:Help Great! I'll see if I can find it also, and let you know...I'll wait for further word... Thanks
  10. C

    Refresh Problem, Help!

    Hello, I've done a search on refreshing forms but am not sure if/how I can relate any of the solutions to my problem. Summary: I have a main form called Accessibilty Survey Form which then through a button links to a second form called External form which has built in subforms. The Main form...
Back
Top Bottom