no has probado con INHERITS?
nOP... no me lo permite.. me imagino que por el tipo de control y la forma en que se agrega este control a mi otro control...
Imports System
Imports System.Drawing
Imports System.Windows.Forms
Imports ICSharpCode.TextEditor ' COMPONENTE QUE UTILIZO
Imports ICSharpCode.TextEditor.Document 'DOCUMENTO EN MI COMPONENTE
Imports System.Reflection
Imports System.IO
Public Class SQLEditor
'PREPARANDO UN OBJETO EN MI COMPONENTE APARTIR DEL ANTERIOR
Private editor As ICSharpCode.TextEditor.TextEditorControl = New TextEditorControl()
Public Sub New()
InitializeComponent()
editor.Dock = DockStyle.Fill
'AGREGO EL EL OBJETO EN MI CONTROL
Me.Controls.Add(editor)
'ESTABLESCO PROPIEDADES
Dim appPath As String = Path.GetDirectoryName(Application.ExecutablePath)
HighlightingManager.Manager.AddSyntaxModeFileProvider(New FileSyntaxModeProvider(appPath))
editor.Document.HighlightingStrategy = HighlightingManager.Manager.FindHighlighter("SQL")
End Sub
End Class
no se que hacer...