New Post: ScrollBars AutoAdjust
Try const uint SCI_SETSCROLLWIDTHTRACKING = 2516; scintilla.NativeInterface.SendMessageDirect(SCI_SETSCROLLWIDTHTRACKING, true); Taken from https://scintillanet.codeplex.com/discussions/82543.
View ArticleNew Post: Advice for setting Scrolling.HorizontalWidth
Refer to https://scintillanet.codeplex.com/discussions/82543.
View ArticleNew Post: Remove Method
I tried using SCI_DELETERANGE but nothing happened, I did someting like:int startPos = ...; int length = ...; const uint SCI_DELETERANGE = 2645;...
View ArticleNew Post: Scintilla : Adding keyword having space in between like 'end if'...
When i add a keyword in autocomplete list having space in between keyword as 'end if' appears seperate in autocomplete. Can anyone please help me. Thank you in advance.
View ArticleNew Post: Scintilla : Adding keyword having space in between like 'end if'...
Hello again I have solved this issue by setting the: ScintillaControl.AutoComplete.ListSeparator = ','; Now you can put space in between keyword's name.
View ArticleNew Post: Custom Lexer glitch
Hello, I'm looking at ways to syntax highlight a sql like text. My files are sql-templates with some special tag that I want to highlight for exemple I've param placeholders of the type {{param_name}}...
View ArticleNew Post: Find and replace set default search string
Hi, I wonder if there is an easy way to set a default search string in the Find&Replace form. I need it basically to set the clipboard content automatically. thanks,
View ArticleNew Post: ScintillaNET with tabpages
Sorry for the delay in response. We had a 2 software releases for another project in the past 2 months. I took your advice removed the background thread, moving all processes to the UI thread, and...
View ArticleNew Post: unable to load scilexer.dll into memory module
I'm having the hardest time publishing the scilexer.dll with my project. my program runs beautifully on my local machine but installing it on another machine doesn't get past the initial start up of...
View ArticleNew Post: Using the latest version of Scintilla
Using the latest version (MSVC11) does not work at all. I am not sure why it doesn't work, as the module loads perfectly fine. Sigh. Back to the drawing board.
View ArticleNew Post: Using the latest version of Scintilla
I just upgraded to 3.3.7, and it now works! I guess it was a bug with 3.3.6.
View ArticleNew Post: unable to load scilexer.dll into memory module
The SciLexer.dll (and SciLexer64.dll) needs to be somewhere in the search path. Refer to http://msdn.microsoft.com/en-us/library/7d83bc18.aspx. If you're still having trouble, you can try calling...
View ArticleNew Post: ScintillaNET Select
Hi, I want to know how can I select the ScintillaNET, i tryed scintilla1.Focus and scintilla1.Selected but nothing. I want to selected it from another dockpanel when I double click on the dockpanel, eg...
View ArticleNew Post: Creating splitter windows
Is there anyone working on a split view in the scintillaNET control? I
View ArticleNew Post: Creating splitter windows
It's not currently part of any plans I have. (I'll let other ScintillaNET developers speak for themselves). I've looked into this in the past and it is really problematic. For example, we can't get a...
View ArticleNew Post: Release Memory
Do you have a sample program which illustrates this problem? I understand that you believe it is a problem with ScintillaNET but I'm not entirely convinced it is. I suspect that you're misunderstanding...
View ArticleNew Post: Remove Method
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Remove Method
1). As was pointed out by @blah38621, doingscintilla.Text.Remove(1, 5); will have no affect on the text in the Scintilla control and it has nothing to do with Scintilla. The Scintilla.Text property is...
View ArticleNew Post: ScintillaNET Select
I'm not in a place where I can test this, but have you triedscintilla.Select(); Thanks, Jacob
View Article