Search found 4775 matches

by rdonnay
Fri Jul 12, 2024 11:32 am
Forum: User Contributions
Topic: RUNSHELL AND ADMINISTRATORS
Replies: 2
Views: 1047

Re: RUNSHELL AND ADMINISTRATORS

I personally wouldn't deliver anything that depends on programs spawned by RunShell().
I wouldn't do so either.

I use httpClient for REST services.
by rdonnay
Wed Jun 19, 2024 5:07 pm
Forum: eXpress++ Support
Topic: oBrowse:colcount hidden columns
Replies: 4
Views: 1082

Re: oBrowse:colcount hidden columns

I added the ability to collapse and restore columns in SqlQuery.prg. Your columns would need to first use the DCBROWSECOL .. SUBCLASS 'DD_XbpBrowseFiltered()' CLASS DD_XbpColumnFiltered FROM DC_XbpColumnFiltered EXPORTED: VAR nColumnWidth VAR isCollapsed INLINE METHOD Init(a,b,c,d,e,f,g) LOCAL oColu...
by rdonnay
Fri May 17, 2024 7:14 am
Forum: Zen and the art of Software Maintenance
Topic: Birthdays come every year but only once a year!
Replies: 5
Views: 3074

Re: Birthdays come every year but only once a year!

Thanks to all for the greetings.

I still enjoy working and I miss our gatherings.

I hope to be still doing this in 2026 (40 years since I started with Clipper), but the future is not ours to see. Que Sera, Sera.
by rdonnay
Fri May 17, 2024 7:09 am
Forum: eXpress++ Support
Topic: Windows Server File Write
Replies: 3
Views: 2069

Re: Windows Server File Write

Are you using Advantage Server?

It will write to temporary files during some processes and then rename them.
by rdonnay
Wed May 15, 2024 9:57 am
Forum: eXpress++ Support
Topic: Windows Server File Write
Replies: 3
Views: 2069

Re: Windows Server File Write

Are you sure that it isn't another process that overwrote the file?

If you renamed it from the .$$$ back to .DBF would it be a correct database?
by rdonnay
Wed May 15, 2024 9:54 am
Forum: eXpress++ Support
Topic: Autorefresh
Replies: 1
Views: 1350

Re: Autorefresh

Are you saying that you rebuild the array and it does not display the correct contents on autorefresh?

Are you updating the array by calling DC_SetScopeArray( aNewArray ) ?
by rdonnay
Fri Apr 19, 2024 7:58 am
Forum: Did you Know?
Topic: A web service for your data
Replies: 14
Views: 16419

Re: A web service for your data

I also used a pfx file with its key, as a certificate, but it never worked. I also had problems wih a pfx file. It would load and register ok, but after a while the service would lock up. I wrote a timer that would restart the service when it was idle for a time and that worked better but was not f...
by rdonnay
Fri Apr 12, 2024 6:00 am
Forum: Did you Know?
Topic: A web service for your data
Replies: 14
Views: 16419

Re: A web service for your data

Will licensed release be shipped with source as with Express? Everything I have ever included with eXpress++ or other donations have always included source code. This is the way of the world today, and it makes all of us better. I guess I will need to give this a higher priority, because I received...
by rdonnay
Wed Apr 10, 2024 8:07 am
Forum: Did you Know?
Topic: A web service for your data
Replies: 14
Views: 16419

Re: A web service for your data

Here is a simple client program that I used to test the SQLQuery endpoint that I wrote for a customer. His data is all DBFNTX. #INCLUDE "dcdialog.CH" FUNCTION Main() LOCAL GetList[0], cSql := "", cSite, oHttp, cResponse, oResp, cDomain, nMaxRows := 10 cDomain := DC_IniRead('WebClient.ini','SYSTEM','...
by rdonnay
Wed Apr 10, 2024 7:56 am
Forum: Did you Know?
Topic: A web service for your data
Replies: 14
Views: 16419

Re: A web service for your data

Will be this on next update subscription (price ?) Yes, it will. But I am going to also make this available to anyone on this forum, because it is basically a sample program that works with most Xbase++ 2.0 releases that have web classes like HttpEndpoint, WebHandler, HttpClient and functions like ...