Winforms - "Caret Position" In .NET For Syntax Highlighting?
Dec 17, 2009
I'm trying to make a TextBox with syntax highlighting (for (HTML/CSS) in VB.NET 2008.I figured that if I use RichTextBox.Find(), I can color specific text, but then I need to call RichTextBox.DeselectAll(). The problem is that the the cursor jumps to the beginning of the RTB.
View 1 Replies
ADVERTISEMENT
Oct 12, 2011
I am having an issue trying to figure this out. I am writing a script editor that uses tabs (a tab control) and I want to implement syntax highlighting. My issue is that every sample I can find on syntax highlighting uses
Private Sub RichTextBox_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RichTextBox1.TextChanged
View 1 Replies
Apr 10, 2012
In a .NET 3.5 application, i want to get caret position in a RichTextBox control. The RTB is not XAML. Also, the RTB doesn't have CaretPosition property as described here: [URL] What is the simplest way using which i can get the caret position?
EDIT:To be more specific i want to find out what is the position of the caret from the start of the line on which it is positioned. I can get the line number by using GetLineFromCharIndex(rtb.SelectionStart) but not the offset from the start of the line.
View 1 Replies
May 10, 2010
This is what I am trying but it doesn't work. The idea is to rest the caret position at the beginning after I hit enter and the conents od Textbox1 are deleted
Private Sub TextBox1_Keydown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
If e.KeyCode = Keys.Enter Then
[Code].....
View 9 Replies
Feb 13, 2010
How do you parse the caret position in a text box, then use that for setting the index in a listbox, all in VB.NET
View 1 Replies
Sep 4, 2011
I'm making a Singlish-English Word Prosessor.When user typing in a active window's TextBox those letters were automatically converted to the Sinhala language.I did that hard part with sendKeys() Function.But Now I want to set my application windows's location at Active Window's Blinking cursor(Caret) position.So It will easy to user with English-Sinhala Translation thing.
View 1 Replies
Sep 13, 2011
I am making a program in VB.NET and need to hide the Caret in textboxes.
I could live with it being either completely hidden or just the same colour as the textboxes background colour. How can I go about doing this? I would prefer to stay away from Custom Controls if at all possible.
View 1 Replies
Oct 7, 2011
How do I set the caret position in a System.Windows.Forms RichTextBox? ScrollToCaret in not Working. Here are my Registry settings. When I save to the registry, It saves. When I try to get were I left off from the previous read, It leaves me at the beginning of the file and not where I left off. [Code]
View 2 Replies
May 10, 2010
I have a textbot that I delete its contents. I want to rest the caret position at the beginning of the textbot once its contents is deleted. How can I do that?
View 9 Replies
Oct 19, 2009
even Word Pad, when you scroll your Caret (the I-beam for browsing through text) through the text, in the font combobox, the font of the text you are browsing through will be displayed, and when you scroll your caret through a different font, the font will be changed. If you're confused, look at attatched picture.
I cannot seem to find a caret position changed event on the normal richtextbox control - and if anyone can show me a custom component with this it would help me a huge amount.So my basic question is how can i replicate the formentioned function in my own VB.NET program.No code is necessary just constructive suggestions, or links to other projects would be welcome. You don't need to quote the forum rules
View 1 Replies
Dec 29, 2011
I've been trying to get syntax highlighting for a RichTextBox.I am struggling trying to code it myself, so I looked around a bit, and found a cool .dll file called ColorCode.
[URL]
So I went into my project and imported the ColorCode.dll file. (Project>Add Reference)However, I don't know how to use it!?Is there anyone out there that has used this .dll file?How can I use it to get Syntax Hilighting in RichTextBox1?
View 16 Replies
Jul 15, 2010
Looking in the "Display Items" list in the "Fonts and Colors" section of options, I don't see a way to color code dates. I can color numbers, strings, comments... all kinds of stuff, are Date and DateTime hiding under something else?
View 1 Replies
Feb 5, 2011
I've been looking everywhere for a solution to this problem. I'm new to VB, well programming in general, and am using VS2010 ultimate. Everything has been running smoothly until recently. For some reason, there is no syntax highlighting for my code. All other code is highlighted and colored correctly, just VB is not. All i get is black characters. Keywords, comments, everything is black! I have attempted to reset all the settings, and I have made sure that the font settings are all set to default.
[Code]....
View 5 Replies
Jan 9, 2009
I have a richtextbox on my form and currently have made a simple syntax highlighting for it. It works great with a small amount of text but as the text amount increases it starts flashing and locks the textbox while typing.
This is my current code. I call the sub on the textchanged event.Basically what happens is I have a list of words that it checks for and if it finds it, it colors the word.
[Code]...
View 2 Replies
Aug 1, 2011
I'm building an app that has an sql editor with syntax highlighting and intellisense. I've got the frame, but i'm stuck with the re-coloring of the RTBSuppose the RTB has got a large volume of lines. when i start editing, the on-textchange event triggers the re-coloring of the current line. using;
- selectionStart
- selectionLength
- selectionColor
[code].....
View 4 Replies
Jan 10, 2010
Ok, So i am building a code editor for a new Multi-Player modification thats being coded (IV-MP), And i was looking into making the syntax of the code highlight, Like it dose on this picture:
The code is 'Squirrel', But i totally have no clue on how to make it highlight like in those pictures, And all the code would be in a large Rich textbox.
View 7 Replies
Sep 29, 2010
I need help Related to this form [URL]...Related to that topic Using the same code how can i add more then one color so how can i add it more then once So like words = the and bob ect... but I make a new dim call it words 2 = for next then ect... diffrent color I do this and it cancels out the blue the first one, so like this
[Code]...
So then i try it purple works but now blue does not..i know its possible with this one! All i want is to be able to add other words in a different color! Because this code works like a charm
View 7 Replies
Sep 10, 2010
I recently set up a Redmine server for my time. Redmine's Wiki uses CodeRay for syntax highlighting. However, most of my team prefers to code in VB.NET, which CodeRay doesn't support.Are there any plugins out there that offer syntax highlighting for VB.NET in CodeRay? If not in CodeRay, maybe through some other library (that could be integrated into Redmine)?
View 2 Replies
Dec 10, 2011
How to add a Visual Basic .NET syntax highlighting to CodeMirror editor? Does exists the mode for this language on any library? What should I correct except keywords, blockKeywords and atoms? [code]
View 1 Replies
Dec 26, 2011
I want to have syntax highlighting for Java in RichTextBox1.
When the user entres "//" (without quotes), i want the "//" to turn green, while the rest of the text stays black.
i've started with:
If RichTextBox1.Text.ToLower.Contains("//") Then
'do something
End If
View 3 Replies
Apr 23, 2008
I am currently working on a code editor program for Linden Scripting Language (Second Life Code) and I am having a lot of trouble using the Syntax Highlighting class which i have found on a website [URL] I dont understand, the Class inherits the System.Windows.Forms.RichTextBox so it should change the color of the text if i type one of the keywords shouldnt it and i should not have to do any codeing for the RTB (or do i?)
View 5 Replies
Sep 6, 2010
I have the following
Private Sub RichTextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RichTextBox1.TextChanged
Dim words As List(Of String) = New List(Of String)(New String() {"select", "insert", "delete", "truncate", _
"from", "where", "into", "inner", "update", "outer", "on", "is", "declare", "set", "use", "values", "as", _
[code]....
The only problem is that if I type one of the key words, the word highlights, but if i type a word with one of the key words within it, part of it gets highlights as well.Example:
drop
dropped
View 24 Replies
Sep 23, 2010
I am trying to build a simple syntax highlighter editor along with undo/redo feature. I have the code to syntax highlight the code on "TextChange" event but the undo/redo feature does not work.Any work arounds on implementing syntax highlighting with undo/redo?
View 2 Replies
Jun 22, 2010
i planned to write a syntax highlighting application for a C/AL editor. I have a tool which has a little autocomplete function in C/AL.At first i would test it in my notepad. I thought about this procedure.1. Start application (minimized in tray, defined match words)2. Open Notepad (my application notice it)3. While typing the application the color of my text changes in notepad
View 4 Replies
Apr 1, 2011
Dim listbox1 As New ListBox
listbox1.Items.Add("<br/>")
Dim int As Integer = 0
Dim line As String = RichTextBox1.GetLineFromCharIndex(RichTextBox1.SelectionStart)
For Each item In listbox1.Items
[Code] .....
My coding selects an item from the list box and tries to color the words in the currently selected line, however, it often colors characters that come after the instance. Why is this happening?
View 2 Replies
Aug 25, 2010
Types have their own color (cyan by default).Enter completes the auto-complete suggestion.
View 1 Replies
Jul 9, 2010
I'm writing a VB.Net WinForms application that has multiple data girds on any given form. On one such form, the data grids are loaded into split containers which in turn are located on a tab control. The load method for each data grid is threaded so that an animated "Loading" form can be shown. I would like to position the new loading form (which is smaller than the grid) on top of, and preferably in the center of, the grid that is loading. Whats the easiest way to find the grids location within the main form so that I can adjust the loading forms location?
View 1 Replies
Mar 8, 2009
I developed a VB Winforms application in VS2010 Pro on my Win7 x64 desktop computer. I also have VS2010 loaded on my Win7 x64 laptop and when I open the same solution the application's form controls are shifted out of alignment and appear slightly stretched horizontally. The VS IDE settings are identical on both computers. Any idea why the solution looks perfect in the IDE when on my desktop, but when opened in the IDE on my laptop, all the controls shift out of alignment horizontally
View 5 Replies
Dec 30, 2011
I have a normal textbox which multiline property is set to true and now I need the text written in the textbox should have a large font size.So is it possible with the normal textbox.[code]...
View 1 Replies
Nov 4, 2010
I'm creating a new windows form application based on an existing AS400 application (don't ask).Now the users are used to have a fat, white, blinking caret all over the place, so the first thing they mentioned when they saw my initial release was "where did the cursor go?" "We don't know which field we're filling in"
I tried to explain that there is in fact a cursor inside the textboxes (and that it is called a caret), but they want their big, fat cursor back.After some searching on the internet, combining snippets, I managed to make the caret look like I want (in fact you can use any bitmap image as a caret as long as you invert the colours).Now this seems to work like a charm for textboxes but they want the same caret when they edit a cell of a datagridview (who could have guessed)
[Code]...
View 4 Replies