Search results

  1. X

    undo changes on report

    Hi! I have this report that I dynamically add some subreport controls on. Now the problem is that I DON'T want to be prompted to save the report or not when I close it. I want to undo/cancel the changes that I made on it (adding the subreport controls) without the small prompt. Is it possible...
  2. X

    keeping focus on main form while queries are running

    did you try this? DoCmd.Echo False 'Run macro here DoCmd.Echo True
  3. X

    Disable restore button on menu bar

    Is it possible to disable the Restore button that's displayed on the menu bar when a form is maximised?
  4. X

    choose which sections to print in report

    I see... but how would I build the report? I mean, do I have to put EVERY section (asset, liability, etc) in the report? Sorry, I'm not very experienced with reports and Access in general. But thanks a lot for your answer!
  5. X

    choose which sections to print in report

    Is it possible to have a small form where the user will be able to select which sections of the report he wants to print? What I mean is that the report contains several sections (table of contents, asset, liability, etc) and I want the user to be able to select which sections he wants to print...
  6. X

    application window resize

    Thanks for your answers! The reason why I want my main form to be the same size as the app window is because it's splash screen. Normally, I would use the DoCmd.Maximize method to make the form the same size as the app window and to be able to trap the Form_Resize event. The problem is that I...
  7. X

    application window resize

    Hi! I wondered if it was possible to trap the 'application window resize' event. The reason I need to do this is because I have a main form (kind of like a splash screen) but it's not maximised to avoid problems with the other forms (problems like restoring, etc). So I set the main form to be...
Back
Top Bottom