Search found 898 matches: block

Return to advanced search

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: 0
Views: 34

Re: xbrowse problem with :bLClicked

... function. When you set a keyboard shortcut using SetKey(), Harbour will wait for the user to release all keys and then execute the code block associated with that shortcut. In this case, "KL" is an arbitrary shortcut that is not likely to be pressed by the user, so it effectively ...
by Silvio.Falconi
Mon Apr 22, 2024 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 99

Re: xbrowse problem with :bLClicked

... function. When you set a keyboard shortcut using SetKey(), Harbour will wait for the user to release all keys and then execute the code block associated with that shortcut. In this case, "KL" is an arbitrary shortcut that is not likely to be pressed by the user, so it effectively ...
by Antonio Linares
Mon Apr 22, 2024 5:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 99

Re: xbrowse problem with :bLClicked

... specifically when using the spacebar to toggle selection. Let's break it down and see if we can fix this. First, let's analyze the `:bLClicked` block: :bLClicked := { |r,c,f,oBrw|    if( oBrw:Mousecolpos( c ) == 1,       ( if( ( f := AScan( oBrw:aSelected, oBrw:BookMark ...
by Antonio Linares
Mon Apr 22, 2024 5:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 99

Re: FWMARIA TOEXCEL ERROR FREEZEPANES

It appears you are using
Code: Select all  Expand view
oRowSet:ToExcel()

of FWMaria lib.
We will now include this code in TRY/CATCH block for future.

But we advise you to use oBrw:ToExcel() which is safer.
by nageswaragunupudi
Sat Apr 06, 2024 2:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWMARIA TOEXCEL ERROR FREEZEPANES
Replies: 3
Views: 3256

Re: Question about wfReadUrl()

Enrico, I just did a test on a system of one of my customers who is using BitDefender. BitDefender blocks http://www.ma-consult.be, but does not block the other url's. With your suggestion using UrlExist(), a blocked URL returns into a .F., the other URL's, return into a ...
by driessen
Sat Apr 06, 2024 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about wfReadUrl() - SOLVED
Replies: 20
Views: 2780

Re: FWErrorsys()

I wrote the FW Error Sys() function in which I specified my code block

Error Block( { | e | MyFunc(), Error Dialog( e ) } )
However, when compiling, I get an error - the Error Dialog() function was not found
by Natter
Wed Apr 03, 2024 8:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1828

Re: Using llama64.lib with Harbour

Some provider block .ru.
by Otto
Thu Mar 28, 2024 12:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using llama64.lib with Harbour
Replies: 4
Views: 1144

Re: WebView resize

Dear Antonio,
Even though I do not use the code block bResized, but the DIALOG is resizable and I have changed the size, then I also get the error.
Best regards,
Otto


h['oDlg']:bResized := { || oWebView:SetSize(600, 800) }'
by Otto
Fri Mar 08, 2024 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2099

Re: SAPI : change Voice

... "Main", "RichEdit_1", "SetFocus" )    DoEvents() ENDDOReturn Microsoft Note : The WaitUntilDone method blocks execution until the voice finishes speaking, enabling an application to speak a text stream asynchronously and determine when it finishes. The ...
by Danielmaximiliano
Wed Feb 14, 2024 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3567

Re: Search by line

... ............................................... endif function AtLine(itm, xBk)  local st, nOk:=0 ** itm - string  ** xBk - code block  xBk:=&xBk for st=1 to len(itm) if eval(xBk, itm[st]) nOk:=st exit endif next return nOk It works fine, but I wanted to know if there is already ...
by Natter
Tue Feb 06, 2024 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search by line
Replies: 8
Views: 311

Search by line

Is there a search function for a line with a code block (a la ascan() ) ?
by Natter
Tue Feb 06, 2024 1:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search by line
Replies: 8
Views: 311

Re: Using Microsoft AI Phi-2 from FWH

... not react same Way like Fivewin Sample it does not write "Answer" on-fly ... it write it on "End" and all Text in "one Block"
by Jimmy
Fri Dec 22, 2023 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 8328

Re: Classe TGif

... color table flag, interlace flag, sort flag, size of local color table, and local color table (optional). It should have one or more image data blocks that contain the compressed pixel data of each image in the file. The image data blocks should start with a byte containing the LZW minimum code ...
by Antonio Linares
Fri Dec 08, 2023 8:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Classe TGif
Replies: 9
Views: 1659

Re: Help splitting up a character address string

... the point where you want the function to end and return a value. There is no specific keyword like END FUNCTION to denote the end of the function block as in some other languages. The corrected Harbour code would look like this: harbour Copy code FUNCTION SplitAddress(cAddress) LOCAL cStreet, ...
by Otto
Wed Nov 15, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602
Next

Return to advanced search