Search found 120 matches: loops

Return to advanced search

Re: TWebView window size

I am thinking about using a thread to run webview, so both events loops (FWH and WebView) may coexist...

An example coming soon :-)
by Antonio Linares
Fri Feb 02, 2024 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView window size
Replies: 14
Views: 849

Re: Interesting discussion with ChtGPT

... down to the elements of the programming language, are they really different than C++ which is used for Harbour ? How about the structure, like loops, if/then and case statements. Are they somehow more modern ? So, my statement was essentially, this response takes a lack of information, and ...
by TimStone
Mon Nov 06, 2023 10:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1241

Re: Combinaciones de letras

... lo que ha hecho: This program uses a nested loop to generate all possible combinations of three or more letters in the given word. The outer two loops iterate over all pairs of letters in the word, and the inner loop iterates over all remaining letters in the word to generate a combination of ...
by Antonio Linares
Tue Dec 06, 2022 10:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Combinaciones de letras
Replies: 12
Views: 999

delete identical records

By creating an array with three for next loops I have to delete the records where I find equal numbers in the three columns for h=1 to Len(atmp)        If  atmp[h][1] == atmp[h][2]  .or. ;            atmp[h][1] ...
by Silvio.Falconi
Mon Oct 31, 2022 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: delete identical records
Replies: 6
Views: 357

Re: Backup from inside FWH program

... key that let me select the databases to use (depending on code that will be changed) In the code where i'm working before executing the changing loops, call the backup routine making datetime stamp copy's of the data. That way I will have the latest version at hand if I do the code wrong.. Seems ...
by Marc Venken
Thu Sep 01, 2022 7:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Backup from inside FWH program
Replies: 17
Views: 1456

Re: start at the end and go back in an array

... there is a function AReverse() (also missing) that I am not aware of. Dear Otto, AEval(), AScan(), etc. are much faster than using for ... next loops as they don't use pcode for the loops.
by Antonio Linares
Sat May 28, 2022 4:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: start at the end and go back in an array - RESOLVED --
Replies: 19
Views: 827

Re: Help with ascan

Dear Silvio, If you need fastest speed then forget about for ... next loops use AEval() and AScan() only If that is not fast enough, then you have to code it in pure C language. C language is the fastest speed you will ever get. Antonio, I not understood If ...
by Silvio.Falconi
Fri May 13, 2022 8:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help with ascan
Replies: 16
Views: 914

Re: Help with ascan

Dear Silvio,

If you need fastest speed then forget about for ... next loops

use AEval() and AScan() only

If that is not fast enough, then you have to code it in pure C language. C language is the fastest speed you will ever get.
by Antonio Linares
Fri May 13, 2022 7:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help with ascan
Replies: 16
Views: 914

Re: Focus error on this new project

... with a nice visual of a wheel that is progressing Some 'questions' are inside the code, is you have the time to look )) TDatabase Do -> while loops also with a nice visual wheel of progress bar. I start the project with my own dbf's, so maybe a good idea to send a email adres to marc(at)maveco(dot)be ...
by Marc Venken
Tue Dec 14, 2021 2:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Focus error on this new project
Replies: 16
Views: 1146

Re: HTML Report - is there a reason nobody cares?

... programming? I can't describe it better. page break I solve the page break similar to EasyReport. I specify an area height and then count the loops and make a break when it is reached. Otto Thank you for the info. Yes, Ayaan has started showing interests in programming :) Greetings from all ...
by anserkk
Tue Aug 03, 2021 5:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTML Report - is there a reason nobody cares?
Replies: 27
Views: 1738

Re: HTML Report - is there a reason nobody cares?

... programming? I can't describe it better. page break I solve the page break similar to EasyReport. I specify an area height and then count the loops and make a break when it is reached.     // insert a table    cHtml += memoread("table_th.htm")    for I := 1 to 25        if ...
by Otto
Mon Aug 02, 2021 12:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTML Report - is there a reason nobody cares?
Replies: 27
Views: 1738

New FTDN December/Diciembre 2020 (FWH 20.12)

... matrix and releasing it. Normally, FW_Matrix class should be enough for most applications. Where large computations are to be performed in large loops writing the code in C using these C functions improves the execution speed considerably.
by Antonio Linares
Mon Dec 28, 2020 10:16 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2020 (FWH 20.12)
Replies: 8
Views: 2551

Re: FWH: Support for Matrix calculations

... matrix and releasing it. Normally, FW_Matrix class should be enough for most applications. Where large computations are to be performed in large loops writing the code in C using these C functions improves the execution speed considerably. Example: This code written using FW_Matrix() is taking ...
by nageswaragunupudi
Fri Dec 11, 2020 12:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Support for Matrix calculations
Replies: 3
Views: 717

FWH: Support for Matrix calculations

... code. Though this is quite fast enough mostly, there can be more demanding applications that need complex matrix calculations performed in large loops. To support this, highly optimized C level functions are also provided.
by nageswaragunupudi
Thu Dec 10, 2020 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Support for Matrix calculations
Replies: 3
Views: 717

Re: Documentación sintaxis

... <programcode> can include any statements allowed in the body of a function. This includes statements spanning across multiple lines, such as loops (DO WHILE, FOR and FOR EACH), branching (DO CASE and SWITCH), error handling (BEGIN SEQUENCE and TRY...CATCH). Even the declaration of LOCAL variables ...
by nageswaragunupudi
Wed Oct 30, 2019 5:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Documentación sintaxis
Replies: 6
Views: 1439
Next

Return to advanced search