Tagged Questions

4
votes
1answer
303 views

C#/.NET: How to add networked printer to a local PC account?

I'm using the WMI Code Creator to create code to add a networked printer. http://img13.imageshack.us/img13/9847/wmicodecreatorwin32prin.png The code that was generated works great (under my domain ...
3
votes
3answers
165 views

Creating a C# application to configure printer page settings

I am looking to deploy a c# application at my workplace which defines the default paper size. Nothing too special. It works by calling windows.win32 and using the registry class to write to the ...
2
votes
1answer
172 views

How to properly install virtual printer using WinAPI on Win x64?

I am trying to install virtual printer from C++ console program using WinAPI calls. It works fine on Windows XP, but on Windows 7 x64 there are some processes which lock files in system folders, ...
1
vote
1answer
387 views

Please help me in adding a printer in windows xp mode on windows 7 professional [closed]

I have an HP Laserjet 2420 PCL6 printer on my network for which drivers are not available for windows 7. I have installed windows xp mode on my windows 7 system, but I am unable to add that printer in ...
0
votes
0answers
65 views

Get data from a Win32 Struct on Ruby

I've been trying to fetch all the printers added on a windows-running pc, and to perform the task i'm using the Win32API to access the EnumPrinters Function, which seems to be working well with the ...
0
votes
1answer
148 views

Mirror driver call to capture GDI Call

I am working on sample which captures the GDI call and save it in some format. Once after saving I need to display back in some other application. To Capture the GDI calls I hooked to GDI calls. This ...