Search results

  1. P

    Copying Tables To A Newly Created Database

    I am running a program in Access 2016. It creates a new database and copies objects into the new database. When it runs the below command: DoCmd.CopyObject sampledbfile, , acTable, "tblk_AuditTypes" Access displays Run-time error 3049. "Cannot open database 'tblk_AuditTypes'. It may not...
  2. P

    File Error

    My bad. The ending in .tmp. The program code has no references to .tmp files. I enclosed an image of the error message. The blank part after users\ is a user id that I whited out and did not want posted. Thanks for your response and thanks if you can help anymore. Bill
  3. P

    File Error

    I have an Access with Visual Basic program that creates a database for each case. When a user clicked a button to run a function in the database, an error popped up: “File not found: c:\Users\(user id)\AppData\Local\Temp\VB96F2/tmp” Does anyone know what kind of file this is? I did not...
  4. P

    Corrupted Databases

    I am working on Access 2016. At times, when I try to open a database, I get a "program not responding" error. The vba modules of code still appear to be in the database, but they will not open. When I try to open one, I get a message "The module name (name of module) is misspelled or refers to a...
  5. P

    vbCrLf / + Chr(13) + Chr(10) Carriage Returns in A Report

    = "HX: PF | EPF | DET | COMP" + Chr(13) + Chr(10) & "EX: PF | EPF | DET | COMP" I am storing the above string in a table. The forms and reports are currently displaying the string exactly as above (I enclosed a pdf file, and the text I’m referring to is in red). When a form or report pulls the...
  6. P

    Report Field Not Growing Correctly With Transparent Border

    Hello, I enclosed two pdf attachments concerning this issue. I have a report, and the "reason" field is one that can grow as needed. The following string is in the field: "MISSING IMPLEMENTATION PLAN, MISSING SERVICE LOGS FOR DATE OF SERVICE". I bolded “MISSING”, where the space hits the...
  7. P

    Forced New Page

    The blank page appears both when you print to screen and to the printer.
  8. P

    Forced New Page

    The basic header and footer informationi displays on the last page with no data. The report prints to screen first, then you can print to paper as desired. There is a section where I need to force a new page after it is finished. After the last record is printed, that section forces a...
  9. P

    Forced New Page

    Stopping The Last Report Page From Printing Is there a way to prevent the last page of a report from printing (If me.page = me.pages, then do not print the page)? Thank you.
Top Bottom