VS 2010 Bold Certain Text In Richtextbox?

Mar 8, 2011

I'm trying to have a feature in my application where every time the user presses the "-" key the word directly before it becomes bold. This much I've been able to figure out:

[Code?

View 4 Replies


ADVERTISEMENT

VS 2008 Bold Text In A RichTextBox?

Jun 18, 2012

on a timer that ticks every 1ms have it:

if RichTextBox1.Contains "begin" then
change "begin" to "begin".bolded
end if

[Code].....

View 6 Replies

Display Text Which Were Read From .xml Database As Color, Italic, Bold, Etc In Richtextbox?

Nov 18, 2010

I need to display my text which were read from .xml database as color, italic, bold, etc. in richtextbox, how do i make a code to do that,The reading and displaying is fine, but when certain word like again is read it should display in italic, and whenever a word like over is read it should be display in bold or underline etc.I use vb.net 2003 and .xml for the database.

View 1 Replies

VS 2010 - Apply A Bold Style To The Text Of A Text Box?

Mar 20, 2011

How can i apply a bold style to the text of a text box?

View 4 Replies

VS 2010 : Make The Text In A Error Message Bold Or Highlighted?

Jul 4, 2011

so one of my error message in my program looks like this MessageBox.Show("You forgot to select a Location!" & ControlChars.CrLf & "You must select a workshop and location then click Add workshop button," & ControlChars.CrLf & "repeat the process few times and" & ControlChars.CrLf & "then click Calculate button to calculate the grand total", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning)and i want the texts "Add workshop" and "Calculate" bold or highlighted when the message box appears, how do i do that?

View 3 Replies

Bold Words In A RichTextBox

Jan 29, 2010

How can I make bold a part from a text in a RichTextBox in VB 2008?

View 16 Replies

VS 2010 Button To Toggle Between Bold/regular Font In A Rich Text Box

Oct 1, 2011

I have a rich text box ('RichTextBox1') and a button ('BoldButton'), and have it set up so that whenever the user highlights some text in the box and clicks the bold button, that text becomes bold. That much I've figured out...

Public Class Form1
Private Sub BoldButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BoldButton.Click
Dim Bold As New Font(RichTextBox1.Font, FontStyle.Bold)
RichTextBox1.SelectionFont = Bold
End Sub
End Class

But I'd also like to add the ability that if the user highlights text that is already bolded, then clicks the bold button, that text will go back to 'regular' font. In other words, I'd like the 'bold' button to be able to toggle between bold and regular font.

View 5 Replies

Richtextbox's Fontstyle Between Bold/italic/underline

Jul 2, 2009

I have created a page where I can toggle the richtextbox's fontstyle between bold/italic/underline. This works flawlessly. However, when I assign it more than one font style I do not know how to tell which ones it has through code. For instance if I bold something I can simply check richtextbox.SelectionFont.Bold but what about if it is bold and italic?

View 2 Replies

C# - Formating First Line Of RichTextBox With Capital Letters And Bold?

Jun 3, 2011

If I have a RichTextBox and want output like the first line is a font with capital letters and bold, while the next line on the contrary, what should I do?

output like this:

MY NAME IS
Diana
My address is
China

View 1 Replies

Richtextbox Control: Bold / Italic Formatting Lost On Save?

Aug 11, 2009

i have a RTB in my application for notes. Ive put it in a panel with a toolstrip and buttons for bold, italic, underline etc.This works fine,

[Code]...

View 14 Replies

VS 2010 : RichTextBox Write Text?

Mar 18, 2011

i make a

TextBox1.Select()
TextBox1.Paste("hello")

This code write "hello" in the textbox1, how make in the RichTextBox = ?I write

RichTextBox1.Select()
RichTextBox1.Paste("hello")

and dont work.

View 2 Replies

VS 2010 Getting Formatted Text From A RichTextBox?

Jan 7, 2011

I've decided to come back to working on an old program of mine, and it's been coming along nicely, but there's this one thing that I can't get working.I have formatting options (Bold, Underline, Italics, Strikethrough) available on my program, and they all work properly. I'm giving users the ability to export all of their text from a single page on the program to a .rtf file. However, the problem I'm experiencing is that each page has numerous RichTextBoxes on it, so I cannot simply use a RichTextBox1.SaveFile() command or something similar. I want to compile all of the text (including formatting) from all of the RichTextBoxes and put it on a single .rtf file. Currently, I'm getting the text from the RichTextBoxes using the RichTextBox1.Text command; unfortunately, that only gives me plain text without formatting. So, what I'm wondering is: how can I get the formatted text from a RichTextBox? Is there any command?

View 6 Replies

VS 2010 RIchtextbox: Text Style (Only In Code)?

Oct 13, 2010

Say I have certain features that makes some things and prints it into a text box, how do I design some of the text at will? like hare:

----------------------------------------------------------
design

no design

----------------------------------------------------------

(i want to change color,font and bold)

View 31 Replies

VS 2010 Select Word In Richtextbox.text

Jan 8, 2012

i have this code to select a word in richtextbox.text

[Code]...

i want to select all the word Hello and color it.how can i do that

View 1 Replies

VS 2010 - Closing A Text File Loaded Into A Richtextbox?

May 30, 2010

I have no problem loading the contents of a text file into a richtextbox(rtb) with the below code. I can then edit and save the contents of the rtb to the file, and clear the rtb.

However, is the file still open? Does loading a text file into the rtb actually open that file? I am asking because I can't find any methods or techniques to close a file that has been loaded into a rtb. Is clearing the rtb the correct procedure?

Public Class Form1
Dim openFile1 As New OpenFileDialog()
Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click

[code].....

View 1 Replies

VS 2010 - Display The Body Text Of A Website Into A Richtextbox

Jan 1, 2012

I have a code to get the all html source into a richtextbox but I need display only the body text. This is the code to get the source:

[Code]...

View 2 Replies

Make A Group Box's Text Bold But Not The Text Of Controls Contained In It?

Feb 17, 2012

I went and created a tab containing a good amount of controls, most of which are contained within what I'll just call the top-level group box. Now I decide I'd like the text of the top-level group box to be bold, but nothing else. When I set the top-level group box's font to bold, however, all of the controls contained within it become bolded as well, which is what I don't want. I can set each individual control's bold property to false, but it seems like there should be an easier way to do this.

View 2 Replies

VS 2010 Replace Text With Image (smiley System) In Richtextbox?

Sep 13, 2010

I have big problem with my CHAT app. I want to add smiles but i have some problems. I using transparent Richtextbox, and when i try to use Regex system to replace text with image it work, but everytime other smiles disappearing, i only see last one. Second thing, i want to use GIF animated smiley and this Regex method don't work with all of these my problems. So i need an other way... Can anybody show how to do this

Imports System.Runtime.InteropServices
Public Class TransparentRichTextBox
Inherits RichTextBox

[code].....

View 11 Replies

Bold Only Certain Text In A Textbox?

May 26, 2010

Is it possible to bold only certain text in a textbox? Also the same for coloring and underlining and such?

View 20 Replies

Bold Text Of A Stringbuilder?

Apr 4, 2007

I'm trying to find out an easy way of bolding a string of my stringbuilder...if that is even possible.The stringbuilder eventually passes all the text to richtextbox..I'd like to bold this string

sb.AppendLine("--------------------------------")
and also
sb.AppendLine("Results for " & finalname)

[code].....

View 6 Replies

How To Bold And / Or Italics Text In RTF

Aug 20, 2010

I want to highlight certain words in a doc in a richtextbox and make it bold.

View 11 Replies

Bold Text Added To Listbox?

May 25, 2010

I have a form that users record some event that is happening. They enter in what different things are occurring, for instance like a Basketball game. When certain events happen "steal", "score", "foul" these will get inputted to a listbox that records the whole game and is timestamped. However for these specific event i want them BOLD . So it would look something like

3:24 STEAL 3:25 #45 stole the ball, passed to #54

Or something like that. How do i get certain items to be bold?

View 7 Replies

FindReplace & Bold Text In A String?

Apr 20, 2009

I am donig some FindReplace in my app and I wanted to know if there was a way to bold the text that i'm "replacing".I've found other posts on Bolding text in a RichTextBox through a While loop but I wanted to do this in a string and the .Find is not an option for Strings.Here's my code sample:

Code:
FormatData = Replace(FormatData, "TEST" , "THIS SHOULD BE BOLD")

View 1 Replies

Format BOLD And ITALIC To Same Text?

Apr 7, 2011

Can we able to format BOLD and ITALIC to the same text?

View 1 Replies

Forms :: How To Set Selected Text Bold

Feb 16, 2009

I just couldn't find the right words to say it but, the thing is, I just want to make a certain word inside a paragraph bold. The word will be automatically set to bold in runtime. See for example the words 'John' shall be all set to bold.

Here is the

tempstr = tempstr.Replace(vbTab, "")
Dim secstr As String = tempstr.Replace(Chr(10), " ")
str = Split(secstr, " ")

[Code]....

the output of the above code is, it only makes the first occurence bold. All other word "John" are just set to Regular text when what I want is to make it all bold.

What is lacking? I used the "for each loop" to visit all the words.

View 2 Replies

Answered Making A My.Settings Bit Of Text Bold?

Aug 12, 2010

I'm using My.Settings to store some text information which will be displayed to the user under certain conditions. What I'd like to know is whether part of the text (not all of it) can be formatted in bold?

The reason I'm storing in My.Settings is because it can be customized but not to the extent where I need to store it in a database. And while I'm at it, is it possible to format parts of MessageBox text and labels in bold, or is this an all or not at all situation i.e. changing the font property?

View 2 Replies

Bold Text String When Adding It To Listbox?

Mar 28, 2011

I'm adding text string into a list box together with data retrieved from text box, and I wanna bold that text but really don't have any idea how to do so.

E.g. listProducts.Items.Add("Product Name - " & textProdName.text)

I just wanna bold that first bit of text in the quotes.

View 3 Replies

Change To Bold A Part Of The Label's Text

Dec 7, 2009

How can i change to bold a part of the label's text? e.g. "&Hello" will appear as: "Hello"
"Hello John" how can i make it appear as: "Hello John"?

View 4 Replies

Format The Text So It Can Be Saved As Courier New Or Bold?

May 18, 2011

i'm writing a simple program that outputs a report to a text file with code similar to below PrintLine(1, "Hello", "World") my question is how to format the text so it can be saved as courier new or bold? frustrated visual basic user

View 2 Replies

Formatting Text (Bold, Italic, Underline) Etc Going Into A RTB

Mar 14, 2011

RTB.text (or .rtf) = "Some text" & "some bold text" & TextBoxA.text & BoldTextBoxB.text.

How to I make "some bold text" bold and the text in "BoldTextBoxB" bold when it goes into my RTB?

I need bold, italic, and underline, but would prefer a general solution.

View 9 Replies







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