Oh, of course, why didn't I see that?<br>Thank you so much!<br><br>Søren Juul<br><br><div><span class="gmail_quote">2007/6/20, Brad Taylor <<a href="mailto:brad@getcoded.net">brad@getcoded.net</a>>:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Wed, 2007-06-20 at 23:04 +0200, Søren Juul wrote:<br>> Yes of course, the source code is at <a href="http://www.zpon.dk/tmp/test.cs">http://www.zpon.dk/tmp/test.cs</a> -<br>> sorry if it is messy<br><br> void makeWindow()
<br> {<br> Application.Init ();<br> Window win = new Window ("gArray");<br> win.SetDefaultSize (150, 150);<br><br>You're creating a new "win" object in the local context and showing
<br>that instead of setting/using the "win" you created in a module level<br>context. This should be:<br><br><br> void makeWindow()<br> {<br> Application.Init ();<br> win = new Window ("gArray");
<br> win.SetDefaultSize (150, 150);<br><br>so that next () can use it.<br><br>Best,<br><br>-Brad<br><br></blockquote></div><br>