|
I am trying to use some Word 2007 automation where we give the user the ability to select a printer to print to and compile a word document. We give the ability to print locally or on a network printer. Network printers are specified in the code by their...
Started by Jeremy Edwards on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
We now use the Win32 API directly.
Could it be security? Does the user has security permission set correctly to access the network printer?
We ended up fixing this problem outside of Word.
|
|
Hi guys, I want to get the default printer name with the network path. Because i am using the network printer as a default printer. So i need this in VB.NET or C#.Net. Kind help needed. Thanks in advance
Sivakumar.P
Started by sivakumar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
GetDefaultPrinter() { PrinterSettings settings = new PrinterSettings(); foreach (string printer in PrinterSettings.InstalledPrinters) { settings.PrinterName = printer; if (settings.IsDefaultPrinter) return printer; } return string....
|
|
How can I get the IP address of a network printer given the port name, using win32 API?
I tried looking into the PRINTER_INFO_* structs , but it seems it is not present there.
Started by sourabh jaiswal on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For my network printer, the IP address is part), and will run ....
Like any other IP network device, the printer will have an IP address (denoting it's ethernet card incompatible implementations of network port monitors.
|
Ask your Facebook Friends
|
I have an intranet web page that need to send text to a network label printer to print it.
how can i do that?
Started by kisin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is an "at your own risk" solution, but here's the VB .
To send the appropriate data to the printer.
|
|
We have a networked printer that is connected to a HP-UX Unix server. We switched identical printers and setup the new one with the same IP as the old. Users can print from Windows fine to the printer. When a user tries printing from Unix to the printer...
Started by JonathanMueller on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Mismatch between printer firmware version and Unix driver?
Turned out to be a strange setting that makes the printer print multiple copies..
|
|
I have 2 computers (Mac with OS 9 and a desktop PC (XP)) that both print to a networked printer (large Xerox Phaser 7700).
The printer and the two computers are networked through an old ethernet switch.
At the moment, the computers use DHCP. But they ...
Answer Snippets (Read the full thread at serverfault):
Use DHCP for the printer, and tell the DHCP server to always assign the same IP to the printer ....
Use a static IP for the printer, and tell the DHCP server not to assign that address to another device.
You can:
Go static everywhere.
|
|
I have some legacy application logic that sends files to an attached printer using a DOS copy command:
copy fileToPrint \myLocalComputerName\printerShareName
The problem is that even though the application is running on the computer that's physically ...
Started by Jeff on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Found the following article which uses a loopback networkDoes this work? (Old DOS trick)
type myfile.txt > prn
This should work if the printer adapter to access the local share when the ....
In question is the default printer on the PC.
|
|
I have several network printers in the office. Currently, they are all set up on our domain controller - DC_Main The printers are then shared, and all of the users workstations connect to, for example, "printer x on DC_Main"
This is currently slowing ...
Started by alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Perhaps someday I'll publish print directly to the....
Ability to move the printer on the network w/o affecting the clients Ability to place printers into a VLAN of "printer objects" in the AD relative to users or computers...
|
|
I've got to do user training at a large site (40+ location's/ 80 Sessions) that requires demonstrating printing to a (single) network printer.
How do I have a roving network printer across multiple LANs in an site?
The printer gets allocated (via DHCP...
Started by Stephen on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
To a network printer, could you just leave it in one place, ask the participants to tell you what to print that the printout was successful?
If the exercise is not specifically about printing to a network printerWhy would the ....
|
|
We have an application that uses Active Reports documents. You pass a document the UNC of the printer and away it goes.
We have a group that runs this application within a Citrix session and the truly networked printers function perfectly but shared printers...
Started by Harry on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Our Jade medical, the printer driver....
From the Citrix server can you get to the web interface of the printer to prove that the server can see the printer.
Are the citrix server in the same domain/network as the printer.
|