Can anybody solve this problem?
ENVIRONMENT:
Application is built in MS Access 2007. Data are stored on SQL Server while users run compiled Access projects. User PCs run Windows XP and Windows 7 utilizing Access Runtime (no access installed on client PCs). Some reports use specific paper sizes and are printed from designated printers through printer server.
PROBLEM:
On developer's PC reports see non default...
Search Result
Collapse
12 results in 0.0041 seconds.
Keywords
Members
Tags
-
jkostrzewski started a topic Why printer properties change in Access reports when appl is run from different pc?in AccessWhy printer properties change in Access reports when appl is run from different pc?
-
printing lpr implementation
I have a lot files to send to printserver using lpr. Currently I'am using lpr command line in vb.net shell(/cmd lpr -pPrinteServIP filetosend). When it loops through a directory with files it opens many cmd windows which are sending files. Is there a way to send file one after other? there must be some implementation of LRP command in vb.net like
SendToLPD( PrintServerIP, JobName, QueueName, FileName) -
Why reports won't print out fully in Access for end users?
I am having a problem getting a report to print out completely.
I have a report that has half a page with client data and half with lines on it so the end user can write on it. We call it a "call sheet". Only problem is when an end user prints the report only the top half of the report prints.
If I go in, open up a record, and print the "call sheet" I get everything. When other end users (two so far) do...Last edited by Fspinelli; Feb 1 '11, 09:36 PM. Reason: had another question along with this one...related -
Why won't MSAccess 2007 print after copying the database?
I have created an msACCESS database with a report and subqueries. As I am developing it I am able to print to a printer.
I have now copied the database and the new database does not print -- Says printer not found -- and the original database no longer prints.
I have been able to duplicate this 5 times so far.
How can i fix this ? -
Printing a memo box in full on a form
im doing a piece of coursework on microsoft access, and would like to know how to print a memo box on a form in full, because the memo has basically an unlimited character format on it, and the box isnt that big, as the purpose for the course work is for a client card for a veterinary clinic, and i need the memo box to be able to print out the clinical history. -
How do I design a report to fit a fixed or formated form?
The form is a 8.5 x 11 sheet in portrait orientation. The formated forms (there are four per page) are 3.5 x 5.5; two on are top, and two are on the bottom of the page.
I need each 3.5 x 5.5 card to report data from one field that changes per form. For instance, the first form on the sheet will compile data that fits criteria for the "position" field; the second form next to it will fill in the data for the next "position"... -
How to print form to a network printer?
I am having difficulty finding the proper code to print to a network (non-default) printer.
I have it currently set to print on a default printer using this code (created in wizard):
Code:Private Sub cmdPrint_Click() On Error GoTo Err_cmdPrint_Click Dim stDocName As String stDocName = "frmPrint" DoCmd.OpenReport stDocName, acNormal
-
How to print all records in recordset
I have a subform that displays all of the invoices for the day selected. There is a "Print all" button (code below) that should print all the records in the recordset. I cant figure out why it does not work, but it appears to be only printing one record.
Does anyone have any ideas?
Code:Dim rs As Recordset Set rs = frmsubAdminEdit.Form.Recordset rs.MoveFirst
-
Custom sized paper code for Printer
I have EPSON LQ 300 Printer which driver or software doesn't allow user defined paper size.
But i need code to access printer paper size ( custom size ) in asp.net c#
can anybody help me with full code
thank you -
How to PDF a report many times automatically record by record
Hi,
I have a database where I have to produce lots of reports on a weekly basis. There are only 2 report types at the moment (probably 5 types in the future). I have created a table called "report_criteri a" and I have the fields ("PK","Repor t Type", "Report_Name"," Criteria"). I created a form using this table and I have a command button to open the correct report using "Report_Typ e"... -
specifying page setup for printing
Hi,
I'm having a page in which table get dynamically generated. It can have any number of columns at run-time. I have a print button to print it, its working fine till now what I want is to set page orientation and margins depending on the number of columns like if columns are more than 12 than page orientation should be Landscape else Portrait and according to that setting margins of the page.
Is it possible?
... -
A way to capture printing job data
Hi all. I need to capture data, sended to printer for each job as an image (or a couple of images - single image for each page). System.Printing .PrintSystemJob Info.JobStream seems to be a good decision but it is always null (maybee it is not supported for all printers but msdn doesn't contains such information). Calling PrintSystemJobI nfo.Refresh() to synchronize with current job state gives nothing. Does anyone have a working example (preferably...