Re: [Mono-winforms-list] Finding the tabindex of a label

2010-02-03 Thread PFJ
Hi, Petit Eric wrote: i don't really know, but did yu try something like Label Buff = sender as label or Label Buff = new label( Buff = (Label)sender.TabIndex; Yep, doesn't give me the TabIndex method either. TTFN Paul -- View this message in context:

Re: [Mono-winforms-list] Finding the tabindex of a label

2010-02-03 Thread Diego Frata
Shouldn't it be: int tabIndex = ((Label)sender).TabIndex; ? Diego Frata diego.fr...@gmail.com On Wed, Feb 3, 2010 at 11:11 AM, Petit Eric surfz...@gmail.com wrote: i don't really know, but did yu try something like Label Buff = sender as label or Label Buff = new label( Buff =

[Mono-winforms-list] PictureBox, Resources and RTF text box problems

2010-02-03 Thread PFJ
Hi, Two questions which my frazzled brain isn't coping with... I have a pile of resources for a project which the resource manager handles quite nicely. I have an XML file which contains the name of the resource, but stored as a string rather than as an Image (it's the name of the resource).

Re: [Mono-winforms-list] Finding the tabindex of a label

2010-02-03 Thread PFJ
Hi, Diego Frata wrote: Shouldn't it be: int tabIndex = ((Label)sender).TabIndex; ? That got it... Thanks TTFN Paul -- View this message in context: http://old.nabble.com/Finding-the-tabindex-of-a-label-tp27435810p27437403.html Sent from the Mono - WinForms mailing list archive

Re: [Mono-winforms-list] PictureBox, Resources and RTF text box problems

2010-02-03 Thread Robert Jordan
On 03.02.2010 15:44, PFJ wrote: I have a pile of resources for a project which the resource manager handles quite nicely. I have an XML file which contains the name of the resource, but stored as a string rather than as an Image (it's the name of the resource). Is there a way that I can