Changing Font Colour On Alternate Rows In GridView
Aug 16, 2011
I'm looking for a way to change the font colour on alternate rows within a datagrid. e.g. normal row would be green and the alternate row would be blue. I can change either by using
me.datagrid.Styles.Row.Forcolour
me.datagrid.Styles.AlternatingRow.Forcolour
The problem is that I am having trouble using both of them together as I need to manipulate both colours. I have created a HtmlRowPrepared event and have been setting them there, however, If I set the Row.Forcolour first, it will over ride the AlternatingRow.Forcolour and vice versa. This needs to be done via SEVER SIDE code only as the colour choices are held in the database.
View 2 Replies
ADVERTISEMENT
Apr 11, 2009
I'm creating a basic text editor and I wish to include the option to change the font, font colour and background colour of the text box. Is there a way I can ask VB to display a font/font colour selection box or do I have to populate a combo box and code it all myself?
View 2 Replies
May 6, 2009
Basically,I would like to bind the data into datagridview which called PODetailsGrid during page_load. After the data had been bind into the gridview,I would like to make alternate color in each row. For example, the font color for row1 is Black,then second row should be Red,then third row will be Black again and so on..
Code: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
GeneratePODetailsView(GenerateDataSource())
End Sub
[code]....
View 3 Replies
Sep 21, 2010
I'm searching for a way to change the font size of selected text in a RichTextBox (rtf) having different font families (e.g. Arial and MS SansSerif) and font styles (underline, bold...) using the FontDialog, but without changing the families and styles. The following code resets all the font attributes, which is not what I want:
[Code]...
View 5 Replies
Jul 11, 2011
One of the fields in a listview control is a calculated integer field. Is there any way that when the value is less than 0, the font colour of the whole row or the column changed to red?
View 1 Replies
Mar 23, 2012
How do you change the colour of the labels(not sure what the correct name is) in a Microsoft Chart Control in VB.
By "labels" I mean the text that is overlaid on every column in a StackedColumn chart.
You can change the Axis labels with the following:
<AxisY LineColor="Red">
<LabelStyle ForeColor="Red" />
</AxisY>
[Code].....
What is the equivalent to target the labels?
View 1 Replies
May 7, 2010
if i have ten textbox. in each with different a b c d e f g h i.. i want to retype it and the colour wil change. lets say i backspace a and when i retype it will change to green.
View 2 Replies
May 7, 2010
my puzzle have random characters. and i want the colour of the character to change when i retype it. Lets say R... i backspace and retype r but there's coulour. can i know how?
View 13 Replies
Mar 26, 2010
I am looking for a regular expression that can convert my font tags (only with size and colour attributes) into span tags with the relevant inline css. This will be done in VB.NET if that helps at all.I also need a regular expression to go the other way as well.To elaborate below is an example of the conversion I am looking for:
<font size="10">some text</font>
To then become:
<span style="font-size:10px;">some text</span>
So converting the tag and putting a "px" at the end of whatever the font size is (I don't need to change/convert the font size, just stick px at the end).The regular expression needs to cope with a font tag that only has a size attribute, only a color attribute, or both:
<font size="10">some text</font>
<font color="#000000">some text</font>
[code]....
I also need another regular expression to do the opposite conversion. So for example:
<span style="font-size:10px;">some text</span>
Will become:
<font size="10">some text</font>
As before converting the tag but this time removing the "px", I don't need to worry about changing the font size.Again this will also need to cope with the size styling, font styling, and a combination of both:
<span style="font-size:10px;">some text</span>
<span style="color:#000000;">some text</span>
[code]....
I am extracting basic HTML & text from CDATA tags in an XML file and then displaying them on a web-page.The text also appears in a rich-text editor so it can be edited/translated, and then saved back into a new XML file. The XML is then going to be read by a flash file, hence the need to use old-fashioned HTML.
The reason I want to convert this code is mainly for display purposes. In order to show the text sizes correctly and for it to work with my rich text editor they need to be converted to XHTML/inline CSS. The rich text editor will also generate XHTML/inline CSS that I need to convert 'back' to standard HTML before it is saved in the XML file.I know the temptation will be to tell me a number of different ways to set up my code to do what I want but there are so many other permutations I haven't even mentioned which have forced me down this route, so literally all I want to do is convert a string containing standard HTML to XHTML/inline CSS, and then the same but the other way round.
View 6 Replies
Jun 21, 2010
RichTextBox1.SelectionStart = RichTextBox1.Find("Not Found")
RichTextBox1.SelectionColor = Color.Red
that is my code.. my problem is in my richtextbox1, there are many line that contain "Not Found". So how can i change colour for all of that text to red colour? my code only work only with a single line that contain "Not Found".
View 2 Replies
Dec 4, 2010
i am creating an rtf editor and i am trying to Change the colour of selected text. at the moment my code changes the colour of the whole text, but i want to be able to highlight my text and have 2 seperate colours, below is my code. Have tried to add .selectedText in but it says it 'SelectedText' is not a member of 'System.Windows.Forms.ColorDialog'.
ColorDialog1.Color = Editor.ForeColor
If ColorDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
Editor.ForeColor = ColorDialog1.Color
End If
View 4 Replies
May 28, 2012
I know this is a really noob question but in my program when my button is enabled true/false I change the colour so i was thinking if there is an easier way to do this? or is the following the best way?
[Code]....
View 2 Replies
Mar 30, 2011
I've been searching for quite a long time how to do this. I don't know how to set the colour of a row item in the GridView (WPF) using code I don't want an example in XAML. My data comes from me loading & pulling apart an XML file. I then put it into a small class with properties and those are bound to the column to populate the data. Later, it can begin some functions on the table's data. Because this takes at some times over 10 minutes it's on a thread & I would like to colour the rows I've completed parsing depending on the result. (IE: Red for HTTP error, Orange for XML parsing error ect...)This is the GridView's XAML:[code].....
I am then parsing the data using the url column. I am currently changing the selected item as I go through. I want to know if theres something I can do to change the specific item. Let's assume I'm on row 500: I use: setSelected(i) which uses Dispatcher to safely change the selected row. Is there anything I can do to change the colour as well?
View 1 Replies
Jan 20, 2011
I am working on Treeview control and Gridview Control VB.NET08. In the Treeview i have Parent and Child Nodes. Like:
- 31
3101
3102
[Code].....
View 6 Replies
Jan 19, 2011
I am working on Treeview control and Gridview Control VB.NET08. In the Treeview i have Parent and Child Nodes. Like: [Code] Comparing the Parent Node text and first two digits in the Column values. I want to add rows inbetween the gridview rows based on the parent and Child Nodes. If i expand the First Parent Node Called "31" then according to the Number of Child Nodes (for first parent node(31) there are 5 child nodes.) add rows in the gridview.
These New rows should be add under the 31-xxxx. If i expand the 32 Parent Node based on number of Child Nodes, add rows under the 32-xxxx. [Code] I am getting the rows in the end of the Gridrow not in the Specific row.
View 1 Replies
Jan 18, 2012
I am currently using DevExpress 10.2 within Visual Studio 2010. In a previous question I was trying to print the current user view of a DevExpress GridControl with the user's choice of expanded or collapsed master rows and/or group sections. I was told this was not possible at this time. I have now decided to use the following code:
[Code]...
View 1 Replies
Jan 24, 2011
First I am using 'Microsoft Visual Studio 2010' and am making a 'windoms forms application'. I am wishing to implement a way of changing the text colour through out the whole application. I have managed to put on a customisable background using
Quote:
CODE:
I know I'll have to change the 'BackColor' bit but I don't know what to. Is there something that turns all text on the form one colour or do I have to do it label by label?
Also I am can't figure out how to rotate labels to display text at a 60 degree angle (to display along the edge of an equilateral triangle) And for the triangle I have drawn it using lines which move independently from each other, is there anyway to 'group' these lines together so they are fixed.
View 3 Replies
Nov 28, 2009
Is there any way to change the default colour to the highlight when a listview row is selected? Apparently the default blue colour causes some problems for some users who have some visual eyesight problems. They didn't tell me what colour they wanted but they did indicated the blue is annoying.
View 2 Replies
Nov 1, 2009
im trying to make an ovalshape change colour when i click a button?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "hello" Then
OvalShape1.FillColor = Color.Red
[code]....
View 1 Replies
Mar 9, 2012
I have a button (btnAdd) that adds the content of a textbox (txtName) to a textblock (lblName). I want to add a date to the textblock when btnAdd is pressed but I want it to be a different font size and colour. So far my code looks like
lblName.Text = txtName.Text " " + DateTime.Now
I only want DateTime.Now to be a different size and colour. Is this possible? Instead of a label I need to display it in a listBox. My new code:
listBox1.Items.Add(txtName.Text " " + DateTime.Now)
View 1 Replies
Apr 29, 2009
I am currently working on a VB.NET project and the hardest thing that I am having trouble with is that everything is black and blue. Having worked a lot with C#, I really like the way that types are colored differently.
I have tried going in and having a look at the "Tools > Options > Fonts and Colors" and the various "User Types" under "Display Items" is set to a different colour but its not reflecting that colour in the text editor.
View 3 Replies
Jul 6, 2011
I am making a diary Form in VB.NET to do this I am using a listview with two columns.
Column 1 consists of a list of time and column 2 is the description
Can I change the colour of certain cells in column 2 only. So when I read in the data from the database it reads in the description and then puts the data in the relevant time slot but I want the recent cells of the description column to be a different colour.
View 5 Replies
Aug 3, 2009
I want to change the font & style in a text editor so it would look something like this:I want TO CHANGE THE FONT and the STYLE
Private Sub btnBold_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBold.Click
If Not TextEditor.Font.Bold Then
[code].....
View 3 Replies
Jul 10, 2009
I'm trying to change the font in a RichTextBox, but it's not working:
RichTextBox.Font.Name = "Times New Roman"
this apparently read only
With RichTextBox
.SlectionFont = "Times New Roman"
End With
here I need a System.Drawing.Font class and not a string
View 8 Replies
Jun 29, 2009
I want to change the font of text in rtb using code, not thru font dialog. e-g if i want to write all lowercase letters in "Arial" and all uppercase letters in "Times New Roman" then how can i do that. i hav tried using Text1.Font = New Font("Arial", 36, FontStyle.Regular) but it changes the font of whole text.
View 3 Replies
May 18, 2009
I am trying to do a small application using WPF. I have a button and label controls in my form and I want to chage the font style of those. It is not like the normal windows forms to change the font. How can I change the font at design time.
View 14 Replies
Apr 16, 2012
How can I change font color of a string. I set the fore color properties of the label holding the string but seems that only works when the string is displayed in that label. Is there a way of setting the color of a string itself such that it displays any where with that color by default. I am actually sending this string as email but wanted to format it in a way that it will display differently however it doesn't.
View 1 Replies
Apr 6, 2009
Changing font Style Using Code
View 1 Replies
Jul 25, 2010
am writing a program in vb.net 2008 ... I want the user to be able to change the font on a different form, however any code that I try and write comes up with the error code property is read only.. I hope I have given sufficient detail... oh one more thing I am trying to use fontdialog from the tool box.
View 14 Replies
Oct 31, 2009
I'm trying to figure out how to change the font in a RichTextBox without having to select the text I want to change first. I know I can select text and change it like this:
RichTextBox1.SelectionStart = RichTextBox1.Find("working")
Dim tfont As New Font("Arial", 16, FontStyle.Regular)
RichTextBox1.SelectionFont = tfont
What I want to do is set a font and then any text added to the richtextbox will use that font. Then I want to set another font and all text after that point will use that font and so on. I'm adding text to the RichTextBox with code, but I'd eventually like to add a RichTexBox to an app where the user enters the text and can change fonts like a word processor.What I'm try to accomplish would go something like this:
' Set the font for the header here
rtbPrint.Text = rtbPrint.Text & mHeader & vbCrLf
'Set the font for the body here
rtbPrint.Text = rtbPrint.Text & mBody & vbCrLf
View 3 Replies