Re: [JEDI.NET discuss] Update
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <mar...@xs...> - 2004-09-22 19:35:13
|
All, > I also need someone with VS.NET access and check if this thing also works properly in that environment (it should, but I don't > have VS.NET and can therefore not test it). Trouble in paradise! The Led controls stuff does not work correctly in VS.NET: * The first issue is the auto-generated code for SingleLed.LedStyle. It generates 'this.SingleLed1.LedStyle = new SingleColorNormalLedStyle ...' which results in compiler error that the property, indexer, event cannot be accessed like that. Manually altering it to 'this.SingleLed1.set_LedStyle(new SingleColorNormalLedStyle ...)' does work. No idea what is causing this though. There are no custom CodeDomSerializers at work in this simple case, so it is generated by VS.NET/C# CodeDom itself. * Second issue: The VS.NET IDE does not show the collection items in it's PropertyGrid. It does work if I place a PropertyGrid control on the same form, build the project (after altering the above mentioned problem) and run it; I can simply add colors to the MultiColorNormalLedStyle from the property grid control on the form. Of course the latter I knew already since it did work from a Delphi test app as well. Question is why the VS.NET IDE property grid doesn't get them, whereas the Delphi Object Inspector does. Anyone capable of shedding some light and these problems? -- Marcel Bestebroer (Team JEDI) http://delphi-jedi.org Project JEDI Help coordinator JEDI.NET team coordinator |