Dnia piątek, 17 marca 2006 14:35, Frederico Bertucci napisał: Hi
Good morning guys
I did my system works with wine no problem, but when I try print using then, doesnt work... if I print from any other aplication, works.
I talked with my developer and he told me that are using a delphi componet called RDPRINT, this in windows, to create better graphics.
So, Are there any way to print in wine, using this RDPRINT ?? any dll, any configuration
I am using latest wine configured with winetools, the printer is a lx300.
I am trying do this works since 2 weeks ago and not sucefull
Tks guys
try this patch
=================================
wine.15.03.06.19.02.59.diff ? dlls/msvideo/Makefile ? dlls/win32s/Makefile ? dlls/winsock/Makefile ? dlls/winsock/libws2_32.def ? dlls/winsock/version.res ? dlls/winsock/tests/Makefile ? dlls/winsock/tests/testlist.c Index: dlls/gdi/printdrv.c =================================================================== RCS file: /home/wine/wine/dlls/gdi/printdrv.c,v retrieving revision 1.46 diff -u -p -1 -r1.46 printdrv.c --- dlls/gdi/printdrv.c 12 Sep 2005 10:30:06 -0000 1.46 +++ dlls/gdi/printdrv.c 15 Mar 2006 18:03:01 -0000 @@ -471,3 +471,3 @@ static int CreateSpoolFile(LPCSTR pszOut if (!psCmd[0] && !strncmp("LPR:",pszOutput,4)) - sprintf(psCmd,"|lpr -P%s",pszOutput+4); + sprintf(psCmd,"|lp -d'%s' ",pszOutput+4);
=======================================