Search found 42 matches: qout

Return to advanced search

Re: SAPI : change Voice

hi Antonio, oVoice:__hSink := __axRegisterHandler( oVoice:__hObj, { | x, y | QOut( x, y ) } ) i have add that Line into Sample CODE, but nothing "seem" to happen using QOut() :( when change into MsgInfo() it does "fire" ...
by Jimmy
Sat Feb 10, 2024 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3563

Re: SAPI : change Voice

> but how to get Event to call Function like in MSDN Sample ?

oVoice:__hSink := __axRegisterHandler( oVoice:__hObj, { | x, y | QOut( x, y ) } )
by Antonio Linares
Sat Feb 10, 2024 10:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3563

Re: SAPI : change Voice

... Esto es lo que debería conseguirse con esta llamada: oVoice:__hSink := __axRegisterHandler( oVoice:__hObj, { | x, y | QOut( x, y ) } ) pero algo nos falta pues los eventos no llegan descubri que tampoco funciona Function ChangeAvailavedevice()     If ...
by Danielmaximiliano
Thu Feb 08, 2024 6:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3563

Re: SAPI : change Voice

... Esto es lo que debería conseguirse con esta llamada: oVoice:__hSink := __axRegisterHandler( oVoice:__hObj, { | x, y | QOut( x, y ) } ) pero algo nos falta pues los eventos no llegan
by Antonio Linares
Thu Feb 08, 2024 6:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3563

Re: SAPI : change Voice

Dear Enrico,

xHarbour does not support "..." syntax, so such line should be:

oVoice:__hSink := __axRegisterHandler( oVoice:__hObj, { | x, y | QOut( x, y ) } )

but function __axRegisterHandler() is available in Harbour and not in xHarbour, if I am correct
by Antonio Linares
Thu Feb 08, 2024 1:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3563

Protecting certain functions to be used

... to avoid the use of certain Harbour functions. This code allows you to protect the symbols that you don't want to be used: Fill the array { "QOut" } to include all the symbols that you want to protect. Next version will allow to restore them when you want. protect.prg extern Dummyfunction ...
by Antonio Linares
Tue May 02, 2023 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 350

Re: SUB-CLASS TFolderEx()

hi, how to run Console App with QOut() under Fivewin :?: i try to use a Demo Sample which use Qout() but i got not "output" on Screen i do have sane under HGM where i can add REQUEST HB_GT_WIN_DEFAULT           // Console but this ...
by Jimmy
Wed Feb 08, 2023 4:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SUB-CLASS TFolderEx()
Replies: 20
Views: 1157

Error compiling libs

... correctly when running a simple prg because apache.prg probably has an error in this code: if Empty( GetEnv( "GATEWAY_INTERFACE" ) ) QOut( "Attention: This is modharbour CGI version and has to be executed" ) QOut( "from the server as a cgi-bin, i.e.:" ) QOut() ...
by giuliano
Tue Oct 18, 2022 3:14 pm
 
Forum: mod_harbour
Topic: Error compiling libs
Replies: 2
Views: 386

Re: SET ALTER TO cFile ?

hi,
hmpaquito wrote:? command is translated to msgbox alert in fivewin.ch
A workaround is change ? command for Qout() function

AHA ...
thx for Workaroud
by Jimmy
Tue Jul 12, 2022 7:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SET ALTER TO cFile ?
Replies: 4
Views: 389

Re: SET ALTER TO cFile ?

Hi,

? command is translated to msgbox alert in fivewin.ch

A workaround is change ? command for Qout() function

Regards
by hmpaquito
Tue Jul 12, 2022 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SET ALTER TO cFile ?
Replies: 4
Views: 389

Re: how to ?

Daniele,

Please try:

SET PRINTER on | OFF | <xlToggle>
SET PRINTER TO [<xcDevice> | <xcFile> [ADDITIVE]]

then use, QOut( "Hello world" )
by Antonio Linares
Tue Jul 07, 2020 7:06 am
 
Forum: mod_harbour
Topic: how to ?
Replies: 9
Views: 1556

Re: mod harbour FWLOG

Dear Otto,

From your PRG you call ShowConsole(), this will open a second Apache console window.

From that moment on, you can simply use QOut( ... ) and it will appear on the Apache console :-)

that simple
by Antonio Linares
Mon Jul 15, 2019 6:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: mod harbour FWLOG
Replies: 7
Views: 1038

Re: Compilar código Harbour con gcc en 64 BITS

He instalado MinGW para 63 bits, versión: \mingw-w64\x86_64-8.1.0-posix-sjlj-rt_v6-rev0 Y utilizo para compilar el siguiente BAT: cls@set HB_INSTALL=C:\harbour64%HB_INSTALL%\bin\harbour %1.prg -n -i%HB_INSTALL%\include -iC:\MinGW-64\mingw32\i686-w64-mingw32\include  gcc -Wall -o%1.exe %1.c -I%H...
by Verhoven
Sat May 26, 2018 11:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilar código Harbour con gcc en 64 BITS
Replies: 8
Views: 2006

Re: funciones de FWH y Harbour en un archivo .txt

... PRow()->nRow Pv(<nInvestment>,<nInterestRate>,<nPeriods>)->nPresentValue PValue(<nParamPos>)->xParamValue QOut(<explist>)->Nil QQOut(<explist>)->Nil Quarter([<dDate>])->nQuarter QueryRegistry(<nHKEY>,<cRegPath>,<cRegKey>,<xValue>,[<lCreate>])->lExists ...
by rubenfernandez01
Sun Oct 22, 2017 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5710

Re: funciones de FWH y Harbour en un archivo .txt

... PRow()->nRow Pv(<nInvestment>,<nInterestRate>,<nPeriods>)->nPresentValue PValue(<nParamPos>)->xParamValue QOut(<explist>)->Nil QQOut(<explist>)->Nil Quarter([<dDate>])->nQuarter QueryRegistry(<nHKEY>,<cRegPath>,<cRegKey>,<xValue>,[<lCreate>])->lExists ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5710
Next

Return to advanced search