Search found 315 matches: simulate

Return to advanced search

Re: Google Graph extra graphic ? (Navaro)

Dear Silvio,

> I Remember there was a class simulate a gauge

Please post a screenshot, maybe Google graphs has it
by Antonio Linares
Sun Apr 07, 2024 4:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 2928

Re: Google Graph extra graphic ? (Navaro)

Antonio,
I Remember there was a class simulate a gauge
Perhaps the Paco canalfive meter?
by Silvio.Falconi
Sun Apr 07, 2024 12:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 2928

"Save As" dialog box

Hi,

I need to simulate the "Save As" dialog box. How can I do this ?
by Natter
Thu Jan 25, 2024 2:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Save As" dialog box
Replies: 14
Views: 1854

Re: hb_cdxPageSeekKey how to intercept this error

I don't have hb_out.log Im' sorry

will there be a way to simulate and fail with that type of error? and then because a dialog appears even if the program is console program
by MarcoBoschi
Thu Oct 19, 2023 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_cdxPageSeekKey how to intercept this error
Replies: 18
Views: 844

Re: hb_cdxPageSeekKey how to intercept this error

... opens even if the program is a console type and there is no way for me to understand procname() procline and table For this reason, how can I simulate with an ad hoc program a corruption of an index that sends the program into that error? When one of my programs goes into error I usually read ...
by MarcoBoschi
Thu Oct 19, 2023 6:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_cdxPageSeekKey how to intercept this error
Replies: 18
Views: 844

Re: Parameter for Timeout

... is over, it send Event xbe_None now i can react on xbe_None and call "DoCloseWindowAndDBF()" --- my Question is : how can i "simulate" 4th Parameter of AppEvent() under Fivewin :?:
by Jimmy
Mon Sep 18, 2023 8:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameter for Timeout
Replies: 17
Views: 812

Re: xHarbour.org updated!

Enrico, I have no way to simulate this example, as it is my MAIN MENU that compiles perfectly with BCC74. Enrico, no tengo forma de simular este ejemplo, ya que es mi MENÚ PRINCIPAL el que se compila perfectamente con BCC74. Lines 281, ...
by karinha
Sat Sep 16, 2023 5:51 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 39117

Re: Saving OuterHTML using Await Implementation with TWebView

... - This class allows waiting for specific elements to be loaded on the web page, ensuring the content is available for extraction. - The idea is to simulate the 'await' functionality seen in other programming languages. 2. **Main Function**: - A Dialog (`oDlg`) is created titled "WebView Test". ...
by CharlesKwon
Thu Aug 17, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1697

Re: Saving OuterHTML using Await Implementation with TWebView

... - This class allows waiting for specific elements to be loaded on the web page, ensuring the content is available for extraction. - The idea is to simulate the 'await' functionality seen in other programming languages. 2. **Main Function**: - A Dialog (`oDlg`) is created titled "WebView Test". ...
by Otto
Thu Aug 17, 2023 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1697

Re: simulate unknown Function of UDF in IndexKey()

Przemek solution using the Harbour error handler: FUNCTION Main()   LOCAL cFuncName   cFuncName := "SOME_FUNC"   UDF_DEFFUN( cFuncName, @MY_FUNC() )          // add redirection   ? &cFuncName( ...
by Antonio Linares
Sun May 14, 2023 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: simulate unknown Function of UDF in IndexKey()
Replies: 9
Views: 437

Re: simulate unknown Function of UDF in IndexKey()

hi Antonio,

thx for go.bat
now it work :D
by Jimmy
Tue May 09, 2023 8:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: simulate unknown Function of UDF in IndexKey()
Replies: 9
Views: 437

Re: simulate unknown Function of UDF in IndexKey()

Dear Jimmy,

I use this go.bat
Code: Select all  Expand view
set path=c:\bcc7\bin
c:\harbour\bin\win\bcc\hbmk2.exe create.prg -cflag=-D_HB_API_INTERNAL_
create
by Antonio Linares
Mon May 08, 2023 7:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: simulate unknown Function of UDF in IndexKey()
Replies: 9
Views: 437

Re: simulate unknown Function of UDF in IndexKey()

hi Antonio, To build it: hbmk2.exe create.prg -cflag=-D_HB_API_INTERNAL_ i try to use 1st Sample using set FWDIR=c:\fwhset fwh=c:\fwhset HBDIR=c:\harbourset hdirl=%hdir%\lib\win\bccset bcdir=c:\bcc7c:\Harbour\bin\hbmk2.exe %1 -cflag=-D_HB_API_INTERNAL_del %1.mapdel %1.tdsdel %1.objdel %1.cdel %1.ppo...
by Jimmy
Mon May 08, 2023 12:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: simulate unknown Function of UDF in IndexKey()
Replies: 9
Views: 437

Re: simulate unknown Function of UDF in IndexKey()

Using hashes from low level to support multiple codeblocks :-D Remember to build it this way: hbmk2.exe create.prg -cflag=-D_HB_API_INTERNAL_ function Main()   hb_CreateFunction( "xyz", { || QOut( "from XYZ()" ) } )   hb_CreateFunction( "...
by Antonio Linares
Sat May 06, 2023 7:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: simulate unknown Function of UDF in IndexKey()
Replies: 9
Views: 437

Re: simulate unknown Function of UDF in IndexKey()

Enhanced version supporting n parameters: We have to solve where to store the codeblocks, or next call to hb_CreateFunction() will overwrite the previous one. function Main()   hb_CreateFunction( "xyz", { | a, b, c | QOut( c ) } )   ? hb_IsFunction( &q...
by Antonio Linares
Fri May 05, 2023 11:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: simulate unknown Function of UDF in IndexKey()
Replies: 9
Views: 437
Next

Return to advanced search