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
ADVERTISEMENT
Aug 6, 2011
How can i make the Font Bold in a RTB using buttons?
View 2 Replies
Sep 19, 2011
how to make the settings in my app persistent When i save in the previous run using this
my.Settings.setting_name= some_value
my.Settings.save()
when getting the values using this
some_value=my.Settings.setting_name
i still see the old values in the IDE settings options.How can i make the changes reflect even in the vs ide
View 1 Replies
Apr 14, 2009
I am making an application for my school library, which lets the user see how many books have been borrowed, how many returned, and how many that have not been returned. I am using My.Settings to do this. I have no problem saving the settings, or making them change according to how many books have been returned or borrowed, but when I try to load them into a few labels, I get an error.
[code]...
This is the error I obtain:Conversion from string "Books borrowed so far: " to type 'Double' is not valid.
View 2 Replies
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
Mar 26, 2009
Ok, it's basically all in the description, but I need to make it so there is not a limited amount of bookmarks. I cannot use My.Settings because when i try to select 'My Project' in the Solution explorer, it doesn't work
View 1 Replies
May 11, 2010
if we say i have a program and i want it to launch another .exe So the code of them being able to choose where it's located is "openfiledialog".But can i make it save the setting somehow, so it makes a small document/text-file thingy so it can read the locations from the file ?Or is there someway that the program remembers it ? I want it to ask for a file location first, and then next time pushing the button "start" it remembers the location ?
View 4 Replies
Mar 20, 2011
How can i apply a bold style to the text of a text box?
View 4 Replies
Aug 19, 2010
How would i go about making a form that handles a different forms settings?ei, the Button Forecolours ect.
View 5 Replies
May 24, 2011
I am working on making a bookmarks and history interface for my web browser so basicall for the bookmarks the code is
CODE:
Now im assuming that this is not all that is needed.. (this is put inside a sub) however i dont know how to set up the settings so that it will keep the bookmarks into my list after the program closes...
View 6 Replies
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
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
Aug 20, 2010
I want to highlight certain words in a doc in a richtextbox and make it bold.
View 11 Replies
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
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
Apr 7, 2011
Can we able to format BOLD and ITALIC to the same text?
View 1 Replies
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
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
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
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
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
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
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
Feb 6, 2012
I want to change certain words in line as bold and remaining words as normal case. And I want to display this kind of text in dialog box. I want to achieve it in vb 2008.
View 3 Replies
Jun 9, 2011
IN VB.NET (VISUAL STUDIO 2005)I HAVE taken one textbox with some message and want to bold it by using chkbox control when checkbox is checked the text in textbox should be bold otherwise it is regular.i tried the code too many different ways but till now problem is not solved
View 1 Replies
Feb 10, 2009
There is a label control on .aspx The text "hello" comes from database i.e. label1.text = "hello" Note that, I do not have permission to change the UI code.
I would like to alter the value of the field in the table to show the text as bold i.e. <strong>
To have the text displayed as highlighted i.e. bold, I manually modified the text inside the field of the table to show
<strong>hello</strong>
Is this ok? It does not seem to work because in the label control I see: <strong>hello</strong>
View 8 Replies
Jun 2, 2011
What is the standard / best practices way to achieve the effect of text formatting within a label in a standard .NET Windows Forms Application? For example, I want a label I would programmatically change. However, I might want a particular word in the label to be bold.
View 2 Replies
Mar 25, 2010
I have a vb.net project containing the report viewer control that has a dataset bound to it. I have designed a letter in report viewer and need to highlight a few words by bolding and underlining the words. Can this be done? All I seem to be able to do is bold the textbox control, but then every text that resides in the text box will be bold and underlined. I cannot create a static label because the names may increase or decrease in size as well.
View 7 Replies
Dec 20, 2009
i am using the following code to resize text.all you have to do is hold the Shift key down and scroll the MouseWheel either up or down..[code]i cannot seem to figure out, is how to keep the font options that were previously set ex.if i set a word to bold, italic, or underline, and use my shift + mousewheel to resize all or just selected text, all the options are reset to default, meaning, no options as previously selected..
View 7 Replies
Dec 7, 2010
using vb.net 2005, creating a windows form.
I need to programmatically make part of a string bold, how to do this?
EX: here is the asp.net version of what i need
Dim aString As String = "<b>Product Details:</b> here are the details of the product"
but I need to do this for a windows form, is there a good way to do this?
View 2 Replies