Displaying 3 results from an estimated 3 matches for "dmpapersize".
2001 Feb 16
2
Default Page Size
I've finally gotten wine (codeweavers) to work with my non-Windows
system. I can run Lotus Notes without many problems and can even print to
my postscript printer with WINEPS.DRV, but I need to remember to change
the page size from A4 to Letter each time I restart Notes (or any other
app). Is there a way to tell wine or WINEPS.DRV to default to Letter?
Thanks,
Rick(rick@rlknight.com)
2013 Jan 04
0
Wine release 1.5.21
...api-ms-win-security-base-l1-1-0: Add dll.
conhost.exe: Add stub program.
Dmitry Timoshkov (10):
wineps.drv: Add an ability to select device resolution from UI.
wineps.drv: Make sure that DEVMODE fields changed through UI are marked as set.
wineps.drv: Update dmFormName when dmPaperSize is being changed through UI.
wineps.drv: Properly handle dmFormName in unicode DEVMODE structure.
wineps.drv: Update dmFormName when merging DEVMODE structures.
wineps.drv: Update dmPaperWidth/Height when dmPaperSize is being changed through UI.
po: Correct Russian translati...
2002 Oct 07
9
GetPrinter Level 2 does not get devmode
...[dwNeeded];
b = GetPrinter(hPrinter,2,printerInfo,dwNeeded,&dwNeeded);
if(b)
{
PRINTER_INFO_2 * pInfo = (PRINTER_INFO_2 *)printerInfo;
if(pInfo->pDevMode)
{
if (DMPAPER_A4 == pInfo->pDevMode->dmPaperSize)
MessageBox("A4");
else
MessageBox("LT");
}
else
MessageBox("Devmode is NUll");
}
else
DWORD dwErr = GetLastError();...