Search found 1193 matches

by skiman
Thu Feb 16, 2023 12:54 am
Forum: eXpress++ Support
Topic: Problem with disabled windows on Terminal Server
Replies: 50
Views: 18700

Re: Problem with disabled windows on Terminal Server

Hi Tom, Maybe Roger will find a solution for this, but I was wondering why you are closing your files? You saves the pointers to everything before you closes the files. These pointer are used after re-opening to create the same position for every file. Why not just saving the pointers and restores t...
by skiman
Wed Feb 01, 2023 1:09 am
Forum: eXpress++ Support
Topic: _WhenHideEval in _dcclass.prg
Replies: 4
Views: 2050

Re: _WhenHideEval in _dcclass.prg

Hi Roger,

That makes more sense.

I also have IsMethod(oXbp,'PARENT') added to the check.
by skiman
Tue Jan 31, 2023 10:14 am
Forum: eXpress++ Support
Topic: _WhenHideEval in _dcclass.prg
Replies: 4
Views: 2050

Re: _WhenHideEval in _dcclass.prg

Hi Roger,

Yes, I know. But only when isvisible() is true. I don't understand how it can get evaluated once isvisible() is False?
by skiman
Tue Jan 31, 2023 3:06 am
Forum: eXpress++ Support
Topic: _WhenHideEval in _dcclass.prg
Replies: 4
Views: 2050

_WhenHideEval in _dcclass.prg

Hi, It looks to me that there is a problem in the _WhenHideEval function. I solved it for me, so I don't expect any changes in eXPress++. Just to be sure that I understand it correctly. My question is for the HIDE clause. Suppose the following in a dialog. A GET for a variable cName. A checkbox with...
by skiman
Fri Jan 27, 2023 2:35 am
Forum: eXpress++ Support
Topic: dccheckbox on dcstatic
Replies: 5
Views: 2338

Re: dccheckbox on dcstatic

Hi,

Yes, looks correct with latest Xbase++.

This is with Xbase 1.9.
checkbox.jpg
checkbox.jpg (13.24 KiB) Viewed 2308 times
Since I'm migrating to 2.0 the problem will be solved automatically.
by skiman
Thu Jan 26, 2023 9:06 am
Forum: eXpress++ Support
Topic: dccheckbox on dcstatic
Replies: 5
Views: 2338

Re: dccheckbox on dcstatic

Hi Roger,

To say it with an often used function of yours: WTF.
by skiman
Thu Jan 26, 2023 2:55 am
Forum: eXpress++ Support
Topic: dccheckbox on dcstatic
Replies: 5
Views: 2338

dccheckbox on dcstatic

Hi, With the latest version a dccheckbox on a dcstatic is only readable if TYPE XBPSTATIC_TYPE_TEXT is used. You can't use a type as TYPE XBPSTATIC_TYPE_FGNDFRAME. The code below shows the problem. #INCLUDE "dcdialog.CH" FUNCTION Main() LOCAL GetList[0], oGetStatic, oGetStatic2 ,lCheck := .F. @ 0,0 ...
by skiman
Fri Jan 13, 2023 9:20 am
Forum: eXpress++ Support
Topic: Password protected field with 'eye'button
Replies: 3
Views: 2046

Re: Password protected field with 'eye'button

Hi Tom, Roger,

Seems as I have to check the mouseover in my modified buttonclass.
by skiman
Thu Jan 12, 2023 11:08 am
Forum: eXpress++ Support
Topic: Password protected field with 'eye'button
Replies: 3
Views: 2046

Password protected field with 'eye'button

Hi, To create a password protected field with an 'eye' button to show the content, I thought to use the following: POPUP {|a,b| b:password:=!b:password,DC_GetRefresh(GetList),b:get:buffer } POPCAPTION "N" POPFONT "14.Webdings" It is working, except that with the mouseover the 'eye' changes to the le...
by skiman
Thu Jan 12, 2023 3:27 am
Forum: eXpress++ Support
Topic: PushButton can perform 2 diferent actions?
Replies: 14
Views: 22218

Re: PushButton can perform 2 diferent actions?

Hi, While experimenting with the latest version, i came to a little problem in the above sample. DC_XbpGetKillInputFocusBlock(; {|x,y,o| o:savePos := o:get:pos, ; o:DateFlag := .T., ; IIF(o:isGetDataOnLostFocus,o:getData(),nil), ; IIF(o:isGetDataOnLostFocus,o:setData(),nil), ; o:Home(), ; DC_HiliteG...