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 Chriss Miller 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 lameid

  1. lameid

    MS Access DoCmd.Transferdatabase Assistance

    Docmd belongs to the application object model so in order to use it, you need the database open in the application or do as you did round trip it through the current session. In short to do it more directly you would need to automate Access from within Access. In the back of my mind is...
  2. lameid

    Error 2004

    Not sure how you are installing it. However MSACCESS.EXE has bloated in size over the years and the bigger it gets the less left over memory in a 2 GB addressable 32 bit memory space there is. For me running 64 bit office is the only thing to reliably solve memory issues. There are things...
  3. lameid

    Execution Slowing on iterative generation of PDF's

    Build / Version 2410 corrected the issue. 2411 from 2410 introduces an overall slowdown of about 26% running the same data but does not suffer from increasing slow down. Apparently 2408 included a Sales Force ODBC driver that caused database engine level problems either when you have any...
  4. lameid

    Execution Slowing on iterative generation of PDF's

    This has been confirmed to be an Office 365 issue. Build 2406 is last known to work correctly and Builds 2408 and 2409 are known to definitely have the issue. We have an active case with Microsoft.
  5. lameid

    Execution Slowing on iterative generation of PDF's

    My Team generates PDF's in bulk. Fundamentally we have code that does things but at the core loops over recipients, constructs appropriate queries for the data, sets those in Tempvars which reports subsequently use on Open to set recordordsource property to run for the correct data. Then the...
  6. lameid

    How to Open ACCESS (MDB) from an HTML Page

    In general you run an access frontend locally. Generally the website should download the file locally and open it and the method for that will vary by the technology used and whether you are talking about an internal website and your own machines or outside on the internet machines. There...
  7. lameid

    Upgrading from Access 2013 - whats the best option

    Ultimately this comes down to what is deprecated in each version and whether or not you use a deprecated feature. Generally Access is very backward compatible even if it is behavior that is broken... It tends to do the same things wrong and little is fixed. From that POV, I would go with the...
  8. lameid

    SELECT FROM Table in Another Access File

    jedraw that looks like the kind of SQL I was looking for. Thank you. I thought it was a thing.
  9. lameid

    SELECT FROM Table in Another Access File

    SELECT FROM Table in Another Access File It has been a long while but I've seen syntax to directly select from files in Access SQL. I think for my purpose that will be the easiest solution although yes I can technically use docmd.transferDatabase to link the table first. This may be a...
  10. lameid

    Correct Outlook Event to process all messages?

    I feel absolutely crazy and silly as I know I have seen a solution before but I lost track of it before fixing and adjusting... In Outlook, I understand that some events sometimes don't always reliably work on processing received messages... I have some commented out code and some other code...
  11. lameid

    Field is being rounded in the export process

    Coming in late here... You have a working solution, so it is up to you whether you want to explore these alternative investigations. I am a big fan of if it is not broke don't fix it. On the other hand there are often things that can be made better when (if) you have the time. But others with...
  12. lameid

    Office / Access 365 Trusted locations and GP

    I did not find this in a quick search and was hoping someone could save me from digging. Can trusted locations be managed effectively within Group Policy for Office 365 for individual office applications. For instance Access has its own settings and each other app has its own settings? I want...
  13. lameid

    Best password method with time factor

    Access ACCDB fundamentally are not secure. Put your data in an RDBMS (e.g. SQL Server) and manage security there. Do not embed passwords in your connection string. You can use DSNLESS connections via code, set the password for sign on at startup and use an ACCDE file to keep the password...
  14. lameid

    URL Black Rich Text

    I think the answer is no but.. Does anyone know a way to have a URL not be made blue and underlined if the text format is Rich Text? I tried using an A tag with the URL in both the href attribute and display text and it still does it. But if you do not use a URL for the display text you can...
  15. lameid

    Docmd.OutputTo Not Exporting Subreport

    Printout would print it though... I'd still have to name the file using the Adobe Printer. No the report is not taking longer to open.

Part and Inventory Search

Back
Top