Syntax Highlighter In RichTextBox?

Mar 11, 2010

You probably got annoyed when you read the title, it must have been asked a million times. But unfortunatly I cant get it working for myself. Ive been using this code to highlight the word "var":

Dim search As String = "var"
Dim index As Integer = RichTextBox1.Text.IndexOf(search)
If (index <> -1) Then

[code].....

But it selects the word "var" and then afterwards, it makes thewhole RichTextBox have this font.

View 6 Replies


ADVERTISEMENT

Make A Syntax Highlighter Such As Notepad++?

Dec 3, 2009

Using VB 2008r 2010 is there somehow I could make a syntax highlighter such as Notepad++?But maybe more simpler for only HTML, PHP and CSS? Or is there a plug-in or something you can download and add in your app?

View 3 Replies

Syntax Highlighter - How To Color A Line

Apr 21, 2010

For the program I am building, it will have a mini syntax highlighter. How do I color a line the contains -- from that point and onward?
Example:
This is the text --this is a comment
_OR_
this is the text
--this is the comment

View 19 Replies

Syntax/Command Trying To Implement Syntax Highlighting In RichTextBox?

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

Get Syntax Highlighting For A RichTextBox?

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

RichTextbox Syntax Highlighting?

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

Syntax Highlighting Richtextbox?

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

.net: Syntax Highlighting In A RichTextBox Control?

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

Syntax Highlighting In A RichTextBox Control?

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

VS 2010 Richtextbox Syntax Highlighting?

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

Coloring Syntax In RichTextBox Using System.Web.RegularExpressions.AspCodeRegex?

Feb 14, 2011

I was wondering if it was possible to colorize syntax of, say HTML, inside of a RichTextBox by comparing each word in the current line of text against the collection of words in System.Web.RegularExpressions.AspCodeRegex? I'd imagine that from this question it would be possible?

View 3 Replies

Keep Color Syntax In Richtextbox When Finding And Replacing Words?

Aug 21, 2009

when i copy code from vb.net code window, and paste it in my richtextbox, the color synthax is as it displays in my vb.net code window.. this i want to keep when finding and replacing words. i have the following code to find and replace,

RichTextBox1.Text = RichTextBox1.Text.Replace("Private Sub", "<font color=blue>Private Sub</font>")

but the color syntax of the richtextbox code is lost, looks like a textbox's text.. how do i replace the words and keep the synthax coloring?

View 5 Replies

Richtextbox - Efficient, Flicker-free Syntax Highligher For .net Which Works As Well As The One In The IDE

Oct 14, 2009

While I do know the above goal is rather challenging to achieve, I know it can be done.What the one I made does:It compares each word to a word from the list, if its a match, it will physically select the text and change the color, and finally it will return the carat to the position it was in when it highlighted.

Issues with this: Flickering. It always flickers. I managed to reduce the flicker by making the thread sleep for 50 milliseconds, but I could not get rid of it entirely (it didn't noticeably slow down typing either). Now, another thing that I tried was using a second RichTextBox to have the highlighting occur to that, but that made no obvious differences at all.Scrolling. It will scroll the RichTextBox if the amount of text is big enough to cause scrollbars to appear.Deleting text. If you delete part of a word which has been highlighted, itll retain the color formatting even if the word is now changed. Itll also physically select the entire word, which baffles me endlessly.Closing the window. Since the highlight subroutine is called whenever the RichTextBox's TextChanged event is called, apparently it is fired when the window closes? However, since the window is closing, it slows down the entire process, so with a larger file it may take 5-10 seconds to go through and highlight each keyword.

How can I solve each of these issues? I do not want to use someone else's component, I specifically want to use my own.Physically edit the RTF instead of using a built in method for changing the text color, this would get rid of all my issues. Assuming a keyword was "The" (for example), what would the rtf be to make it turn blue?Don't use syntax highlighting (last resort here)My end goal: A syntax highlighter for a RichTextBox which works as well as the one in Visual Studio.

EDIT: Is there another component which would be better for this than a RichTextBox?

View 3 Replies

C# - Used IsHighlighter Property Of InkCanvas To Create Highlighter Tool?

Mar 31, 2011

I have used IsHighlighter property of InkCanvas to create highlighter tool In real life when we use highlighter it highlights on the top of our notebooks or books writing but in InkCanvas i am not able to highlight on the top of Ink which i have previously drawn I am creating application which have pen as well highlighter tool now if i have to highlight some thing which i have drawin onto InkCanvas using pen highliter goes down to Ink .

View 1 Replies

C# - Syntax Conversion - Translate Syntax ?

Dec 16, 2009

Can any one translate the following syntax to vb.net.

m_TextBox.Loaded += TextBoxLoaded
m_TextBox.Loaded -= TextBoxLoaded;
private void TextBoxLoaded(object sender, RoutedEventArgs e)[code].....

View 4 Replies

Way To Search A Richtextbox Textfile That Will Highlight All Word Finds And Then Send Them To Another Richtextbox?

Aug 26, 2010

I have a richtextbox with a large file inside....I want to be able to search for "Fornication" within the text (KJV Bible) and have every instance of that word to pop up into another richtextbox along with the scripture it is in.

View 1 Replies

Create A Richtextbox On Formload Then Drag And Drop On Richtextbox?

Jun 28, 2011

I'm currently having a problem dragging and dropping my label1.text to a richtextboxt which isn't created on design time...well im currently found a solution but i think it is only for a temporary solution because i use a drag and drop i drag it to a textbox then it willl transfer the data to the richtextbox....through the use of the textbox... here is the code ive come through..[code]...

View 2 Replies

Get Text From Richtextbox In A Form To Another Inside A Richtextbox?

Jul 25, 2011

I am creating a text editor like notepad. Well its an advance type because it is a tabbed notepad type. It saves html files.

I only created tabcontrol on the design time named TabControl1. the tabpages and the richtextbox are created on the form load and when adding tabs. [code]...

View 7 Replies

Set Text To A Richtextbox In Form To Another Inside A Richtextbox?

Jul 26, 2011

I have 2 forms. The 1 is named frmMain. inside of it is a Richtextbox named RTB.

The other form is named frmInsert. Inside of it is a Richtextbox named rtbtext.[code]..

View 5 Replies

Convert Late Binding Syntax To Early Binding Syntax In .net?

Sep 5, 2011

i have this code:Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

[Code]...

Error 1: Option Strict On disallows late binding.Im using visual basic 2010 express on a gateway laptop thats running Windows 7 OS How do i resolve this error?

View 2 Replies

Convert Late Binding Syntax To Early Binding Syntax?

Apr 9, 2009

I have a listbox and it it I am showing numbers.It should look like this (line by line) 1,2,3,4,5,6,7,8,9,10,11.....but is is showing it like this 1,10,11,...2,20,21...3,30...ow can I make it that it will show it in number order 1,2,3,4,5......

View 5 Replies

Syntax Error: Syntax Error: Missing Operand After '14' Operator

Oct 21, 2009

I want to select some rows from a sql express 2005 table. I am using this expression: "Starttime >= " & dtpStart.Value dtpStart is a DateTimePicker But I am getting this error: Syntax error: Missing operand after '14' operator.

View 18 Replies

Asp.net - Regarding Syntax In C# And Vb

Aug 7, 2009

I have a web service in c# and its working well in c#.Following is one method i used in it

[WebMethod(EnableSession = true)]
public void abc(BllNew objNew)
{
new DAL.Entity.BllNew().sample();
}

But again i implemented above method in vb and is like this

[WebMethod(EnableSession = true)]
public void abc(BllNew objNew)
{
new DAL.Entity.BllNew().sample();
}

One syntax error is showing near 'new' keyword.What change i hve to get rid of syntax error.

View 2 Replies

C# Syntax To A Vb-er

Sep 11, 2009

I have the following code snippet:

CODE:

I do not understand the

CODE:

Can someone explain it? For the record...dropOperation is an enum. Can you give vb syntactical equivalent is all I need.

View 10 Replies

Sql Syntax To Always Get One?

May 25, 2011

SELECT dbo.Calls.Description, dbo.TicketRead.IsRead, dbo.TicketRead.UserID
FROM dbo.Calls
LEFT OUTER JOIN dbo.TicketRead ON dbo.Calls.CallID = dbo.TicketRead.TicketID
WHERE dbo.TicketRead.UserID = 1 or is null

I want to get a list of all calls, but also a value indicating if the user have read the call. so I made when a user open's the ticket a new record is added in a special table. now if no user have read it then it's ok, but if just one user have read this ticket, then the other users don't have this call in the list..

View 2 Replies

Syntax For An Old Vba?

Apr 29, 2012

just starting out to learn vb.net. I am doing so cuz i have some vba stuff i need to port.orry for the beginner question: translate this code I use in Outlook to vb.net? I know it's not complete, but I am stuck here.

Private Sub Application_ItemSend(ByVal Item As Object, ByVal Cancel As Boolean)
Dim objNS As NameSpace
im objFolder As MAPIFolder

[code]....

View 1 Replies

Wcf - What Is This Syntax In .NET

Feb 6, 2012

The following is from a WCF sample I am working on.

<ServiceBehavior(InstanceContextMode:=InstanceContextMode.Single)> _
<Foobar()> _
Public Class Service1

I've never understood this and just used examples, but I would like to understand what is going on here. What exactly is the stuff inside the <> brackets? How are these related to Service1? I understand the ServiceBehavior is related to the hosting, but what about Foobar?

View 2 Replies

ASP VB Syntax Error?

Jun 7, 2012

I'm trying to display an aggregate feed of several RSS feeds. I'm doing this with an asp page.The problem is I'm getting the error message:Microsoft VBScript compilation error '800a0401' Expected end of statement for the line:Dim feed As SyndicationFe

View 1 Replies

Asp.net - SQL: Incorrect Syntax Near

Apr 7, 2011

I used to have this one

Dt = MyMod.GetDataTable("SELECT TOP " & QuestionsPerCats(i) & " * From Questions WHERE CategoriesID ='" & Cats(i) & "' ORDER BY NEWID()")

but now i decided to use sqlparameters like

Dim cmd As New SqlCommand("SELECT TOP @QuestionsPerCats * From Questions WHERE CategoriesID = @CategoriesID ORDER BY NEWID()", conn)
Dim sqlParam As SqlParameter = Nothing
sqlParam = cmd.Parameters.Add("@QuestionsPerCats", SqlDbType.SmallInt)

[code]....

and returns the following error

Incorrect syntax near '@QuestionsPerCats'.

View 3 Replies

Can't Get A Handle On The Syntax?

Aug 6, 2009

I can't get a handle on the syntax. Can anyone give me a simple demo?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved