Quote:
Originally Posted by Filippo
Can you tell me why it doesn't work?
|
Because it is not running under Basic4ppc! It needs some data from
http://www.basic4ppc.com/forum/code-...arameters.html that are not present, specifically fixX and fixY that are returning negative values and stopping it drawing itself. It also seems to need cPPC but I don't know why. You can fool it by adding the data slots.
Code:
Imports System.Threading
...
Thread.SetData(Thread.GetNamedDataSlot("fixX"), CDbl(1))
Thread.SetData(Thread.GetNamedDataSlot("fixY"), CDbl(1))
Thread.SetData(Thread.GetNamedDataSlot("cPPC"), True)
list = New bList(Me)
...
@Arial - Blist.SuspendLayout and Blist.ResumeLayout are visible but not documented in the help.