Search found 912 matches: block

Return to advanced search

Re: Most powerfull Xbrowser and PDF

... A C function embedded with #pragma BEGINDUMP. Enumerates all child windows of a given parent window (hWnd) and executes a Harbour code block for each window. This enables dynamic interaction with GUI elements in other applications. Main Use Cases: File Conversion: Converts PDF, Word, ...
by Otto
Mon Nov 18, 2024 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Most powerfull Xbrowser and PDF
Replies: 16
Views: 806

Re: a future proposal for Xbrowse

Nice.
We will try to provide this soon.

Right now, we can copy a cell or a row with all columns or many selected rows with all columns and paste

We will in future provide for selecting a block with selected columns also.
by nageswaragunupudi
Sun Oct 27, 2024 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: a future proposal for Xbrowse
Replies: 1
Views: 191

help to make a condition

Insert a code block

I have
sample nLastRecords:= 2000

IF nLastRecords > 0
nInit:=olotto:lastrec()-nLastRecords
nEnd:= olotto:lastrec()
ENDIF


and I must insert this on a codeblock

bFor:= { || recno() <= nInit .and. recno() >= nEnd }

but make error
by Silvio.Falconi
Sat Oct 12, 2024 9:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help to make a condition
Replies: 2
Views: 370

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... the newsgroup comp.lang.xharbour... :-( Anyway, I made some tests and found that the problem could be with the call to the cleanup function of a block node: ( s_pCurrBlock->pFunc )( ( void * ) ( s_pCurrBlock + 1 ) ); I don't know why the fifth block (the fifth ...
by nageswaragunupudi
Sun Sep 22, 2024 7:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 1393

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... the newsgroup comp.lang.xharbour... :-( Anyway, I made some tests and found that the problem could be with the call to the cleanup function of a block node: ( s_pCurrBlock->pFunc )( ( void * ) ( s_pCurrBlock + 1 ) ); I don't know why the fifth block (the fifth ...
by Enrico Maria Giordano
Sun Sep 22, 2024 7:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 1393

Re: Switching from memo fields to files -

... for each memo entry, we use a single file. You can then access it directly. Until now, you had to calculate the starting point via the offset and blocks in the memo field. This also offers great advantages for full-text search; you can immediately find the guest in the document. This is much more ...
by Otto
Wed Sep 11, 2024 7:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching from memo fields to files -
Replies: 8
Views: 862

Re: Numeric Comparison

... The code is: [code] bFor:= compile( "_Field->"+ upper(cSearchField) + cOpsType + cValToChar(uOldValue ) ) /code] bFor becomes a code block. The field I am searching is CLSBAL The type is Numeric However uOldValue is translated to a character. Using dbEval(), will it compare a character ...
by TimStone
Wed Jul 17, 2024 5:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric Comparison
Replies: 6
Views: 714

Re: Mr. Rao, Pls your help

... much. Regards Dear Armando, I use :bIndent := { ||20 + ( ::cAlias )->TREELEVEL * 20 } . With this it is easy to reach what you want. :bIndent block and original xBrowse is much more flexible . I called the program RAO-notes at the time. It was an abbreviation: >Discover a new dimension ...
by Armando
Wed Jul 10, 2024 9:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, Pls your help
Replies: 5
Views: 642

Re: Mr. Rao, Pls your help

Dear Armando, I use :bIndent := { ||20 + ( ::cAlias )->TREELEVEL * 20 } . With this it is easy to reach what you want. :bIndent block and original xBrowse is much more flexible . I called the program RAO-notes at the time. It was an abbreviation: >Discover a new dimension of working ...
by Otto
Mon Jul 08, 2024 7:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, Pls your help
Replies: 5
Views: 642

Re: Intercept pressing VK_SNAPSHOT ( "PrtScr" )

> Or, how do I send this key pressing event to the :bKeyDown block of an object ? #include "Fivewin.ch"static oDlgfunction Main()     DisablePrintScreen()     DEFINE DIALOG oDlg      oDlg:bKeyDown = { | nKey | If( nKey ...
by Antonio Linares
Thu Jul 04, 2024 11:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Intercept pressing VK_SNAPSHOT ( "PrtScr" )
Replies: 6
Views: 468

Re: Intercept pressing VK_SNAPSHOT ( "PrtScr" )

Or, how do I send this key pressing event to the :bKeyDown block of an object ?
by concentra
Thu Jul 04, 2024 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Intercept pressing VK_SNAPSHOT ( "PrtScr" )
Replies: 6
Views: 468

Re: DBF editors

... frankDB The macro #define COMPILAR(x) &( "{ || " + x + " }" ) is a definition that transforms the parameter x into a code block (known as "Codeblock Evaluation"). In Harbour and related dialects (such as xHarbour and FiveWin), code blocks can be evaluated at runtime. ...
by Otto
Tue Jun 25, 2024 2:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF editors
Replies: 78
Views: 8958

Re: passing a value through a for..next loop

... in the for next loop to bchange and the value is always the same We need to keep in mind at all times, NOT to use loop variables in building code-blocks inside a loop. Build the code-block in a separate function using the loop variable as one of the parameters of the function. Please search for ...
by Silvio.Falconi
Tue May 14, 2024 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 2083

Re: passing a value through a for..next loop

... in the for next loop to bchange and the value is always the same We need to keep in mind at all times, NOT to use loop variables in building code-blocks inside a loop. Build the code-block in a separate function using the loop variable as one of the parameters of the function. Please search for ...
by nageswaragunupudi
Mon May 13, 2024 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 2083

New FTDN April 2024 (FWH 24.04)

... the errors are logged to <exename>.log. If cLogFile is specified errors are logged to the specified file. 3. bOnErr: If specified, this codeblock is evaluated with params |oCn, oErr, e, GetPrcLn( 1 )| - New: function FW_GetAdoError( oCn ) --> oAdoErr Returns Ado Error and then clears ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 2135
Next

Return to advanced search

cron