JerryDee Contributor


Joined: 19 Oct 2005 Posts: 53 Location: Czech Republic
|
Posted: Tue Mar 30, 2010 10:16 am Post subject: Disappearing buttons *SOLVED* |
|
|
Hi guys,
I encountered an unpleasant problem with 'group and line' commands. If you press Alt-key (for a menu item achievement), all buttons within a group/line range disappear.
If you press Alt-key again and then run with mouse cursor over "invisible" buttons or if you click there, these buttons apear again.
Next time the buttons "behave fairly"
I'm working with VDS6Pro version (but in vds5 standard executable mode) on Win Vista.
In vds6 mode any "real" buttons not disappear but the 'Check and Radio' buttons YES!
Can you try it at this enclosed code, please? Any help is appreciated!
Jerry
| Code: | DIALOG CREATE," ",-1,0,300,200,SAVEPOS,CLASS TZP,
DIALOG ADD,MENU,Menu
dialog add,group,gr,5,5,290,40
#dialog add,line,ln,5,5,290,40
DIALOG ADD,BUTTON,B1,10,10,40,24,One
DIALOG ADD,BUTTON,B2,10,55,40,24,Two
DIALOG ADD,BUTTON,B3,10,100,40,24,Three
DIALOG ADD,CHECK,B4,10,145,40,24,Four
DIALOG ADD,RADIO,B5,10,200,40,30,Five
dialog show
:evloop
wait event
%E = @event()
goto %E
:B1button
:B2button
:B3button
:B4button
:B5button
goto evloop
:Close
exit
|
_________________ Jerry
(VDS 4,5,6 Pro | V-Setup 3)
Last edited by JerryDee on Wed Apr 07, 2010 9:57 pm; edited 1 time in total |
|