bbelcher Contributor

Joined: 30 Jul 2002 Posts: 172
|
Posted: Sat Nov 01, 2003 8:06 pm Post subject: [resolved] Dialog setpos issue |
|
|
I'm useing VDS 4.0 and when I run this code compiled to an exe the dialog box will not redraw above the 450,370 size that is specified in the DIALOG CREATE statment. It runs fine uncompiled.
| Code: |
DIALOG CREATE,test,-1,0,450,370
DIALOG ADD,BUTTON,BUTTON1,8,6,64,24,BUTTON1
DIALOG ADD,BUTTON,BUTTON2,8,74,64,24,BUTTON2
DIALOG ADD,BUTTON,BUTTON3,8,142,64,24,BUTTON3
DIALOG SHOW
:Evloop
wait event
goto @event()
:button1button
DIALOG SETPOS,,,,350,270
GOTO EVLOOP
:button2button
DIALOG SETPOS,,,,450,370
GOTO EVLOOP
:button3button
DIALOG SETPOS,,,,670,510
GOTO EVLOOP
:close
exit |
|
|