Search found 97 matches

by k-insis
Thu Apr 18, 2024 3:04 am
Forum: eXpress++ Support
Topic: How can I develop a DLL IN Xbase++ to use it in a C# program
Replies: 10
Views: 89

Re: How can I develop a DLL IN Xbase++ to use it in a C# program

> I am now aware that the only way to interact with Alaska Xbase++ DLL libraries is through a REST API. Actually you can do this with SOAP and direct socket connection too. Bonus is that you can put that small server side program to server and all PCs with network access can request it. On SOAP you ...
by k-insis
Wed Apr 17, 2024 3:40 am
Forum: eXpress++ Support
Topic: How can I develop a DLL IN Xbase++ to use it in a C# program
Replies: 10
Views: 89

Re: How can I develop a DLL IN Xbase++ to use it in a C# program

Indeed it is a no go with xpp and .net . As Mr. Tom wrote. But! building own http REST server in xpp is a valid option as there is at least two toolsets available for that, once in xbase 2.x native and once as Xb2net library. And Mr. Slavoljub toolset might contain everything needed too? So you coul...
by k-insis
Thu Apr 11, 2024 1:10 am
Forum: Did you Know?
Topic: A web service for your data
Replies: 9
Views: 293

Re: A web service for your data

Same .

Will licensed release be shipped with source as with Express?


Koverhage wrote: Wed Apr 10, 2024 10:33 pmI am too
by k-insis
Tue Mar 19, 2024 1:28 am
Forum: eXpress++ Support
Topic: Printing errors on Win 11
Replies: 4
Views: 314

Re: Printing errors on Win 11

thx, that is very useful bit of information Hi, After looking around on the net I see that the printscreens I got from the customer are the same as in the following article. https://wiki.autocountsoft.com/wiki/Others:_How_to_switch_back_to_the_old_print_dialog_in_Windows_11%3F On my PC I have the OL...
by k-insis
Fri Mar 15, 2024 2:21 am
Forum: eXpress++ Support
Topic: Postgre ISAM command
Replies: 9
Views: 481

Re: Postgre ISAM command

dbsetfilter() Change SELECT and requery , reattach+refresh to dcbrowse if needed. What does PGDBE documentation say on USE on pgSQL VIEW , pgSQL stored procedure returned data? Is there anything online like in doc.alaska-software.com ? Those two are fastest. I am working on switching my application ...
by k-insis
Mon Mar 11, 2024 1:20 am
Forum: Xbase++ 2.0
Topic: Listbox colours
Replies: 8
Views: 520

Re: Listbox colours

Slavko, it would probably be easier to replace xbplistbox with xpbbrowse or xbpquickbrowse object on array than going through all the hassle of ownedraw Hi, This is not the way to change font and colors in a XbpListBox, with the XBP_PP_* parameters. You can do that with the XbpListBox owner-draw opt...
by k-insis
Mon Mar 04, 2024 1:12 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 1051

Re: Excel remove duplicates

How many chars?! As it is only for unique, you should change method how you determine uniqueness of some record data. Put everything into expression into function and calculate SHA (hash value) of fields you want to account for unique. Hash functions are extremely fast in any but musem grade compute...
by k-insis
Mon Feb 12, 2024 6:12 am
Forum: eXpress++ Support
Topic: DCBROWSECOL ... HIDE
Replies: 8
Views: 1347

Re: DCBROWSECOL ... HIDE

Can you try setting columns horizontal size to zero and leaving vertical size as is ? Hi, Thanks for the response. With Solution A the column is not really hidden. It gets a blank column, but it still remains in the browse. Solution be can also be accomplished with a do while. I was hoping on a more...
by k-insis
Wed Jan 31, 2024 1:36 am
Forum: eXpress++ Support
Topic: ARTIFICIAL INTELLIGENCE (AI)
Replies: 9
Views: 1352

Re: ARTIFICIAL INTELLIGENCE (AI)

A) Native: No. It is simply not adequate for AI development as it lacks just about every needed tool to do it in code. Python has great and easy to use libraries. Java too. B) Connect to existing services via REST/SOAP/socket : YES and it can be used already (see @Tom post). So if you write pyton co...
by k-insis
Thu Jan 25, 2024 2:27 am
Forum: PostGreSQL
Topic: Dml-pack failed at table level postgresql driver
Replies: 3
Views: 1742

Re: Dml-pack failed at table level postgresql driver

You should not do any 'pack' on sql servers as that is something server do by their own. If you do server side DELETE from then you will have to do it the way (afaik) Alaska does with stored procedures so consistency is kept for service tables. > the problem of records that are permanently blocked, ...