Search results

  1. D

    Run-time error 3021 when attempting to Print

    I have narrowed the issue to be specific to this report, and a plugin we use to generate bar codes. Thank you for all the help, but this is now a development issue that I need to figure out with the bar code company.
  2. D

    Run-time error 3021 when attempting to Print

    it prints fine, just throws the error, causing the rest of the automation to fail.
  3. D

    Run-time error 3021 when attempting to Print

    I get the same issue - sends the print job but gives same error.
  4. D

    Run-time error 3021 when attempting to Print

    I can see the job spooling in the printer queue, it appears to print, but i then get an error on access stating "Run-time error '2212': Microsoft Access couldn't print your object". The application then is stuck and can not move forward without intervention, and the rest of the code stops...
  5. D

    Run-time error 3021 when attempting to Print

    Thank you - reviewing now and hope to do something today. Had a guy quit on me last week so having to pick up his workload, sorry for lack of reponses.
  6. D

    Run-time error 3021 when attempting to Print

    I used the same drivers as installed on server 2012 to server 2022. The printers appear to be working fine when print jobs are sent to them manually.
  7. D

    Run-time error 3021 when attempting to Print

    I don't have any specific reason besides it works on the old server, so I left as is. Is this what you are suggesting i should change below? I'm not good with Access VBA (or VBA in general) outside of datra manipulation (calling data, updating, querying, etc). If intCountOfPackSlips >...
  8. D

    Run-time error 3021 when attempting to Print

    We are upgrading one of our servers, and when i simply copied the entire Access database (that has worked for years with no issues) to the new server, i get an erorr when trying to print: Run-time error '3021': No Current Record I have some code in place that runs a query to get the variable...
  9. D

    How to print label after data insertion

    Anyone have ideas?
  10. D

    How to print label after data insertion

    Ok, so I just figured out how to get the label to print, easy enough so far. I put a new row in my test table, label prints, all good. I push a new row of data into that table via web app, nothing prints. Is this a limitation where you have to have the table open and do the insert yourself?
  11. D

    How to print label after data insertion

    Can anyone help with this? I want to insert a row into a table, then automatically print a report. Right now, I'm just trying to test the trigger. I know the trigger is happening as I tested with the SendEmail event, and it works fine. I just can not figure out how to print a report from...
  12. D

    How to print label after data insertion

    I know how to print a report from a form and from visual basic; however, I dont' see how I can do that from an After Insert event from Access Table. I open the table, click on the table tab, click After Insert. On the list of available actions that appear, none of them, that I can tell, allow...
  13. D

    How to print label after data insertion

    Using a data macro, I want to know how to print a report after the insertion of a row of data. I am able to create the macro, but there are no choices for reports on the actions. Also, I see an action for a DataMacro, however, when I create any macro, they do not show up in the list of...
  14. D

    How to automatically check data every 10 seconds and print if any data is there

    They don't, but this is just a temp table, easy for me to convert the code to look at an Access table instead. However, I'm having trouble finding how to print something from a Data After insert event. The drop down options are limited compared to a regular macro, and there is nothing to...
  15. D

    How to automatically check data every 10 seconds and print if any data is there

    I am printing labels, so no ink. The program will reside on a server, not the user's computer. Also, this table is just a temp table. I dump records in when the product is received in, then delete them when it is printed. If it doesn't print for some printer error, then they will just...
  16. D

    this action cannot be carried out while processing a form or report event

    I do want 3 copies of every record in the recordset (actually, that 3 will be changed to the PrintQty field from the query results, this is just testing). how do I automatically print a report then if I don't use printout? What is it that I need to use?
  17. D

    this action cannot be carried out while processing a form or report event

    I'm trying to have a page automatically print every 10 seconds when there are results. The 10 second timer is good, the report and print is good, but when I try to print it via VB, it gives the error "this action cannot be carried out while processing a form or report event" and highlights the...
  18. D

    How to automatically check data every 10 seconds and print if any data is there

    Wonderful, thanks! Is there a way to have the access application run as a service instead of a program? I'd like this to load up at logon, but not be seen / have the ability to close it.
  19. D

    How to automatically check data every 10 seconds and print if any data is there

    I would like to create a script that runs every 10 seconds. The script would run a query looking for data in a table, if there is any data, then it prints a report based upon that data, then deletes the data. How do I go about doing this? I can write the code to look for the data, print the...
  20. D

    Produce HEX and ASCII in query results

    For my application I need to assign that string / binary mix to a bar code. I can do this via the program BarTender, but we don't own that program. Is there a simpler solution besides outputing the string / binary combo to a text file, then linking it to a data field for a query? If I am...
Top Bottom