views:

574

answers:

3

I'm looking for a .NET component that free and include the following features:

  • Real-time syntax highlighting (HTML, VBScript,..)
  • Intellisense (I can build my own intellisense library)
  • Line number

I found ScintillaNET from

http://scintillanet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=15804

but I wonder if there is a better component? Please help me, thanks!

+2  A: 

You might consider trying out the Visual Studio Shell or Eclipse both offer platforms to build very powerful IDE's.

heavyd
+2  A: 
CMS
Just be aware that the Fireball project was disingenuously forked from an existing open-source project, SyntaxBox (http://code.google.com/p/alsing/wiki/SyntaxBox), with all references to the existing author being stripped away and made untracable.
Exponent
+3  A: 

You could also use ICSharpCode.TextEditor, which is the editing control used in SharpDevelop. I don't think it's available as a separate download, but you can get it with SharpDevelop.

Thomas Levesque