Search found 15 matches: devicecapabilities

Return to advanced search

Re: Pritpal, HBIDE developer, assists us to use it with FWH

Hi Antonio Here is the stripped down list, for clarity purpose the irrelevant entries are removed. ---------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------...
by Pritpal Bedi
Mon Jun 07, 2010 11:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pritpal, HBIDE developer, assists us to use it with FWH
Replies: 293
Views: 99088

Re: Se necesita ayuda en el wiki !

... DeleteObject() DelIniEntry() Delinisection() Delresource() DelwndBrus() DestroyCursor() DestroyIcon() DestroyMenu() DestroyWindow() DeviceCapabilities() DevMode() DialogBoxIndirect() DibDraw() DibFromBitmap() DibHeight() DibPalette() DibRead() DibWidth() DibWrite() Ditbackgrd() DlgFindText() ...
by Cgallegoa
Sat Feb 20, 2010 8:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5503

Re: tarea concluida

Persi, Una última solicitud: por favor no incluyas los nombres de cada sección en inglés en las funciones en español. Aqui tienes un ejemplo: http://wiki.fivetechsoft.com/doku.php?id=fivewin_funcion_devicecapabilities&rev=1252384533&do=diff Una vez hagas esos cambios, estará ...
by Antonio Linares
Tue Sep 08, 2009 7:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tarea concluida
Replies: 11
Views: 1476

Re: tarea concluida

Sr. Linares como verá he realizado algunos cambios en las funciones como me indico. Inclusive he agregado un ejemplo en la función devicecapabilities. http://wiki.fivetechsoft.com/doku.php?i ... pabilities
Atte. Persi Salazar D.
by persi
Tue Sep 08, 2009 4:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tarea concluida
Replies: 11
Views: 1476

Badara,

Please try this:

MsgInfo( DeviceCapabilities( cPrinterName, DC_ORIENTATION, 0 ) )

and tell me what value you get, thanks
by Antonio Linares
Sun Aug 31, 2008 3:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DeviceCapabilities() failed
Replies: 10
Views: 1899

Antonio, I have tried this but DeviceCapabilities() return -1 Here i put the printer name in cDevice. When i put the driver print file name instead, DeviceCapabilities() return 0, but before i have the message "Could not load driver". In ...
by Badara Thiam
Sun Aug 31, 2008 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DeviceCapabilities() failed
Replies: 10
Views: 1899

Badara,

Have you tried it this way ?

DeviceCapabilities( <cDevice>, <nCapability>, <@cBuffer> ) --> <nRetCode>
by Antonio Linares
Sun Aug 31, 2008 12:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DeviceCapabilities() failed
Replies: 10
Views: 1899

DeviceCapabilities() failed

Hello,

I just try to use DeviceCapabilities() with FWH and Harbour,
but failed. Who know how use it please ?
The manual not help me.

Regards,
by Badara Thiam
Thu Aug 28, 2008 5:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DeviceCapabilities() failed
Replies: 10
Views: 1899

James,

Thanks, but i have this book (Editor SAMS) :
Microsoft Windows 2000 API SuperBible

And he say DeviceCapabilities() work under
Windows 98 and 2000. No restrictions.
by Badara Thiam
Fri Dec 08, 2006 1:51 pm
 
Forum: FiveWin for CA-Clipper
Topic: Printers, Printers, Printers...
Replies: 26
Views: 12238

... info without any problems, using the same computers and printers... ? Over the past 3 years I came up often with messages concerning 3 functions (DeviceCapabilities(), GetDeviceCaps() and DevMode()). Unfortunately it seems that these 3 functions are somehow lost in the dark cause nobody has been ...
by Gilbert
Tue Nov 28, 2006 3:11 pm
 
Forum: FiveWin for CA-Clipper
Topic: Printers, Printers, Printers...
Replies: 26
Views: 12238

Re: Printers, Printers, Printers...

Hi All, Can anyone can tell me, since Antonio Linares can`t, why DeviceCapabilities(), GetDeviceCaps() and DevMode don`t work at all !!! I don't use Clipper/Fivewin anymore but my Clipper/Fivewin apps did print just fine. I think you may have a bugged printer ...
by Enrico Maria Giordano
Fri Nov 24, 2006 7:58 am
 
Forum: FiveWin for CA-Clipper
Topic: Printers, Printers, Printers...
Replies: 26
Views: 12238

Printers, Printers, Printers...

Hi All, Can anyone can tell me, since Antonio Linares can`t, why DeviceCapabilities(), GetDeviceCaps() and DevMode don`t work at all !!! I`ve been struggling whit these 3 functions for the past year and can`t get nothing out of them. Why ? And please, don`t ...
by Gilbert
Thu Nov 23, 2006 10:55 pm
 
Forum: FiveWin for CA-Clipper
Topic: Printers, Printers, Printers...
Replies: 26
Views: 12238

Re: DevMode() failure in FW 2.5

... 15 #define DC_PAPERNAMES 16 #define DC_ORIENTATION 17 #define DC_COPIES 18 LOCAL aDevM LOCAL nVersion LOCAL cName := "Canon S700" nVersion := DeviceCapabilities( cName, DC_VERSION ) IF nVersion != 0 aDevM := DevMode(cName, nVersion) IF aDevM = NIL MsgInfo("DevMode() return NIL !!!") ELSE MsgInfo("Valtype(DevMode(aDevM)) ...
by Badara Thiam
Thu Mar 16, 2006 11:06 am
 
Forum: FiveWin for CA-Clipper
Topic: DevMode() failure in FW 2.5
Replies: 3
Views: 1246

Re: DeviceCapabilities()

Let's down, use GetDeviceCaps() instead...
by Badara Thiam
Tue Oct 25, 2005 4:00 pm
 
Forum: FiveWin for CA-Clipper
Topic: DeviceCapabilities()
Replies: 1
Views: 1139

DeviceCapabilities()

... paper bins available for the tested printer. (HP LaserJet 2100) Here is a piece of code I'm using for testing with the results I get: nValue := DeviceCapabilities(scPrntName, DC_BINNAMES, @xContainer) if nValue > 0 MsgInfo(Str(nValue)) // Returns 15. Don't know what it means MsgInfo(Str(Len(xContainer))) ...
by Gilbert Vaillancourt
Sun Oct 09, 2005 7:05 pm
 
Forum: FiveWin for CA-Clipper
Topic: DeviceCapabilities()
Replies: 1
Views: 1139

Return to advanced search