Search found 140 matches: mix

Return to advanced search

Re: Image in word

Hello, My goal was to put the QRCode image in the document. I did a mix of information that worked like this: In the word document I created the # qrcode #; I created the QRCode; QRCode ("test", cImage_QRCode) In the code I put like this: oSel: Find: ...
by oliveiros junior
Thu Nov 08, 2018 12:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Image in word
Replies: 9
Views: 1644

Re: Server vs Notebook as Server for FW programms

... the main program which does scheduling, client tracking, accounting, histories, etc. . And we have some exe files for special tasks. 5). Can you mix local and RDP applications running at the same time on the workstation ? We could but we do not allow as we do not want shared drives on the server. ...
by Otto
Thu Jun 07, 2018 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Server vs Notebook as Server for FW programms
Replies: 44
Views: 17080

Re: Server vs Notebook as Server for FW programms

... is the application ? Does one application "do it all", meaning scheduling, client tracking, accounting, histories, etc. ? 5). Can you mix local and RDP applications running at the same time on the workstation ? Tim
by TimStone
Thu Jun 07, 2018 2:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Server vs Notebook as Server for FW programms
Replies: 44
Views: 17080

Re: Carlos Mora y la mala leche de la string concatenation

... There is no point in re-inventing the wheel. Even if we want to write a more efficient function, we can not do it with a Harbour level function or mix of Harbour and C level functions. We too need to write the entire function in C and in that case, are very likely to end up with a function similar ...
by nageswaragunupudi
Sat May 05, 2018 1:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Carlos Mora y la mala leche de la string concatenation
Replies: 20
Views: 4352

Re: O API — an alternative to REST APIs

It looks like a mix of RPC and REST. REST is a convention, and shapes and exploits resources using standards. Given an URL that exposes a resource, you can tell how the resource can be consumed. With modern tools, and thanks to that ...
by Carlos Mora
Wed May 02, 2018 10:55 am
 
Forum: Off Topic / Otros temas
Topic: O API — an alternative to REST APIs
Replies: 4
Views: 1050

Re: A question about function FW_Cdxcreate()

... that it works without problems. As soon a create a index with STR( field ) // numeric I'm getting problems. But I have to define it with a index-mix of C and N. I didn't test < cValToChar > lets see what happens. regards Uwe :D
by ukoenig
Tue Feb 27, 2018 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A question about function FW_Cdxcreate()
Replies: 8
Views: 1716

Re: Building Harbour 3.4 for BCC outside MSYS

Enrico

Thanks for taking a look at my struggles ... I downloaded Andi's binaries and went to Mels's site and downloaded xHarbour for MSVC 2017.

Perhaps there is a clue somewhere in this mix.

Thanks
Rick Lipkin
by Rick Lipkin
Sun Dec 17, 2017 9:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17526

Re: Building Harbour 3.4 for BCC outside MSYS

byte-one wrote:It seems, minizip.lib must also added from Harbour!


No, you should not mix Harbour and xHarbour libs.

EMG
by Enrico Maria Giordano
Wed Dec 13, 2017 9:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17526

Re: xBrowse as record adding tool for data tables

Hola Reinaldo, I think we can't mix data source in xBrowse, maybe with ADS you can use transaction to rollback a not confirm insertion. Other idea (fast implementation sample) can be #include "FiveWin.ch"function Main()  ...
by Marcelo Via Giglio
Wed Oct 25, 2017 6:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse as record adding tool for data tables
Replies: 16
Views: 3122

Re: Update problems: Undefined symbol 'ModuleFakeDyn'

Antonio,

thanks for the info.

In my xharbour\include\hbinit.h (12429 Bytes) ModuleFakeDyn is defined, however in my bcc\include\hbinit.h ModuleFakeDyn (11.094 Bytes) is not defined. Is there a mix-up between these files or is it ok, that this file is in both directories?
by gkuhnert
Fri Jun 30, 2017 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Update problems: Undefined symbol 'ModuleFakeDyn'
Replies: 6
Views: 938

Re: OCR for scanned documents

Try using Tesseract with PSM of 6 and the compare results when using PSM 3. Use different types of documents and mix images with text. You will see the difference on the results. I can not control the type of documents being feed to Tesseract. Scanning is an automated procedure ...
by reinaldocrespo
Mon Mar 06, 2017 4:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OCR for scanned documents
Replies: 13
Views: 4438

ADORDD FAQs

... like adofuncs with adordd ? Yes. You can use the traditional navigational approach like clipper or SQL approach with INSERT, UPDATE, etc or a mix of both. Adordd will have always the table recordset updated with table last version no matter if for ex updates are made through functions or SQL ...
by AHF
Sun Nov 15, 2015 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD FAQs
Replies: 87
Views: 19847

Re: Como controlar que no se salten los Gets con el Mouse

... ) saltandose de llenar el resto de campos.. bien dice nuestro amigo Rolando,,, "un dolor de cabeza..." , Asi que creo que realizare un Mix de todos sus consejos: 1. Acentuar las Validaciones x Get y buscar que salte al siguiente objeto. 2. Validacion final antes de salir del Dialogo ...
by lubin
Tue Sep 08, 2015 3:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como controlar que no se salten los Gets con el Mouse
Replies: 21
Views: 3893

Re: PUBLIC var declaration issue

...   PUBLIC cVar := "This is a test"    RETURN NILFUNCTION TEST()    ? cVar    RETURN NIL You will get a warning. So you can't mix local and public variables. If you want to access the public one you have to use ? M -> cVar This way is easy to search for public and private ...
by Enrico Maria Giordano
Sun Aug 30, 2015 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PUBLIC var declaration issue
Replies: 26
Views: 6438
PreviousNext

Return to advanced search