Search found 23 matches: abi

Return to advanced search

Re: Xbrowse Filter with a big dbf

I tried to use an array USE BANCHE aData := FW_DbfToArray( "ABI,CAB,ISTBAN,LOCALITA" ) CLOSE BANCHE the exe of the test is arrived after some seconds (40) https://i.postimg.cc/q721Z98h/jkjk.png then I tried to search a bank write ...
by Silvio.Falconi
Fri Apr 17, 2020 12:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Filter with a big dbf
Replies: 3
Views: 688

Xbrowse Filter with a big dbf

I wish create a filter on a xbrowse fill with a Dbf ( I have a dbf with 61.819 records) I wish search these fields ABI CAB ISTBAN CAP LOCALITA PROV https://i.postimg.cc/Gp8DZVdL/bank.png I saw the Nages samples use array data but not dbf directly I insert oBrowse:uBarGetVals ...
by Silvio.Falconi
Thu Apr 16, 2020 10:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Filter with a big dbf
Replies: 3
Views: 688

Re: C++Compiler - FREE TOOL

... -fcxx-exceptions -fexceptions -fseh %CRLF% -fdiagnostics-show-option%CRLF% -fcolor-diagnostics %CRLF% -backend-option -vectorize-loops %CRLF% -cxx-abi borland %CRLF%-o%OBJ% -x c++ %C% %CRLF%-DHB_FM_STATISTICS_OFF %CRLF%-DHB_NO_DEFAULT_API_MACROS %CRLF%-DHB_NO_DEFAULT_STACK_MACROS %CRLF%-DHB_OS_WIN_32 ...
by mastintin
Tue Jul 26, 2016 6:47 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: C++Compiler - FREE TOOL
Replies: 18
Views: 8582

Re: C++Compiler - FREE TOOL

... -std=c++11 -fcxx-exceptions -fexceptions -fseh -fdiagnostics-show-option -fcolor-diagnostics -backend-option -vectorize-loops -cxx-abi borland -o%OBJ% -x c++ %C% Saludos.
by mastintin
Mon Jul 25, 2016 4:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: C++Compiler - FREE TOOL
Replies: 18
Views: 8582

Re: How to build Harbour for iOS (and simulator)

... export HB_WITH_SQLITE3=local export HB_BUILD_DYN=no export HB_BUILD_PARTS=lib export HB_USER_CFLAGS= -arch\ i386\ -arch\ x86_64\ -fobjc-abi-version=2\ -mios-simulator-version-min=6.0\ -fobjc-legacy-dispatch\ -DHB_MAIN_WIN\ -DHB_BUILD_IOS\ -I$SDK_INCLUDE export HB_USER_DFLAGS= -arch\ ...
by Antonio Linares
Thu Apr 07, 2016 3:54 pm
 
Forum: Utilities / Utilidades
Topic: How to build Harbour for iOS (and simulator)
Replies: 1
Views: 831

Re: Calculating or controling IBAN numbers

Frank,
perhaps you must give to final user the possibility to insert

code bank or Cab
code succursal or ABi
Number account and the you can create the iban code just an Idea
by Silvio.Falconi
Mon Jan 06, 2014 5:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculating or controling IBAN numbers
Replies: 5
Views: 6032

Re: Códico IBAN

the Iban in Italy is the sum of different codes sample : IT62N0100515300000000016125 ----------------> 27 dgt cPae + cChk + cCin + cAbi + cCab + cCon cPae = state IT cChk = number check 62 cCin = CIN code N cAbi = Abi Code 01005 cCab = Cab Code 15300 cCon = Number of mine account bank ...
by Silvio.Falconi
Tue Dec 31, 2013 5:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Códico IBAN
Replies: 10
Views: 2466

Re: Raspberry Pi & FiveLinux

George,

Para que usas -print-multi-lib -mfloat-abi=hard ?
by Antonio Linares
Tue Oct 15, 2013 6:38 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Raspberry Pi & FiveLinux
Replies: 14
Views: 5152

Re: Raspberry Pi & FiveLinux

Hola Antonio, Este es el build.sh que estoy usando, luego de añadirle, al final, los flags: "-print-multi-lib -mfloat-abi=hard" # ./build.shclearif [ $# = 0 ]; then   echo syntax: ./build.sh file [options...]   exitfiecho compiling..../../../harbour/bin/harbour ...
by George
Mon Oct 14, 2013 3:21 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Raspberry Pi & FiveLinux
Replies: 14
Views: 5152

Re: To Mr Nages xbrowse INCREMENTAL SEARCH

... VAR cProvincia SIZE 14, 10 PIXEL OF oFrmImportaBanche Valid SearchBanche(cProvincia,oBrwImportaBanche,8) Function SearchBanche(ctext,oBrw,n) FIELD ABI,CAB,ISTBAN,FILBAN,CAP,LOCALITA,PROV local cCond:="", bCond DO CASE CASE n= 6 INDEX ON CAP TO TMP FOR ! deleted() cCond := "CAP = ...
by Silvio.Falconi
Wed Jun 05, 2013 8:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Mr Nages xbrowse INCREMENTAL SEARCH
Replies: 10
Views: 2748

Re: To Mr Nages xbrowse INCREMENTAL SEARCH

... be handled the same as small ones. Here is how to use scopes to get a fast "filter." First add an index to your app: index on UPPER(ABI+CAB+ISTBAN+FILBAN+CAP+LOCALITA+PROV) to index1 [Note that this will be a huge index] Then for the search, set your condition: cCond:= UPPER(ABI+CAB+ISTBAN+FILBAN+CAP+LOCALITA+PROV) ...
by James Bott
Tue Jun 04, 2013 10:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Mr Nages xbrowse INCREMENTAL SEARCH
Replies: 10
Views: 2748

To Mr Nages xbrowse INCREMENTAL SEARCH

... nKey) } static function KeyChar( oBrw, nKey) If nKey == VK_BACK .and. ! Empty( cSeek ) ( oBrw:cAlias )->( oBrw:cFilterFld :="ABI+CAB+ISTBAN+FILBAN+CAP+LOCALITA+PROV" ) return 0 elseIf nKey > 31 ( oBrw:cAlias )->( oBrw:cFilterFld :="ABI+CAB+ISTBAN+FILBAN+CAP+LOCALITA+PROV" ...
by Silvio.Falconi
Sat Jun 01, 2013 7:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Mr Nages xbrowse INCREMENTAL SEARCH
Replies: 10
Views: 2748

Re: Manipulating Bitmaps (BMP)

... the Apache 2.0 license, approved by the OSI and recommended for use by the OSSCC. The ImageMagick development process ensures a stable API and ABI. Before each ImageMagick release, we perform a comprehensive security assessment that includes memory and thread error detection to prevent security ...
by ukoenig
Fri Jun 01, 2012 2:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manipulating Bitmaps (BMP)
Replies: 14
Views: 5067

Re: he conseguido un iphone

Mastintin, he creado un proyecto nuevo y he agregado la livfivephone.a que me dejastes y ahora ocurre esto: Build test4 of project test4 with configuration Debug PhaseScriptExecution "Run Script" build/test4.build/Debug-iphonesimulator/test4.build/Script-64DA86BD129C59C800575091.sh cd /Vol...
by softruz
Wed Dec 15, 2010 2:42 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 129906

Re: he conseguido un iphone

Mastintin, lo he probado, le he agregado a la plantilla las cabeceras harbour y fivephone, pero me dan estos errores Build testharb of project testharb with configuration Debug PhaseScriptExecution "Run Script" "build/testharb .build/Debug-iphonesimulator/testharb .build/Script-64DA86...
by softruz
Tue Dec 14, 2010 3:37 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 129906
Next

Return to advanced search