CodeDom

  • Thread starter Thread starter Picho
  • Start date Start date
P

Picho

Hi guys,

I am writing an application that uses CodeDom (dynammicly creating
assemblies).
the user will have to type in code that will use classes defined in another
assembly.
obviously the code will be entered as text and then compiled at run time.

my question is simple:
is there a way (or a control?) that will let me use the benefits of the
metadata (intellisence)?
in a way - sounds silly maybe - but "adding" the IDE code editor to my
project as a control?
I COULD write a control that does this but thought I might check first...

thanx,

picho
 
Picho said:
Hi guys,

I am writing an application that uses CodeDom (dynammicly creating
assemblies).
the user will have to type in code that will use classes defined in another
assembly.
obviously the code will be entered as text and then compiled at run time.

my question is simple:
is there a way (or a control?) that will let me use the benefits of the
metadata (intellisence)?
in a way - sounds silly maybe - but "adding" the IDE code editor to my
project as a control?
I COULD write a control that does this but thought I might check first...

Please check SyntaxEditor control from actipro software:
http://www.actiprosoftware.com

You do need to program the intellisense yourself, but it's not that
hard really.

FB
--
 
Back
Top