Search found 1193 matches

by skiman
Fri May 12, 2023 6:41 am
Forum: eXpress++ Support
Topic: Xbase2.0 and dc_popDate
Replies: 2
Views: 2104

Xbase2.0 and dc_popDate

Hi,

There is a problem with Xbase 2.0 and the calendar when using the keyboard.

Start XDemo.exe and in the samples 1 go to the POPUP sample.
Open the Calendar with CTRL-J and try to select a date with the keyboard. An error appears...

With Xbase1.9SL1 this is working without any problem.
by skiman
Fri May 12, 2023 6:28 am
Forum: Zen and the art of Software Maintenance
Topic: Another Birthday!
Replies: 4
Views: 3798

Re: Another Birthday!

Hi Roger,

A happy birthday. Enjoy your day.
by skiman
Fri May 12, 2023 12:16 am
Forum: eXpress++ Support
Topic: Sleepmodus PC and timerevents.
Replies: 2
Views: 2000

Re: Sleepmodus PC and timerevents.

Hi Jimmy, Thanks for the answer. I will see if that can solve the problem. Seems as there comes some kind of notification when the system want to go down. According to the note in the doc it is not always possible to DENY this process. Seems as the documentation is last updated when Vista was the ma...
by skiman
Thu May 11, 2023 9:10 am
Forum: eXpress++ Support
Topic: HILITE and Right button in GET problems
Replies: 11
Views: 5181

HILITE and Right button in GET problems

Hi, After the HILITE problem with Xbase2.0 and a windows scale of 125% I found the cause was passing the oDialog:drawingarea instead of oDialog, customers are complaining now they can't use the right button in a GET. :x I can't find a way where everything is working correctly: 1. Hilite of GET on Wi...
by skiman
Thu May 11, 2023 5:55 am
Forum: eXpress++ Support
Topic: Sleepmodus PC and timerevents.
Replies: 2
Views: 2000

Sleepmodus PC and timerevents.

Hi, In our application we have some timers to do different kind of calculations. When a user don't close our application and the PC comes into sleep modus after some hours this can cause an error. The timerevent is starting a function which tries to open a dbf file. Because of the sleepmodus of the ...
by skiman
Tue May 09, 2023 8:42 am
Forum: eXpress++ Support
Topic: Hilitegets with Xbase 2.0
Replies: 12
Views: 4707

Re: Hilitegets with Xbase 2.0

Important: In Windows the scale has to be set to 125%. Otherwise it is working correctly.
hilitetest1.png
hilitetest1.png (58.93 KiB) Viewed 1934 times
by skiman
Tue May 09, 2023 8:39 am
Forum: eXpress++ Support
Topic: Hilitegets with Xbase 2.0
Replies: 12
Views: 4707

Re: Hilitegets with Xbase 2.0

Hi, By changing my code I get a lot of other problems about positioning of dialogs. Now I remember why I'm using the :drawingarea(). I have a sample program based on the outlookbar sample which demonstrates the problem. The ::drawingarea is passed as an object and then you can see what happens. When...
by skiman
Tue May 09, 2023 6:58 am
Forum: eXpress++ Support
Topic: Hilitegets with Xbase 2.0
Replies: 12
Views: 4707

Re: Hilitegets with Xbase 2.0

Hi Roger,

Yes it is solved by passing the oDlg as parameter instead of oDlg:drawingarea.
by skiman
Tue May 09, 2023 4:27 am
Forum: eXpress++ Support
Topic: Hilitegets with Xbase 2.0
Replies: 12
Views: 4707

Re: Hilitegets with Xbase 2.0

Hi Tom,

That :drawingarea is since years in my code. Never had any problem with it.

I changed it by sending just the oDlg as a parameter and this seems to be the solution. The behaviour of the dialogs isn't changed.

I don't want to go back to 1.9 but if no solution was found, i had no choice.
by skiman
Tue May 09, 2023 3:02 am
Forum: eXpress++ Support
Topic: Hilitegets with Xbase 2.0
Replies: 12
Views: 4707

Re: Hilitegets with Xbase 2.0

I found the cause. With a lot of functions I have a parameter which is the drawingarea of my dialog. In the DCREAD i have APPWINDOW oDIalogArea as a parameter. This causes the wrong hiliteget. In my main menu the function is called as follows: hilitetest(oDlg:drawingArea) Without the APPWINDOW it is...