Pushbutton drop problem

This forum is for eXpress++ general support.
Message
Author
c-tec
Posts: 379
Joined: Tue Apr 20, 2010 1:36 am
Location: SALZBURG/AUSTRIA
Contact:

Re: Pushbutton drop problem

#21 Post by c-tec »

Hello Viktor,
even removing the metro color function does not work, so the problem is definitly that with drag & drop the color does not change back when the mouse leave the button after scrolling over it.
You can change the sample to see it.
regards
Rudolf

Code: Select all

     tbcolor("INIT")
     @ 1,1         DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(8226),"Test 1",,"8.Arial",,) PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK //DROP {|o,x|testdrop(1,o,x,getlist)}
     @ 1,DCGUI_COL DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 2",,"8.Arial",,)   PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK //DROP {|o,x|testdrop(2,o,x,getlist)}
     @ 1,DCGUI_COL DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 3",,"8.Arial",,)   PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK //DROP {|o,x|testdrop(3,o,x,getlist)}
     @ 1,DCGUI_COL DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 4",,"8.Arial",,)   PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK DROP {|o,x|testdrop(4,o,x,getlist)}
     @ 1,DCGUI_COL DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 5",,"8.Arial",,)   PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK DROP {|o,x|testdrop(5,o,x,getlist)}

     @ 150,1       DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 6",,"8.Arial",,)   PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK DROP {|o,x|testdrop(6,o,x,getlist)}
     @ 150,DCGUI_COL DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 7",,"8.Arial",,)   PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK DROP {|o,x|testdrop(7,o,x,getlist)}
     @ 150,DCGUI_COL DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 8",,"8.Arial",,)   PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK DROP {|o,x|testdrop(8,o,x,getlist)}
     @ 150,DCGUI_COL DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 9",,"8.Arial",,)   PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK DROP {|o,x|testdrop(9,o,x,getlist)}
     @ 150,DCGUI_COL DCPUSHBUTTONXP SIZE 150,150 CAPTIONARRAY wlbcaption(150,150 ,chr(48),"Test 10",,"8.Arial",,)  PIXEL  COLOR GRA_CLR_WHITE,GRA_CLR_BLACK DROP {|o,x|testdrop(10,o,x,getlist)}
Rudolf Reinthaler
digital pen & paper systems
http://www.formcommander.net

Victorio
Posts: 631
Joined: Sun Jan 18, 2015 11:43 am
Location: Slovakia

Re: Pushbutton drop problem

#22 Post by Victorio »

Yes, I know that problem is only when drag drop used.
I am not using this functionality.
But similar problem i had when click to button and some process running and at this time i moved mouse over buttons, sometimes they change color.. Because i use disable buttons when some process selected and enable after e ded, some like modal

User avatar
rdonnay
Site Admin
Posts: 4734
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Pushbutton drop problem

#23 Post by rdonnay »

I will have to try to create the problem on a different computer when I get some time.
The eXpress train is coming - and it has more cars.

c-tec
Posts: 379
Joined: Tue Apr 20, 2010 1:36 am
Location: SALZBURG/AUSTRIA
Contact:

Re: Pushbutton drop problem

#24 Post by c-tec »

Hello Roger,
thank you, here I have on all computers the effect where I install it.
regards
Rudolf
Rudolf Reinthaler
digital pen & paper systems
http://www.formcommander.net

Post Reply