Search found 112 matches

by k-insis
Mon Oct 02, 2023 11:39 pm
Forum: PostGreSQL
Topic: DbRegisterClient() with PostGres
Replies: 15
Views: 14075

Re: DbRegisterClient() with PostGres

Found this one: "Schema By default PostgresSQL use a public schema used for store information about the databases, tables, procedures. This schema by default is accessible by all users, so all users can see every tables structure or procedures " Which is bummer :( In pgODBC you can set search path f...
by k-insis
Thu Sep 28, 2023 11:04 pm
Forum: eXpress++ Support
Topic: moving xbase/express to new computer
Replies: 11
Views: 8164

Re: moving xbase/express to new computer

@Bruce: Just copy that .ch file into project directory and be done. You are probably missing some ";" in path of includes or you have some weird file attribute on that directory or file that has those includes. Perhaps you are editing environemnt for admin account and not for your user account of sy...
by k-insis
Wed Sep 20, 2023 1:28 am
Forum: eXpress++ Support
Topic: moving xbase/express to new computer
Replies: 11
Views: 8164

Re: moving xbase/express to new computer

If you run this in cmd, does it output valid path for include? echo %include% I've got old shit (ok, I'm old also)... I replaced my laptop and am trying to get alaska/express working on the new one. I copied the whole alaska folder and exp19 folder (told you it was old) onto the new computer and edi...
by k-insis
Sun Aug 27, 2023 11:59 pm
Forum: eXpress++ Support
Topic: FacturaE
Replies: 2
Views: 2999

Re: FacturaE

And if Chillkat is not option, you can sign any xml with xmlsec library (with windows binaries) - open source and free https://www.aleksey.com/xmlsec/ (uses https://gitlab.gnome.org/GNOME/libxml2/-/wikis/home which is used on Linux ) Generally syntax is: xmlsec sign --pkcs12 certificate_file --outpu...
by k-insis
Tue Jul 25, 2023 12:25 am
Forum: eXpress++ Support
Topic: I NEED A UNIQUE NUMBER GENERATOR FUNCTION
Replies: 8
Views: 7722

Re: I NEED A UNIQUE NUMBER GENERATOR FUNCTION

> It is transaction document ID. I am thinking of something deriviable from Date()+Seconds()+Computer ID. Create a table with primary key , which goes from n ---> for 12 or more digits. Before you use any random generated number, try it insert into that table (with some additional data to keep track...
by k-insis
Mon Jun 26, 2023 1:28 am
Forum: Xbase++ 2.0
Topic: HttpClient Secure Protocol Error
Replies: 1
Views: 6652

Re: HttpClient Secure Protocol Error

This might be TLS version related. Is https server configured to TLS 1.3 only or it also allows older TLS 1.2 too ? Has anyone used HttpClient with Https ? I can connect to my https server with a web browser but not with HttpClient. I'm using the same .PFX certificate with HttpClient as with HttpEnd...
by k-insis
Tue May 02, 2023 11:25 pm
Forum: eXpress++ Support
Topic: USING ADS via INTERNET as VPN
Replies: 1
Views: 2760

Re: USING ADS via INTERNET as VPN

Rule is never to open ports toward internet. Always use VPN if you need access from outside of LAN. So first you create VPN to access LAN with server from remote computers, then you do business as needed. For all it goes, you can enable SMB over VPN and it will work, just latency and bandwidht might...
by k-insis
Fri Apr 07, 2023 12:28 am
Forum: User Contributions
Topic: I need A FREE youtube downloder
Replies: 2
Views: 9045

Re: I need A FREE youtube downloder

Open source utiliy youtube-dl . Individual files, playlists, channels, can be spawned for parallel dl, many many options. Golden standard

github:
https://github.com/ytdl-org/youtube-dl



unixkd wrote: Wed Apr 05, 2023 6:28 am Hi all

I need A FREE youtube downloder that is absolutely free not one week/month trial

Thanks

Joe
by k-insis
Thu Mar 30, 2023 12:06 am
Forum: Xbase++ 2.0
Topic: re : Pound Sign and Char 194
Replies: 5
Views: 8757

Re: re : Pound Sign and Char 194

One file is in ANSI and second source file in UTF encoding. Hello I have this simple function below. It works perfectly in some of my PRGs, but not all of them. I can copy this function as it is, and put it in another PRG, compile it and then when called/executed, it will add a character (194) befor...
by k-insis
Wed Mar 15, 2023 12:49 am
Forum: eXpress++ Support
Topic: Google Calendar
Replies: 8
Views: 6498

Re: Google Calendar

Many thanks! Gruss, M. > Chilkat Those are ActiveX family of controls, right? Correct me if I am in wrong direction I think I saw post somewhere not that long ago where you can (afair as part of linked resources) declare activeX controls so they are loaded at .exe start and there is no need for them...