Search found 8 matches: testprint

Return to advanced search

Re: Class TFont different

Many thanks Mr. Rao, this works fine now. But i still have an issue when using either PRINT oPrn NAME "Testprint PREVIEW" or PRINT oPrn NAME "Testprint" PREVIEW FILE cPdfFile I want to print a jpg logo amongst text and the vertical position of this logo is ...
by Detlef
Sun May 01, 2022 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Class TFont different
Replies: 2
Views: 303

Re: printing several pages

Hello Antonio, According to the sample 'testprint' we have to set pageHeight() to the height of the desired pages. As long as we set this to the height of one page there will never be a next page. Is it not possible to build in some functions ...
by plantenkennis
Wed Oct 03, 2018 6:20 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: printing several pages
Replies: 23
Views: 6803

Subrayado títulos por impresora

Buenas tardes y feliz Pascua para todos,

Estoy comenzando con la impresión y me interesa conocer la forma de (si se puede) de subrayar los títulos.

Como base, estoy utilizando los PRG testprint de los Samples pero no veo la forma de hacerlo.

Gracias.

Rolando :D
by rolando
Sun Mar 23, 2008 11:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Subrayado títulos por impresora
Replies: 4
Views: 903

... modified your code, and it work. HB_FUNC( PRT_TESTPRINT ) { CPrinter * printer = new CPrinter; printer->Prt_Open(); Sleep(30); printer->Prt_TestPrint(); } But I do not recommend to use Prt_Open() function at the same routine together with any printing commands. Visto que me recomiendan usar ...
by pymsoft
Fri Nov 17, 2006 8:56 am
 
Forum: FiveWin para Pocket PC
Topic: Imprimir
Replies: 35
Views: 10045

Antonio, (parece una pesadilla) Revisé la lib por dentro (printerApi.lib) y lo veo escrito asi: Prt_TestPrint por lo cual escribí el codigo asi: #pragma BEGINDUMP #include <hbapi.h> #include <windows.h> #include <c:\lavwin\teve\mobitron\inc\printer.h> extern "C...
by pymsoft
Wed Nov 15, 2006 1:06 pm
 
Forum: FiveWin para Pocket PC
Topic: Imprimir
Replies: 35
Views: 10045

Pedro,

Haz este cambio:

extern "C" {
int Prt_TestPrint( void );
}

En la nueva versión de FWPPC ya no es preciso, ya que no se compila en modo C++ (flag -TP).
by Antonio Linares
Wed Nov 15, 2006 8:59 am
 
Forum: FiveWin para Pocket PC
Topic: Imprimir
Replies: 35
Views: 10045

Definí asi la funcion: DLL FUNCTION Prt_TestPr() AS LONG FROM "Prt_TestPrint" LIB "Mobitron.Devices.dll" Pero me da el siguiente error: Compiling 'teve.prg' and generating preprocessed output to 'teve.ppo'... teve.prg(894) Error E0030 Syntax error: "parse error at ' Prt_TestPr() AS LONG FROM "Prt_Te...
by pymsoft
Fri Nov 10, 2006 12:46 pm
 
Forum: FiveWin para Pocket PC
Topic: Imprimir
Replies: 35
Views: 10045

Imprimir

Tengo que imprimir en una impresora que viene integrada en un pocket. Tengo el SDK del productor con manuales y todo... Tengo la .lib (que supongo bastaría agregarla a mi buildce.bat) Como hago para llamar a cada funcion para imprimir? Tengo tambien algunas DLL... supongo que contienen lo mismo que ...
by pymsoft
Fri Nov 10, 2006 9:57 am
 
Forum: FiveWin para Pocket PC
Topic: Imprimir
Replies: 35
Views: 10045

Return to advanced search