Search found 918 matches

by reinaldocrespo
Fri Sep 30, 2016 5:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: OCR from JPG
Replies: 10
Views: 2540

OCR from JPG

Hello Everyone; I've been using open source and free Tesseract libs to perform OCR on JPG documents. Typically there is a free standing scanner somewhere in the facility where people feed tons of documents into. The scanner swallows these documents like the cookie monster. All these documents make i...
by reinaldocrespo
Mon Aug 22, 2016 10:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS function list
Replies: 19
Views: 3519

Re: ADS function list

Hello Francisco; If these tables are Data Dictionary bound tables, as I suspect they are, then you only need to set the encryption password on the dictionary and then enable encryption for the table in question. Below is a short SQL script that enables encryption for all tables on a data dictionary:...
by reinaldocrespo
Fri Aug 12, 2016 2:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: download a file from a https server
Replies: 7
Views: 1824

Re: download a file from a https server

Hello Uwe; I think you are asking if I can write sample code to download a file from your webpage. If that is the case, please send username and password to gain access to the service. Also, is this a SOAP 1.1 or 1.2 web service? If it is a Web Service then you should have a .WSDL or service descrip...
by reinaldocrespo
Thu Jun 23, 2016 7:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to use RichText font attributes
Replies: 1
Views: 721

How to use RichText font attributes

Hello FiveWinners! I've been asked by Silvio via email how to do superscript using richtext. I've been using this class for so long now I don't really remember what I changed if any from the original class. So here are my sources where you can clearly see how to perform many font attributes includin...
by reinaldocrespo
Mon Mar 14, 2016 3:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: .pdf to .tif?
Replies: 5
Views: 1058

Re: .pdf to .tif?

Rene;

That's exactly what I was looking for.

Thank you very much for sharing this solution.


Reinaldo.
by reinaldocrespo
Mon Mar 14, 2016 1:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: .pdf to .tif?
Replies: 5
Views: 1058

Re: .pdf to .tif?

Mastintín; Muchas gracias por esta respuesta.

Saludos.


Reinaldo.
by reinaldocrespo
Sun Mar 13, 2016 6:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: .pdf to .tif?
Replies: 5
Views: 1058

.pdf to .tif?

Hello everyone.

I need to convert some .pdfs into .tifs. Can we do this using fwh?

Reinaldo.
by reinaldocrespo
Thu Feb 04, 2016 3:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: 2015 effect
Replies: 2
Views: 552

Re: 2015 effect

Hello Silvio;

It looks impressive. Where did you get the screenshots from? Is that a 3rd party control lib?

Thank you for the information.


Reinaldo.
by reinaldocrespo
Thu Feb 04, 2016 2:37 pm
Forum: Off Topic / Otros temas
Topic: ADS Y PHP
Replies: 3
Views: 976

Re: ADS Y PHP

Good morning Fernando; All of my web server installations are done on Apache under Linux (which is actually more complicated to setup), so I'm probably not the best person to help with IIS problems but setting up IIS with PHP for ADS is supposed to be really simple. A couple of things come to mind: ...
by reinaldocrespo
Fri Jan 29, 2016 7:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Drill Down
Replies: 34
Views: 6780

Re: Report Drill Down

Hey James; And these licenses are very expensive running from US$4000 to US$9000. I thought it was odd those prices you quoted. Here is link to prices from the webpage https://www.fast-report.com/en/buy/#!/VCL%20(Embarcadero%20RAD%20Studio|Delphi|C++%20Builder)/FastReport%205%20VCL/ Its $199. But, a...
by reinaldocrespo
Fri Jan 29, 2016 6:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Drill Down
Replies: 34
Views: 6780

Re: Report Drill Down

James; Not so. -and don't bother trying to purchase fastreports from the website unless you are planing on using some .net language or Delphi. I assure you all fw fastreports users didn't pay $4k. I didn't. ...and for everyone's information - there is another commercial xbase company -whose name I w...
by reinaldocrespo
Fri Jan 29, 2016 3:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Drill Down
Replies: 34
Views: 6780

Re: Report Drill Down

Hello Antonio; On a Drill down report you can double click on a group header and the detail for that group will open or close. Think of it as dynamic opening or closing a group detail. It works that way also with a saved report. You can deliver a saved Fp3 report to a user as a summary report. The u...
by reinaldocrespo
Wed Jan 27, 2016 11:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Drill Down
Replies: 34
Views: 6780

Re: Report Drill Down

Thank you Darrell;

Write me an email reinaldo dot crespo at gmail and I will send you that link where you can purchase fastreports for harbour.


Reinaldo.
by reinaldocrespo
Wed Jan 27, 2016 9:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Drill Down
Replies: 34
Views: 6780

Re: Report Drill Down

Hello Darrell; To expand on a previous comment; among many other features, with Fastreports you can make DrillDown reports n-level deep. Now deceased, Sergi Spirin, had the rights to distribute and maintained a fastreports class for harbour [very-very-very good and advanced tool]. FastReports works ...
by reinaldocrespo
Wed Jan 27, 2016 9:32 pm
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE 15.12 Challenge
Replies: 11
Views: 3010

Re: XBROWSE 15.12 Challenge

Hello Tim; I think what Rao is trying to say is that in addition to your 6 existing indexes you should create one extra index. In total you would have 7 indexes. This 7th index is used to create an Advantage Optimized Filter. Like this: ( cAlias )->( AdsSetAof( "isStockItem == .T." )) I'm ...