Syntax Highlighting For Java In RichTextBox1?
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
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
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
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
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
Oct 4, 2011
I would like to romove any line that doesn't have "http://" Or "https://" within Richtextbox1.text.
e.g.:
[URL]
I need any line above that doesn't have the http:// or https:// to be remove and no empty lines left.
View 1 Replies
Oct 5, 2011
I'm trying to create a quick little program in VB 2008 that can parse extract the google search results based on the search criteria of the user input.
Basically what I have is a textbox1.text that enters the keywords into google, google will then put the url results back into my richtextbox1.text.
Here is the code that I have:
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
Me.Text = WebBrowser1.Url.AbsoluteUri
[Code].....
View 3 Replies
Jul 22, 2009
How can i make the font's size in richtextbox equal to combobox1?
RichTextBox1.font.size = combobox1.text
not working
View 12 Replies
May 25, 2010
ok I was wondering if its possible to get the line were setLSBCookie( is at . This is my code but didnt work out vb.net
i = RichTextBox1.Lines.IndexOf("setLSBCookie(") This is my error:
Overload resolution failed because no accessible 'IndexOf' accepts this number of arguments.
View 4 Replies
Feb 20, 2009
I'm using Visual Basic 2005 Express Edition and I was just wondering if someone could help me out with a few things? I'm making a Notepad-type program just to clarify things.1. I have a button which adds text to my RichTextBox1 (excuse the name), but when you click it it adds text to the end of the script. I want to make it so the text is added where your "cursor" (the blinking thing which lets you know where you're typing) is, at the current part of RichTextBox1. At the moment I'm using:
RichTextBox1.Text = RichTextBox1.Text + "The text I'm adding" If anyone could tell me the code to make it put "The text I'm adding" at your current cursor that'd be great.
2. I have a Save As button and a Save button. When you click Save As and save the file it works 100%, when you click Save and you haven't saved previously then it works 100%, but after you have saved the file and then click save it doesn't overwrite the file. Here's the code for Save:
[code]...
So if anyone can tell me the code that's needed so it will overwrite the current file 3. I have a FontDialog but I have no idea what the code is supposed to be to make RichTextBox1's font change after you click Okay in the FontDialog.
View 12 Replies
Jun 23, 2009
i want the richtextbox1.selectioncolor to be able to pickup and use the color in a label's text and not just the Color.LightBlue..the label1.text=Color.LightBlue
Dim labelcolor As Color
labelcolor = Label1.Text
RichTextBox1.SelectionColor = L
[code].....
View 6 Replies
Sep 15, 2010
Text displayed by the RichTextBox1 is too big. It creates vertical and horizontal scroll bars. It there any way to zoom in and out to make the text fit as one desires?
View 5 Replies
Jul 23, 2009
My rtb to be resized with the form...like windows notepad!
Original Form Size - 809; 699
Original RTB Size - 791 to 556
dim none as none
View 2 Replies
Mar 1, 2012
It is necessary to find certain text from richtextbox1 and put it in richtextbox2
View 5 Replies
Feb 8, 2011
Have been trying to scroll one line at a time on my Richtextbox1 for quite some time - Hit upon this code which doesnt seem to work.
Class RichTextBox1
Inherits RichTextBox
<DllImport("user32.dll", CharSet:=CharSet.Auto)> _
Private Shared Function SendMessage(ByVal hWnd As IntPtr, ByVal Msg As UInteger, ByVal wParam As IntPtr, ByVal lParam As IntPtr) As IntPtr
[code].....
View 5 Replies
Mar 16, 2012
Basically I want a piece of code that will only do something if richtextbox1s text is a url. Here is a MOCK code.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If richtextbox1.text.containsURL = True Then
webbrowser1.navigate(richtextbox1.text)
End If
End Sub
or something similar.
View 3 Replies
Dec 10, 2010
My program automatically checks if a file exists when they go to save. If it doesn't, it automatically creates the directory and file. Then, after that, it should save the data in my RichTextBox1 form, but how do I get it to write the new number from RichTextBox1 into the XP file?I DON'T want a select file menu. I have my own path to the file.
View 14 Replies