Search found 100 matches

by k-insis
Tue Feb 04, 2020 5:02 am
Forum: eXpress++ Support
Topic: How to close a running program from an Alaskan program
Replies: 8
Views: 14174

Re: How to close a running program from an Alaskan program

Easiest from exe is to execute command

syntax:

taskkill /im <name_of_exe>

example:

taskkill /im totalcmd64.exe

This will send WM_CLOSE message event to instances of this particullar exe

Option B is to use Win32 Api to find Open instance of program and then post WM_CLOSE message event to it.
by k-insis
Mon Feb 03, 2020 1:02 am
Forum: eXpress++ Support
Topic: Alt + key not responding for ok,cancel R.267
Replies: 20
Views: 28278

Re: Alt + key not responding for ok,cancel R.267

bumping for visibility
by k-insis
Mon Jan 27, 2020 1:14 am
Forum: eXpress++ Support
Topic: Alt + key not responding for ok,cancel R.267
Replies: 20
Views: 28278

Re: Alt + key not responding for ok,cancel R.267

Here be file with prg + xpj to test

source is prepared to be tested with any other language
by k-insis
Thu Jan 23, 2020 8:38 am
Forum: eXpress++ Support
Topic: Alt + key not responding for ok,cancel R.267
Replies: 20
Views: 28278

Re: Alt + key not responding for ok,cancel R.267

Will Provide it in a day a .prg
by k-insis
Mon Jan 20, 2020 4:44 am
Forum: eXpress++ Support
Topic: Alt + key not responding for ok,cancel R.267
Replies: 20
Views: 28278

Re: Alt + key not responding for ok,cancel R.267

Good Day Mr. Donnay. I did test with latest patch and it does work with default, english language for "OK" and "Cancel" but not "Exit" buttons ; and functionality is still broken on non-english dc_langset(). With modified source for xdemo.exe tried initialising DC_LangSet(DCLANG_SLOVENIAN) and DC_La...
by k-insis
Fri Jan 17, 2020 2:05 am
Forum: eXpress++ Support
Topic: Alt + key not responding for ok,cancel R.267
Replies: 20
Views: 28278

Re: Alt + key not responding for ok,cancel R.267

Greetings and good morning. Mr. Donnay did you actually test this on full build and in xdemo.exe ? Because the referenced sample that shows symptom in xdemo (Sample group1, sample "TextBased" or "DataBrow") Bottom Two butons [Ok] [Cancel] the alt+hotkey ( "O" in OK) is still non responsive. ergo - f...
by k-insis
Thu Jan 16, 2020 2:12 am
Forum: eXpress++ Support
Topic: Alt + key not responding for ok,cancel R.267
Replies: 20
Views: 28278

Re: Alt + key not responding for ok,cancel R.267

Edit: This is happening with default "English" language too with DCREAD GUI ADDBUTTONS (as it does with translations too).
by k-insis
Thu Jan 16, 2020 1:06 am
Forum: eXpress++ Support
Topic: Alt + key not responding for ok,cancel R.267
Replies: 20
Views: 28278

Re: Alt + key not responding for ok,cancel R.267

This seems to appear on probably all OS: tried on xpp 1.9 + Windows 10 Pro 64bit R1909 - 18363.592 (VM) and fully patched with updates xpp 2.0 + Windows 10 Pro 64bit R1909 - 18363.592 (VM) and fully patched with updates xpp 1.9x and a ancient Windows 7 32bit SP1 + xpp 1.9 (VM) Userbase runs a variet...
by k-insis
Wed Jan 15, 2020 2:00 am
Forum: eXpress++ Support
Topic: Alt + key not responding for ok,cancel R.267
Replies: 20
Views: 28278

Alt + key not responding for ok,cancel R.267

Greetings. So we noticed from end users reporting that Alt+key on for [Ok] button on bottom of form that are added by "dcread gui addbuttons" is not responding anymore. That goes for my own apps and for demos that are shipped with xdemo.exe (Group 1, sample 2 "Text based") and In version 2.0 build 2...
by k-insis
Mon Dec 22, 2014 12:24 am
Forum: Xbase++ 2.0
Topic: Is anyone using PostGreSQL
Replies: 12
Views: 29157

Re: Is anyone using PostGreSQL

Did you take into account, that freshly imported tables (from .dbf -->> Postgre) are probably not indexed at server side as resoult of database export/import ? Were there (if any) indexes?

if not, you should create appropritate keys (prim/sec/foreign) to speed up queries.