Search found 51 matches

by reinaldocrespo
Tue Jul 30, 2024 3:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DBF File Format - Considerations A Secure Option
Replies: 15
Views: 2172

Re: DBF File Format - Considerations A Secure Option

Hello. It is easy to defend and swear by DBF when you have not experimented with SQL. It is hard to miss or even imagine what you have never experienced.

If you are a DBF user, you don’t care much for referential integrity. Sync and replication are just fancy words. Relational joints and result ...
by reinaldocrespo
Tue Jul 16, 2024 9:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to Curl for text messaging
Replies: 23
Views: 4354

Re: How to Curl for text messaging

curl_global_init() and curl_global_cleanup() should be called only once in the program. Throw them away from the function.

Have a main function as an entry point. For example: Main(). And from that Main() entry point call curl_global_init.... then call your function as many times as needed. Then ...
by reinaldocrespo
Tue Jul 16, 2024 7:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to Curl for text messaging
Replies: 23
Views: 4354

Re: How to Curl for text messaging

If the program successfully sends texts via Twilio and then you get a runtime error when closing, the problem is most likely in your code and it has nothing to do with your make file. Try finding the exact line that causes de GPF or write and share a reduced sample code that replicates the runtime ...
by reinaldocrespo
Tue Jul 16, 2024 12:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: EZTexting Send Message
Replies: 8
Views: 868

Re: EZTexting Send Message

Hello Byron and Tim;

This link will show you my initial post when I shared the TTwilio class on this forum back in 2022: https://forums.fivetechsupport.com/viewtopic.php?f=3&t=40019&sid=9aaac815084955aeea18479527c26320
And you can see I'm not using aHeaders here. Instead I allow curl_easy_setopt ...
by reinaldocrespo
Tue Jul 16, 2024 12:11 pm
Forum: mod_harbour
Topic: Replace jQuery with JavaScript
Replies: 2
Views: 7174

Re: Replace jQuery with JavaScript

Hello Otto;

If you were to organize another FWH-ModHarbour-WEB-SQL summit, I would attend. The summit from 2017 was a great experience for me.

As you mature on your web development, it seems to me like you have been gravitating more and more towards PHP and Javascript (and I'm guessing HTML + CSS ...
by reinaldocrespo
Tue Jul 02, 2024 1:07 pm
Forum: mod_harbour
Topic: Building modharbour with ADS on Linux
Replies: 5
Views: 1620

Re: Building modharbour with ADS on Linux

Thank you Otto and thank you Antonio;

I decided I will setup a Windows server as well as the Linux server both running Apache.

I'm always busy with many things but expect to spend some time testing Mod_harbour and PHP accessing ADS tables.

I'm fully aware we are on our own when it comes to ADS ...
by reinaldocrespo
Sun Jun 30, 2024 12:45 pm
Forum: mod_harbour
Topic: Building modharbour with ADS on Linux
Replies: 5
Views: 1620

Building modharbour with ADS on Linux

Hello ModHarbourers;

Wishing to experiment more with ModHarabour, I have setup an old computer with Fedora server + Apache + PHP 8.2. Apache and PHP are working fine.

I have <git> cloned mod_harbour from GitHub.com/fivetechsoft/mod_harbour.git and Harbour from GitHub.com/vszakats/harbour-core.git ...
by reinaldocrespo
Sun Apr 14, 2024 5:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 4152

Re: ADS with 64bit FWH Apps

Hello everyone;

I bet the problem here is that you are trying to connect to an older server version using a newer client version. The opposite is fine. But newer clients need same or newer server.

Try using 64 bit version of ADS 12 if you want to connect to ADS 12 server.

All my customers are ...
by reinaldocrespo
Wed Jun 14, 2023 3:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ACTIVEX ACCESS_VIOLATION
Replies: 22
Views: 4496

Re: ACTIVEX ACCESS_VIOLATION

Lo que yo haria seria intentar poner a NIL manualmente y antes de que se cierre el dialogo de la manera concreta posible todos los objetos OLE utilizados
Es buena sugerencia. Puedo ver como eso debiera funcionar.

Gracias.
by reinaldocrespo
Wed Jun 14, 2023 12:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ACTIVEX ACCESS_VIOLATION
Replies: 22
Views: 4496

Re: ACTIVEX ACCESS_VIOLATION

Possibly tonight after users are gone, I can access the PCs that have this problem which are the ones using a Topaz signature pad. But I can tell you the top line on the call list looks like this:

Called from HB_GCALL(0)
Called from TDIALOG:END(555) in .\source\classes\DIALOG.PRG


That's how I ...
by reinaldocrespo
Wed Jun 14, 2023 11:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: ACTIVEX ACCESS_VIOLATION
Replies: 22
Views: 4496

Re: ACTIVEX ACCESS_VIOLATION

I'm sorry I know this post is from 2018 but I have a similar problem. I use an OCX from Topaz to gather patient signatures on documents. The line hb_gcAll() inside Tdialog breaks the program after a few times being executed.

Has a solution to this been found?

Thank you.
by reinaldocrespo
Fri Jun 02, 2023 7:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb delete
Replies: 6
Views: 707

Re: MariaDb delete

I had not seen that other post. I have now and you are right my point becomes out of context.

The good thing about that thread is that we can see how to slowly start moving to SQL until we become experts. That was my experience.

I know many people ask --why? and the question is valid when your app ...
by reinaldocrespo
Fri Jun 02, 2023 2:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb delete
Replies: 6
Views: 707

Re: MariaDb delete

I wonder...
if MariaDB is like any other SQL, then deleting records or executing a While command to traverse a table for any reason would be loosing a lot of benefits that SQL offers.

When you execute a while loop to check each record for a condition, that information travels from the server to ...
by reinaldocrespo
Thu Jun 01, 2023 10:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Transym OCR for Harbour
Replies: 1
Views: 291

Transym OCR for Harbour

Hello Fivewinners;

I have re-written my wrapper functions to OCR from Harbour using Transym. This time using Transym TOCR version 5.1. TOCR is pretty accurate. The biggest problem is their support sucks and you must purchase the license which is good in one single pc. Installing the license is ...
by reinaldocrespo
Mon May 29, 2023 3:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: register callback func to be exec from inside c VM harbour
Replies: 2
Views: 295

Re: register callback func to be exec from inside c VM harbour

Saludos maestro y gracias por la sugerencia.

I'm sorry I wasn't more specific.

Consider this declaration:
//-------------------------------------------------------------------------------
HB_FUNC( TOCRFROMSCANNER )
{
TOCRJOBINFO_EG JobInfo_EG;
TOCRRESULTSEX_EG* Results = 0;
long JobNo;
long ...