Highlight Single Lines In A RichTextBox?

Aug 20, 2008

i am making a lua editor that highlights reserved words and so.However I stuck in a highlighting part.I've made the reserver-words highlighting function but I got no idea how to make it highlight comment lines.

Could someone please help me? I want a function to search through the richtextbox and find lines that start with "--" and highlight them with green color.

View 3 Replies


ADVERTISEMENT

Richtextbox Highlight Every Ten Lines?

Aug 23, 2011

I have a richtextbox, and I want to highlight the lines in groups of ten, alternating colours every ten lines.
I know I need to use:

Dim lineindex As Integer = Me.RichTextBox1.GetLineFromCharIndex(index)
Dim first As Integer = Me.RichTextBox1.GetFirstCharIndexFromLine(lineindex)
Me.RichTextBox1.Select(first, xxxx)
Me.RichTextBox1.SelectionBackColor = Color.Red

However I'm not sure what to put in Select to get it to select the whole line, and I'm not sure how to get it to change colour every ten lines (to yellow)

View 1 Replies

VS 2008 - How To Highlight Multiple Lines In RichTextBox

Jul 14, 2009

How to highlight multi lines in Rich Textbox and know which lines are highlighted?

View 8 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

Draw Lines In Highlight Pen Style?

Aug 19, 2011

I am making a drawing application (Graphics class), with a highlight pen and a calligraphy tool. But the pen tip should not rotate according to the line direction. I have tried the CustomLineCap, but still not working.

View 3 Replies

.net - Highlight Color In Richtextbox?

Jun 22, 2012

Public Sub textcolorchanged() Dim searchword As String = RichTextBox2.Text.ToString.Trim

[Code]...

I searched word of datagridview1 rows and highlighted search word in rich text-box. text(it is having total text) I called this method in datagridview1 mouse click and key-up and key down event

word is highlighted in rich text-box.text when I mouse click and key up and key down on datagridview1 rows of search word but some time getting full text is changed color how???

View 1 Replies

Highlight A Line In A Richtextbox

Jun 5, 2009

I wonder is there any way to highlight a line in a richtextbox once the user hovers the cursor over it and get its value? I am also looking for a way to define the colour of the selection (e.g., blue, balck, etc)

View 2 Replies

Highlight Lat Line In Richtextbox

Mar 21, 2010

i've created a project to highlight a few line in richtextbox1.but why cant i highlight the last line?below is my code:[code]

View 3 Replies

Highlight Words In A Richtextbox

Dec 21, 2011

I have a list of words that i need to find in a RIchtextbox, when the word is found, i want to highlight the word.

View 2 Replies

Highlight Certain Text Inside A RichTextBox ?

May 28, 2012

I am currently making a Syntax Highlighter.How can I highlight certain text inside a RichTextBox ? I am Currently Using This Code :

Public Function Highlight(ByVal highlightcolor As String, ByVal ParamArray WordsToFind() As Object)
'Loop through all the words you specified:
For i As Integer = 0 To UBound(WordsToFind)[code].....

but it will only Highlight 1 of the word I set / Change the whole text into the selected colour

Example :

'I wanted to Highlight "Hello"

'I put this code into RichTextBox_TextChanged:

Highlight("blue","Hello")

'And It will Only highlight The First "Hello" inside my Text :

'Hello my name is XXX, Hello

And, can I Highlight text between certain text / after certain text

Example :

'Highlight After the '
Or :

<!-- Highlight between these 2 tags -->

View 11 Replies

Highlight Links In Richtextbox With Program?

Aug 6, 2011

I can't find out the correct answer how to highlight words in hyperlinks using richtextbox.

The program which I'm creating is blueskycorp scraper which when type some words in text box and found links to my questions puts in richtextbox like links.

But the problem I can't find out untill is just how to highlight not words but links in richtextbox to match founded words and highlight them in richtextbox where is extracted links and only I want to mark these links.

View 7 Replies

RichTextBox Highlight All Instances Of A Phrase

Jul 7, 2010

In VB.Net, is it possible to highlight ALL instances of a phrase instead of only a single instance of it, for example: txtView.SelectionStart = txtView.Find("ERROR: Invalid command entered.") txtView.SelectionColor = Color.Red This would highlight "ERROR: Invalid command entered.", however if my RichTextBox text is: ERROR: Invalid command entered. < Only this line will highlight ERROR: Invalid command entered. ERROR: Invalid command entered. Alternatively, is there a way I can simply colour the line when I write it to the RichTextBox?

View 1 Replies

Mouse Over Event To Highlight Single Word(s) In Rich Textbox

Sep 11, 2009

I have a rich textbox with words in it separated by space characters. I want to create a mouseover event so that when I drag the cursor over a single word in the rich textbox that the word wil be highlighted grey. How do I set up the mouse over event to trigger whilst hovering above this specific control and do I make it recognize a stand alone word,

View 11 Replies

How To Get A RicHTextBox To Multi Highlight Selected Text

May 1, 2009

How can I get a RicHTextBox to Multi Highlight selected text? [code]

View 5 Replies

VS 2008 Highlight One Line And Remove It For RichTextBox?

Apr 27, 2009

After I add tons of text lines on RichTextBox, I need to select any line(s) by just clicking this line. After that this line is highlighted. Then I click one button to remove this line. How to do that? (the starting character for each line is the same)

View 9 Replies

Way To Have A Richtextbox Display Highlight When It Loses Focus?

Mar 18, 2011

I have a richtextbox, when I leave it for example to go to another panel where I want to manipulate the selected text I can no longer see the selected text. Is there a way to make it still show the highlight?

View 1 Replies

Media Player And RichTextBox - Highlight The Text Being Played And Auto-scroll When It Plays The Next Line

Feb 9, 2011

I am trying to build a language tool, basically I am getting lines of text into a richtextbox and playing the audio for that line. Things are working great except that I want to highlight the text being played and autoscroll when it plays the next line. how to implement the line highlighting and autoscrolling.

View 2 Replies

Read Single Lines From .txt File

Mar 4, 2012

I am using vb 2010 and a windows form in my Web Browser project. In my favorites bar I need to be able to import my users favorites (that he may add) through a .txt file. I realize one way of doing this is creating multiple files stored in one master folder and reading the whole file of each which would contain the URL, but I would much rather have them all in one .txt file, but for that to happen i must read line by line from that file to import the favorites. Therefore, my question is how can I code my project to read through a .txt file line by line and return each line in possibly an array? "We are what we repeatedly do. Excellence, therefore, is not an act but a habit."

View 6 Replies

Add Lines In RichTextBox?

Aug 6, 2009

How to make RichTexBox when open a file to show the lines .To be like Notepad++ when open a file shows lines: Image:

Like .txt file thise sentences:

Hello!

How are you?

I'm Ok, Thanks for asking.

and when i start the program and open the file in richtextbox to show the lines of sentences . Like thise:

1. Hello!

2. How are you?

3. I'm ok, Thanks for asking.

How to be done? Because i'm using search button that show the word on what line is it.. so i need the lines people to know what line to search

View 1 Replies

Add Values Richtextbox Lines

Mar 4, 2010

Can somebody give me a hint how to multiply each line in a richtextbox with a value?The richtextbox will have ex. 1000 lines with numbers, and I want to multiply all these lines with with a number.

View 1 Replies

Number Lines In A RichTextBox?

Aug 20, 2010

I am working on a Programming notepad in VB.net, How would i add Line Numbers into a RichTextBox? An Example would be like in Notepade ++. Would i need to make a Class for it? I already have a class witch makes a richtextbox that when you type a word like "echo" it will change the color. Can i edit this to make the numbers? [code]

View 1 Replies

Select Multiple Lines Then Push That Out To A Single Variable

Nov 20, 2011

I have a listview box. I load the listview up from a text file and everything is divided into three groups. I need to be able to select multiple lines then push that out to a single variable, separated by commas. Two things are happening that are problematic:

1) If I just have it set to smallicons and no checkboxes, anything I select is highlighted right up until the control loses focus at which point everything un-selects.

2) If I turn on checkboxes, I can click boxes and they stay selected when I lose focus BUT the checkboxes are cut off on the left side of the control. (The checkbox appears to go off the edge of the control.) There's plenty of space in the control for the checkbox and the listed items.

View 4 Replies

[2008] Multiple Lines Of Txt File -> Single String?

Feb 26, 2009

I have a *.txt file which contains instructions and data, with its own comments (preceded by ! ), blank lines, and each instruction begining on a new line, but occassionally using two lines. Each instruction consists of several feilds seperated by a TAB. Finally each instruction ends in a comma. Only a few different instructions are there (10 different ones) but there are many of each. Spanning a good 2500 lines. Comments and blank lines are obviously of no interest to me. I merely need to read the instructions and the data that follows it.

Now, I have successfully used 'System.IO.StreamReader.ReadLine' to go through it line by line, picking out lines begining with certain strings (first 3 characters of a known instruction). All good, I can 'lift' out the lines of interest and store them, for them to be split up later (seperating their fields into instruction, data, etc..) and then into an array.

The problem is, since some of the data fields in these instructions are so long, it spans two lines, before it ends with a comma. Using the above method, I end up with two array entries for a single instruction, since I have stored individual lines rather than a complete instruction. The only similar situation I can tihnk of to explain this, is to pick out sentences in text, and store each one in a string. Of course these end with a period (full stop) but span two or more lines.

I am hesitant to post an example, since its formatting is rather strange, but it is generated that way from 3rd party software, so I cannot change that for my software application.Perhaps there is no 'graceful' way of doing this, meaning I would have to find a way of 'adding' the second line of the instruction, to the string of the first line. Or perhaps reading each line character by character, literally storing every number/letter until I reach a comma.

View 4 Replies

Compare Offset Lines Richtextbox?

Mar 4, 2010

How can I get the sum from richtextbox, starting at line -1 ? But the first line should compare with line1.This code adds a constant to all lines and passes the sum to another textbox.

Dim num1 As Single
Dim sum As Single
Dim Constant As Single = Val(txtLowerTol.Text[code]....

So a third textbox should sum with one line "offset".

View 6 Replies

Delete The Spaces And Lines And @ From RichTextBox?

May 5, 2012

I want Split @ and " " and Chr(13) From RichTextBox? How do I delete the spaces and lines and @ From RichTextBox?

View 4 Replies

RichTextBox On Click Select The Lines?

Jun 20, 2012

when I click on rtb how do I assign clicked line (text of that line) to a variable 'x' and a line below to a variable 'y'? I have so far this

SendKeys.Send("{DOWN}") 'Move cursor to next line
SendKeys.Send("{HOME}+{END}") 'Select the line

View 1 Replies

Save The Richtextbox Lines Into A Listbox?

Oct 6, 2011

I have a Richtextbox.Text in my project and I need to save all text lines into a ListBox.Text .

View 6 Replies

Switching Values In A Richtextbox Lines?

Dec 14, 2009

I have a richtextbox, with random values in each line:

a1,a2,a3
b1,b2,b3
and so on.

This textbox stores the values in a jagged array after lostfocus. What i am trying to do, is for the user to have the ability to 'switch' values in each line if he wishes to do so. Each switched element becomes the first, and the first goes where the old value was. So it's basically a 'swap'. For example:Line1: a1,a2,a3 --> user highlights "a3", right clicks and a contextmenustrip appears with the option 'switch', once he clicks a3 goes where a1 was and a1 goes to a3. So the new Line1 would be: a3,a2,a1. After that if he switches a2, new Line1 would be: a2,a3,a1 Once the switch is done in the array, redisplaying the data in the RTB is not a prob.

View 6 Replies

VS 2008 Multiple Lines In RichTextBox?

Aug 26, 2009

How would I make it so that if someone presses a button, the richtextbox will have more then 1 line of text

RichTextBox1.Text = "Something like this, but 2+ lines"

View 6 Replies

Delete Lines In Richtextbox That Fall Under The Condition?

Sep 11, 2010

Using this [URL] to retrieve both address and place name at the same time ("//span[@class='listingTitle']|//div[@class='address']/text()[normalize-space(.)]"), I can get a list of placenames and addresses like this in a richtextbox:

jh ryder machinery limited
convenience storage ltd 3344 rideau
rd, gloucester, on, k1g3n4
kitchen interiors 146 colonnade rd,
nepean, on, k2e7y1

The first line is bad, it doesnt have an address. Line 2 and 4 are good, they have addresses. So what I could do is:Check each line,if the following line doesnt contain "numbers + ON" then delete line. This will leave me with PlaceNames followed by addresses, which I will then split every other line into a new textbox, (so I have one textbox with placenames, and another with addresses).

View 1 Replies







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