Search found 94 matches

by k-insis
Tue Mar 19, 2024 1:28 am
Forum: eXpress++ Support
Topic: Printing errors on Win 11
Replies: 4
Views: 194

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: 2
Views: 119

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

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

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

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

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

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, ...
by k-insis
Thu Jan 18, 2024 2:02 am
Forum: eXpress++ Support
Topic: DCBROWSE HELP
Replies: 2
Views: 668

Re: DCBROWSE HELP

By "when I filter same data again" you mean - make new select with changed query and want to display it? With sqlexpress this might solve: //tell browser there is new data (dataset or cursor) obrowse:DataLink := dbNewData obrowse:dataSource := dbNewData //fully refresh everything on screen DC_GetRef...
by k-insis
Mon Jan 15, 2024 12:09 am
Forum: eXpress++ Support
Topic: Char2UTF8() in XML
Replies: 5
Views: 1137

Re: Char2UTF8() in XML

Make sure you are compiling exe into ANSI mode, not OEM. As I am rather inclined into doubt of utf capability of xpp own functions, can you use ot4xb conversion function to do conversion? But yes, provide xml in zipped format , please so we can see inside. Ho, I'm using the Char2UTF8() to add data t...
by k-insis
Tue Jan 09, 2024 1:13 am
Forum: eXpress++ Support
Topic: DCPRINT to excel
Replies: 4
Views: 1387

Re: DCPRINT to excel

Office automation works regardless of 32/64 bit as OS acts as middle man between your program and automation provider. Per instance I work with 64bit Office Excel right now from xpp and it works flawlessly. But beware: if you use Excel ODBC you do need 32bit Office installed as with never versions M...