Page 1 of 1
bug in object splitter
Posted: Wed May 16, 2007 12:11 pm
by PaPi
I want to report a bug at object SPLITTER. I miss the property "height" . There is "width", but it isn`t width of SPLIT, rather it is height, i sew.
PaPi
bug in object splitter
Posted: Wed May 16, 2007 8:50 pm
by Marco
hi,
it is not really a bug, the splitter can be used horizental and vertical, the width is actualy the broad of the splitter. The length is adapt to its parent.
The sleep you used freezes the computer so no events are handled. In other words your computer hangs into the sleep and can handle only a fraction of a second your events.
But thats no problem replace the sleep with this:
dim c as integer
for c=1 to 10
doevents
sleep 100
next c
To exit the program you can declare the application component and use terminate.
dim app as application
app.terminate
or execute
myform.close
I hope this will help you out best regards marco
bug in object splitter
Posted: Thu May 17, 2007 7:22 am
by PaPi
thanx, Marco.
PaPi