Here are 2 portions of code:

Code:
pic1.Print "Hello world"
pic1.Cls
This prints some text in the picturebox and clears it right after. Works good.

Code:
pic1.Print "Hello world"
pic1.Picture = pic1.Image
pic1.Cls
This prints some text and makes it consistent before trying to clear the picturebox. The problem with this is that the .Cls doesn't work. "Hello world" remains visible and I don't know how to clear it.

Would anyone have a suggestion of what to try? I wouldn't want to resort of retyping "Hello world" in white to make it disappear.

(I simplified things here... but some part of my code needs to makes the picturebox consistent (.picture = .image) so that's why I'm asking)

THANKS!