bug in object splitter

In this category you can exchange your programming questions and solutions.
Post Reply
PaPi
Posts: 114
Joined: Wed May 16, 2007 11:55 am

bug in object splitter

Post: # 28Post PaPi
Wed May 16, 2007 12:11 pm

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

Marco
Site Admin
Posts: 246
Joined: Sat Sep 15, 2018 8:41 pm

bug in object splitter

Post: # 29Post Marco
Wed May 16, 2007 8:50 pm

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


PaPi
Posts: 114
Joined: Wed May 16, 2007 11:55 am

bug in object splitter

Post: # 30Post PaPi
Thu May 17, 2007 7:22 am

thanx, Marco.
PaPi

Post Reply