Maybe a bug

Hi, I don’t understand if there is a problem in Rhino.Propertylistbox method.

try the following code:

Call Main()
Sub Main()
	Dim propbox
	Dim arritems,arrvalues
	arritems = array("A", "B", "C")
	arrvalues = array(1, 2, 3)
	Do
		propbox = rhino.PropertyListBox(arritems, arrvalues, "HELLO")
		If isnull(propbox) Then Exit Do
	Loop
End Sub

there is a do-loop code. normally if I press OK the software shows again the propertylist box it’s correct. The same if I press Cancel button the software exit from the cycle correctly. The problem is if I press right mouse button. the software enters in a loop and stops to work.
if I try with other similar method (ex. Multilistbox) to press right mouse button it’s the same to press cancel button and there are no problem.
Have you the same result?

thanks!

Andrea

Hi Andrea, I can confirm the same thing happens here, except that I can press Esc to cancel the blinking freeze.

So. it’s a bug? I’ve to use this method. I didn’t find a way to resolve the problem. Any idea?

thanks!