Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by arudeguy

  1. arudeguy

    do events loop for DoCmd.OutputTo

    Thanks John, so here is the code I'm running: 'html report strOutputFile = strFile & ".htm" DoCmd.OutputTo acOutputReport, strReportName, acFormatHTML, strOutputFile, False, strTemplateFile 'snapshot report strOutputFile = strFile & ".snp" DoCmd.OutputTo acOutputReport...
  2. arudeguy

    do events loop for DoCmd.OutputTo

    Hello, Short version: I'm trying to do a loop like the following: Do While IsReportLoaded("rptReportName") DoEvents Loop but after a docmd.outputto. Is there any way to check to see if docmd is still outputting a report before I start something else? i.e: Do While...
  3. arudeguy

    How To Update a table through a command click

    I have 2 tables: tblUsers ID email . tblUsersSecurity ID Username Password . I have a basic form that displays every field of tblUsers. I'd like to add a command button that: 1) encrypts tblUsers.ID (I have a component for that) 2) updates tblUserSecurity setting Username=tblUsers.Email, and...
  4. arudeguy

    Keeping scroller at the bottom of the screen...

    Thanks Adam! That's perfect.
  5. arudeguy

    Keeping scroller at the bottom of the screen...

    I need to be able to keep a scroller at the bottom of the screen. In other words, no matter how long the page, the scroller always stays at the bottom of the screen as a seperate object. I have the script(s) for the scroller and have it working fine. The ideal situation would be to use...
  6. arudeguy

    Can you set file location for Auto Backup?

    Is there a way to set a default file location for the Auto Backup feature? For example, if I always save my files on the network, it would be helpful to have a backup file on my pc if the network goes down. Thanks in advance, Andy

Part and Inventory Search

Back
Top