Re: [IronPython] Accessing Win Form Properties

2005-10-04 Thread Davy Mitchell
Thanks Martin - I was mixing up the instance name. Too busy looking at the output than my own code :-) Regards, Davy On 10/4/05, Martin Maly <[EMAIL PROTECTED]> wrote: > I suspect that the "Form" you are referencing is the > System.Windows.Forms.Form class. > Once you have instance, it should ju

RE: [IronPython] Accessing Win Form Properties

2005-10-04 Thread Martin Maly
I suspect that the "Form" you are referencing is the System.Windows.Forms.Form class. Once you have instance, it should just work: f = Form() f.Text = "Hi" print f.Text I hope this helps Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Davy Mitchel