Search found 100 matches

by k-insis
Wed Sep 20, 2023 1:28 am
Forum: eXpress++ Support
Topic: moving xbase/express to new computer
Replies: 11
Views: 3825

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: 1671

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: 2835

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: 2429

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: 1960

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: 4205

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: 3094

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: 3025

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...
by k-insis
Tue Mar 14, 2023 2:21 am
Forum: eXpress++ Support
Topic: Google Calendar
Replies: 8
Views: 3025

Re: Google Calendar

> 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 to be installed onto e...
by k-insis
Mon Mar 13, 2023 1:40 am
Forum: eXpress++ Support
Topic: Handling XSD documents
Replies: 7
Views: 2730

Re: Handling XSD documents

> Have you had experience with digital signature management? > I am urgent with the work of the Electronic Invoicing As signing invoice xml with local certificate ? This is one of ways, can be automated easily and works for large volumes of invoices too. xmlsec sign --pkcs12 MyFileWithPkcsStoredCert...