Recent content by danflipper

  1. D

    Closing a form using vba

    try setting the property !!modal!! on that smaller form to no but keep the pop-up yes then vise versa if no luck!
  2. D

    Closing a form using vba

    hi, thats what i did when i clicked on prev report, the report maximized on the screen and the form was behind it! everything works this end - just how you described. i have uploaded pictures to prove it. you must have a problem somewere else sorry
  3. D

    Closing a form using vba

    i hope this is what you are looking for? if its not i must be honest im stuck with what you would like to do! here we go
  4. D

    Closing a form using vba

    you havnt??
  5. D

    Closing a form using vba

    hi, could you post a sample copy of your database so i could have a look? mabey sort the problem
  6. D

    Closing a form using vba

    these settings are the same as on a form in the report properties
  7. D

    Closing a form using vba

    check my last post! should do the trick
  8. D

    Closing a form using vba

    right sorry about how long it is taking to sort such a seemingly simple problem! lets try a different aproach forget about hiding the form just make the report pop-up infront of it! on the report properties set popup to yes ,modal to no , auto resize to yes and auto center to yes if you would...
  9. D

    Closing a form using vba

    you are closing the form with the data on and then re opening it as hidden correct? do you have to enter the data in the form you wish to display in the report? if so the form wont re-open with the data you want to display! if so your code would have to be what rockape first said...
  10. D

    Closing a form using vba

    glad i could help :-)
  11. D

    date field equal to date field

    ha ha sorry about the name!
  12. D

    date field equal to date field

    just to clarify folks, Me.txtdate3 = DateAdd("d", 2, Me.startdate) Me.txtdate4 = DateAdd("d", 3, Me.startdate) Me.txtdate5 = DateAdd("d", 4, Me.startdate) ^^^^puts the dates in the boxes^^^^ and If Me.txtdate3 = Me.enddate11 Then 'do something End If ^^^^checks for the equal^^^^...
  13. D

    date field equal to date field

    brainwornock, thank you so much for the hint - how could i be so stupid to forget format creates a string, obviously been looking at this problem too long! thank you for your time and help
  14. D

    date field equal to date field

    sorry dont understand! i am quite an amature to access code! where i can do quite a few things im lost with this one
  15. D

    Closing a form using vba

    open the form in hidden view Dim stDocName As String stDocName = "your form name" DoCmd.OpenForm stDocName, acHidden
Back
Top Bottom