Search found 96 matches: reverse

Return to advanced search

Re: records on xbrowse

... <= oBrw:nLen - Not working https://i.postimg.cc/k4ZJVmrK/1.gif oBrw:nDataRows >= oBrw:nLen Here it works but in reverse https://i.postimg.cc/2jbv0j5p/2.gif
by Silvio.Falconi
Tue Mar 26, 2024 12:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 1672

Re: reverse engineering of a harbour compiled c file

Dear Lorenzo,

Please post the contents of lefunz.c here
by Antonio Linares
Wed Jan 17, 2024 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: reverse engineering of a harbour compiled c file
Replies: 1
Views: 604

reverse engineering of a harbour compiled c file

... function of which i lost everything. Now i realized that the functions are still in a c file (lefunz.c) in HB_func format Is it possible to reverse enginering to a prg format? ( or from the exe file that is still linked with the last version of the source files) Thank you Lorenzo
by lorenzoazz
Tue Jan 16, 2024 9:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: reverse engineering of a harbour compiled c file
Replies: 1
Views: 604

function to create a string

Is there a function to save a string like "30/60/90" from an array?

i.e. to create an array I made aData := hb_ATokens(cString,"/")

Does the reverse function exist?
by Silvio.Falconi
Tue Dec 12, 2023 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to create a string
Replies: 6
Views: 472

Re: not ISOEM(), ISANSI() or IsUTF8()

...        if( pcc ) pcc[0] = cc;         return pAnsi;      }   }   return 0;}  and reverse XPPRET XPPENTRY CUTF8TOOEM(XppParamList pl ){   ContainerHandle conr = _conNew(NULLCONTAINER);   BOOL bByRef = FALSE;  ...
by Jimmy
Fri Sep 01, 2023 2:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2093

nginx as a reverse proxy to access Apache with mod harbour

I have installed nginx. Hello friends, I have changed the configuration. I now use nginx as a reverse proxy to access Apache with mod harbour. I can now access my programs through the Nginx server. Best regards, Otto server {    listen 80;    server_name ...
by Otto
Mon Aug 07, 2023 9:58 pm
 
Forum: mod_harbour
Topic: nginx as a reverse proxy to access Apache with mod harbour
Replies: 0
Views: 250

Re: ASCAN reverse ?

hi Detlef,
Detlef wrote:just use RAscan() :wink:

so easy, thx

Detlef wrote:p.s. du wohnst in Hamburg?
Das ist nicht weit von mir. Vielleicht könnten wir uns austauschen?

JA
schreibe mir doch bitte eine private Message mit Email Adresse dann kann ich dir antworten.
AUGE_OHR AT WEB.DE
by Jimmy
Wed May 17, 2023 2:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASCAN reverse ?
Replies: 2
Views: 161

Re: ASCAN reverse ?

Hi Jimmy, just use RAscan() :wink: // The example demonstrates the difference between AScan() and RAscan(). PROCEDURE Main() LOCAL aArray := { "A", 1, Date(), 1, .F. } ? Ascan( aArray, 1 ) // result: 2 ? RAScan( aArray, 1 ) // result: 4 RETURN Regards, Detlef p.s. du wohnst in Hamburg? Das...
by Detlef
Wed May 17, 2023 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASCAN reverse ?
Replies: 2
Views: 161

ASCAN reverse ?

hi,

i have a (short) Array where i want to find a Item but must start at End of Array a search backward

is there a Way to use ASCAN() "reverse" :?:
by Jimmy
Wed May 17, 2023 1:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ASCAN reverse ?
Replies: 2
Views: 161

CodeBlock

Hello friends

I need to know what has inside a codeblock: function, field name..

That's possible.

I'm trying to take the TcBrowse Object and know the contents of each column, reverse engineering.
by Ari
Tue Nov 01, 2022 11:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CodeBlock
Replies: 2
Views: 276

Re: what is use for CRLF in HTLM ?

Hi Jimmy, I have been working on the reverse for the last few days. Here it works like this: html cText += '<html> \n ' ; cText += '<head> \n ' ;cText += '<style> \n ' ;from mod harbour cText += '<html> ...
by Otto
Thu Sep 08, 2022 11:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: what is use for CRLF in HTLM ?
Replies: 3
Views: 304

New FTDN June/Junio 2022 (FWH 22.06)

... Eagle1.lib * New and improved array functions in fwdecode.prg - New: FW_AReverse( aArray ) --> Array of same length with all elements in the reverse order. Ex: FW_AReverse( { 1, 2, 3, 4 } --> { 4, 3, 2, 1 } - New: FW_RAEval( aArray, bBlock, [nStart], [nCount] ) Evaluates bBlock for every ...
by Antonio Linares
Tue Jun 21, 2022 4:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2022 (FWH 22.06)
Replies: 1
Views: 872

Print a coupon

... and save positions on array https://i.postimg.cc/NfKNprhD/posizioni.png however I realized that in print I have everything in reverse and therefore the second column of the array is actually the row in the print so i thought about converting the print command for nI := 1 to ...
by Silvio.Falconi
Fri Jun 17, 2022 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Print a coupon
Replies: 1
Views: 343

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

Yes, Detlef is correct. It stands for "reverse" The same way, RAEval() would stand for reverse AEval() Antonio, the function run bad or I not set right ... I Insert also the old function Ritardo() made with dbf ( I send you the new lotto.dbf) ...
by Silvio.Falconi
Mon May 30, 2022 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: start at the end and go back in an array - RESOLVED --
Replies: 19
Views: 827

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

Yes, Detlef is correct. It stands for "reverse"

The same way, RAEval() would stand for reverse AEval()
by Antonio Linares
Sun May 29, 2022 8:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: start at the end and go back in an array - RESOLVED --
Replies: 19
Views: 827
Next

Return to advanced search

cron