Search found 46 matches: intermediate

Return to advanced search

Re: How to get libssl.lib and libcrypto.lib for MSC?

... vc_dll2lib.bat @echo off REM Usage: dll2lib [32|64] some-file.dll REM REM Generates some-file.lib from some-file.dll, making an intermediate REM some-file.def from the results of dumpbin /exports some-file.dll. REM Currently must run without path on DLL. REM (Fix by removing ...
by carlos vargas
Wed Jul 26, 2023 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to get libssl.lib and libcrypto.lib for MSC?
Replies: 3
Views: 270

Re: Campos empaquetados en archivo de texto

... 0x0D: isNegative = true; break; case 0x0F: case 0x0C: isNegative = false; break; default: throw new Exception("Bad sign nibble"); } long intermediate; long carry; long digit; for (int j = inp.Length * 2 - 1; j > 0; j--) { // multiply by 10 intermediate = lo * 10; lo = intermediate ...
by El Loco
Wed Oct 13, 2021 3:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Campos empaquetados en archivo de texto
Replies: 47
Views: 3006

Re: Understanding Genesis

Dear Otto, Yes, it is correct. From a Model - View - Controller point of view: 1. Controller: It is the intermediate between the users requests and the views and data. 2. View: It is in charge of building the user interface. 3. Model: It is in charge of managing the data. Users ...
by Antonio Linares
Sat Nov 09, 2019 9:13 am
 
Forum: mod_harbour
Topic: Understanding Genesis
Replies: 3
Views: 730

Re: Here are the best programming languages to learn in 2018

... of 5 people, more time, more money and surely less than what you want. I know you feel this anger, I also experienced it. But either we stay in an intermediate layer or we go out to fight against the outermost layers, joining win & web. This is my obsession in these moments. How many it do ...
by Carles
Mon Mar 19, 2018 6:14 pm
 
Forum: Off Topic / Otros temas
Topic: Here are the best programming languages to learn in 2018
Replies: 8
Views: 2912

Re: TMenuItem height

If we cannot have intermediate values, 4 is better.

EMG
by Enrico Maria Giordano
Sun May 07, 2017 10:22 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: TMenuItem height [Fixed]
Replies: 48
Views: 522717

Re: UTF8 & MySql are 100% compatible with FWH?

... to use TDolphin or TMySql to ADO. FWH does work with utf8 perfectly. An FWH+(x)Harbour program needs to communicate with MySql server through an intermediate interface. The interface can be: 1) ADO using TOleAuto() of Harbour --> Works Perfectly 2) ADO using TOleAuto() of xHarbour 3) TDolphin ...
by nageswaragunupudi
Mon Jun 13, 2016 3:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: UTF8 & MySql are 100% compatible with FWH?
Replies: 35
Views: 9617

Re: Checkbox text disappears Harbour/MSVC

... /SUBSYSTEM:WINDOWS /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /ManifestFile:"Debug\tutor01.exe.intermediate.manifest" /ERRORREPORT:PROMPT /NOLOGO /TLBID:1 Manifest /verbose /out:"Debug\tutor01.exe.embed.manifest" /nologo "Debug\tutor01.exe.embed.manifest.res" ...
by Antonio Linares
Sat Feb 28, 2015 6:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox text disappears Harbour/MSVC
Replies: 35
Views: 7276

Re: function to supress intermediate spaces

Mr Otto You just need one line        aRec[I] := CharRem( CRLF, aRec[I])  All Chr(13) and all Chr(10) will be removed, even if they are not together. select datenaFldNo := {}AEval( DbStruct(), { |a,i| If( a[ 2 ] $ 'CM', AAdd( aFldNo,...
by nageswaragunupudi
Sat Jan 31, 2015 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3460

Re: function to supress intermediate spaces

Hello, is this a good and save way to remove CRLF form database-fields. Thanks in advance Otto select datenaStruc := DBStruct()go topdo while .not. eof()    aRec := getrec()    For I := 1 to len( aRec )        if aStruc[I,2] = "C"        aRec[I&#...
by Otto
Sat Jan 31, 2015 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3460

Re: function to supress intermediate spaces

This is only available with xHarbour though? Both Harbour and xHarbour. We need to link \xharbour\lib\ct.lib for xHarbour and \harbour\lib\hbct.lib for Harbour. If we are using fwh, it means we already have these libs included in our link scripts though we might not have noticed. These libs contain...
by nageswaragunupudi
Fri Jan 30, 2015 5:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3460

Re: function to supress intermediate spaces

EMG,

Your computer is fast--2.4 times faster than mine. I get:

3.31
0.03

Either way, charRem() is 100 times faster than strtran().

Thanks Nages.

This is only available with xHarbour though?
by James Bott
Fri Jan 30, 2015 1:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3460

Re: function to supress intermediate spaces

But CharRem() function specially made for such purposes and more efficient. You're right! Look at this sample: FUNCTION MAIN()    LOCAL cSpaces := SPACE( 100000000 )    LOCAL nSec := SECONDS()    cSpaces = STRTRAN( cSpaces, " ", &q...
by Enrico Maria Giordano
Thu Jan 29, 2015 6:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3460

Re: function to supress intermediate spaces

Mr James Elvira's first posting was for removing all spaces. StrTran( cString, ' '. '' ) is correct. But CharRem() function specially made for such purposes and more efficient. Mr Carlos Vargas' posting was to remove duplicate adjacent spaces. I suggested CharOne() for this instead of the code he wa...
by nageswaragunupudi
Thu Jan 29, 2015 5:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3460

Re: function to supress intermediate spaces

Elvira said: Is there a function to remove the intermediate spaces from a string ? Nages said: This is a highly optimized function specially meant for removing adjacent duplicate characters. I took Elvira's statement to mean that he want to remove ...
by James Bott
Thu Jan 29, 2015 2:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3460
Next

Return to advanced search