New Post: Show the hidden characters and show the column number.
Hi, I've just downloaded the ScintillaNET v2.5.2. I have the questions:How can I show the hidden characters like: tab, new line, space, ... How can I show the column number, I mean the vertical line...
View ArticleNew Post: ScintillaNET.dll as a single dll (with SciLexer.dll and...
I did not saw SciLexer source code and did not know that it use try/catch block. When i catch some time i will try to extend Microsoft.WinAny.Helper DynamicNativeLibrary and implement PEB (Process...
View ArticleNew Post: Can I use the ScintillaNET on commercial project
ScintillaNET is released under the same license as Scintilla, which does allow for use in commercial products.
View ArticleNew Post: Can I use the ScintillaNET on commercial project
Note that there is a requirement; the copyright notice for ScintillaNET and Scintilla MUST appear in the program, and the license must appear in the documentation along with the copyright notices....
View ArticleNew Post: SendMessage
You can pass a message to the control like this: scintilla.NativeInterface.SendMessageDirect(message); where message is the message you would like to pass and scintilla is the name of your control
View ArticleNew Post: How to highlight particular line
You can use markers to do this. Here is an example: Marker lineHighlighter = scintilla.Markers[2]; lineHighlighter.BackColor = System.Drawing.Color.Yellow; lineHighlighter.Symbol =...
View ArticleNew Post: Using the latest version of Scintilla
The latest version of Scintilla is 3.3.6. Is it possible to use it instead? And how do you build a x64 version of it, anyways?
View ArticleNew Post: UpdateUI Event bugged for back-tab?
Hi, I have currently a problem with the UpdateUI Event. I use this Event to implement custom Brace Highlighting and everything works fine, except for one specific case. I use this...
View ArticleNew Post: UseFont property?
If you want something shorter try this ... Dim I As Integer For I = 1 To 200 Scintilla1.Styles(I).FontName = "Envy Code R" Scintilla1.Styles(I).Size = 14 Next
View ArticleNew Post: Styles: Default.XLM
I was looking at the Default.XLM file in the configuration directory. It seems that someone wanted to standardize the the Style names (and that sounds perfectly logical). Out of curiosity I dumped all...
View ArticleNew Post: Things that will crash Microsoft's XML reader.
Perhaps "crash" is not the correct word. In Internet Explorer it will recover and just not display anything. In Visual Studio it falls into an endless loop of some kind.Two dashes "-" in a row inside a...
View ArticleNew Post: Minimal XML files
The following code will create minimal XML files for each of the languages supported by the native Scintilla.dll. They will not restore functionality but they will keep the program from crashing if the...
View ArticleNew Post: Using the latest version of Scintilla
In theory it should be possible. To build a 64-bit version you need to use the 64-bit VS command prompt and follow the Scintilla build instructions. Jacob
View ArticleNew Post: ScintillaNet SandBox
One of the big problems in creating a new ScintillaNet XML file is determining what Lexer to use and finding out what styles are available with the Lexer and more specifically what they are used for. A...
View ArticleNew Post: Using the latest version of Scintilla
After figuring out the compilation conundrum (I am not a native developer, but I know some stuff, but usually use MinGW-w64 and (currently) Msys2), I tried to make PowerShell work, but had no luck with...
View ArticleNew Post: ScintillaNet SandBox
You are welcome. The PDF document for SandBox also lays out as the section structure of the Scintilanet XML files as best I could figure it out. This app sorts out most of the information about the...
View ArticleNew Post: Release Memory
Hi, I have been using the .NET (ScintillaNET.dll - 2.5.2) for quite sometime in a log analyser program that would load the text in one chunk (using VB.NET). Now that I have implemented chunking to load...
View ArticleNew Post: Horizontal scrollbar range
Try const uint SCI_SETSCROLLWIDTHTRACKING = 2516; scintilla.NativeInterface.SendMessageDirect(SCI_SETSCROLLWIDTHTRACKING, true); Taken from https://scintillanet.codeplex.com/discussions/82543.
View Article