[Mono-list] Custom attributes setting return type

Mark Derricutt mark@talios.com
Sun, 20 Apr 2003 22:19:55 +1200


On Sat, 19 Apr 2003 04:12:16 +1200, Ravi Pratap M wrote:

>>   this.tabSettings.SelectedIndexChanged += new
>>     System.EventHandler(this.tabSettings_SelectedIndexChanged);
>> 
>> 
>> ConfigurationEditor.cs(298) error CS0117:
>> `System.Windows.Forms.TabControl' does not contain a definition for
>> `SelectedIndexChanged'
> 
> 	Can you pinpoint what exactly the problem seems to be ?

Having a look at TabControl.cs I see that pretty much most of the control
hasn't yet been implemented.

There seem to be alot of stubbed On*SomeEvent*() methods, I've got
tomorrow off work ( Easter holiday ) so will spend some time hacking in
the 'public event....' and handlers that my code needs, and hopefully I
can get it working.  Having a few issues rebuilding mono from CVS at the
moment thou ( seems a few people are from the comments in here... )

I actually noticed that the event handler in my code was just an empty
method, which probably got created by Visual Studio, so it's not actually
used anyway...  But if it gets me involved in Mono hacking, its all good.

Mark