Tagged Questions
The backcolor tag has no wiki summary.
7
votes
4answers
4k views
jquery tablesorter plugin - retain alternative row colors
i took an html table that i am applying alternative row colors and i just added jquery table sorter on it so users can sort the table.
the issue is that the alternative row colors are all messed up ...
5
votes
3answers
5k views
How to change listview selected row backcolor even when focus on another control?
I have a program which uses a barcode scanner as input device so that means I need to keep the focus on a text box.
The program has a listview control and I select one of the items programatically ...
5
votes
3answers
1k views
When I change a .NET Button's BackColor back to its original value, it doesn't look the same anymore
I have a button which I wanted to "flash" briefly to get the user's attention. I figured the easiest way would be to change the Button's BackColor property to another color, and then switch it back ...
4
votes
2answers
127 views
.NET TextBox BackColor issue
On a .NET page, I have a textbox. If I don't change the BackColor property, it looks flat. However, when using BackColor, e.g.:
txt.BackColor = System.Drawing.Color.Yellow;
the look changes to some ...
4
votes
6answers
413 views
How do I program a “flash” effect when updating text boxes in a windows form with C#?
What I have is a Windows form, in C#, with 7 text boxes. Each text box updates 2 or 3 others when its value is changed and accepted. What I want to do is somehow take those text boxes that need to be ...
3
votes
1answer
252 views
C#: Changing Button BackColor has no effect
I'm having a problem with C# buttons in Windows Forms.
I've create a number of buttons programmatically and add them to a form afterwards.
Interestingly, every modification to those buttons ...
3
votes
2answers
2k views
How to change the backcolor of a listview subitem using its own value
How can I programmatically change the back color of a single cell in a listview using its own value?
The values in the ColorFlag Column Came from the database.
Here is my code:
foreach(DataRow dr ...
2
votes
4answers
185 views
Change the back color of any open forms runtime in C#
according to this topic
i have a menustrip in a C# (win app) project , that for clicking each item of it,a form opens!
as i said i have 37 form and i want to do this : whenever a form opens inside ...
2
votes
1answer
347 views
Text in MS Charts gets “blocky” when BackColor is transparent
When settings BackColor = Color.Transparent, this is the picture I end up with from Microsofts asp.net chart control
http://login.competencetool.se/blockychart.bmp
If I don't set any ...
2
votes
1answer
215 views
change backcolor of part of text using javascript?
i have some part of text with html tags , for example
<b>something</b>
i select some part of text for example "some".
with getSelection().getRangeAt(0); i get position of caret ...
2
votes
3answers
3k views
How to change the backcolor of a row in a DataGridView based on the value of a cell?
Say I have a DataGridView which shows the content of a DataTable.
I want to be able to set the backcolor of a row based on the value of a cell in this row.
Note that the cell in question is in a ...
1
vote
1answer
58 views
Why doesn't toolstriplabel's backcolor property change during design time or run time?
I need to have a toolstrip label and its back color changed during runtime, but no matter what I do. It just won't change its backcolor, even though they give option to change its backcolor. Why is ...
1
vote
2answers
180 views
win 7 can't paint combobox
I have my program that paint the backcolor of a combobox column in a datagridview.
I win xp everything works fine, but in win 7 the comboboxes have the gray color:
if you look the shot, you see that ...
1
vote
1answer
260 views
How can I make the BackColor of a Label update faster?
EDIT:
I have managed a workaround. Now on MouseEnter, I set the focus to the button, and I change the MouseOverBackColor to the button's current BackColor; I also have an event handler (in the parent ...
0
votes
1answer
25 views
.net datagridview cell transparent back color
I have a 4x4 datagridview. Every cell has a special backcolor.
So I want the selected cell background to be transparent. I googled about it, but I dont find a valid solution. when I set the selection ...
0
votes
1answer
78 views
Cannot change UITableView back color in iPad UI
When I create UIViewController for iphone I can easily change UITableView backcolor, but when I create for ipad I cannot change UITableView backcolor. Why???
I use XCode Version 4.2
0
votes
2answers
465 views
Label backcolor not going transparent
I've set a label's BackColor property to 'Transparent' in windows form but its just White? It's not going transparent?
Anyone know why this is happening?
0
votes
1answer
92 views
C# ListViewItem BackColor doesn't show on some computers with ListView flicker fix
I'm using the following code to disable flickering in my list view:
System.Reflection.MethodInfo oMethod = oListView.GetType().GetMethod("SetStyle", System.Reflection.BindingFlags.Instance | ...
0
votes
2answers
402 views
Form background color or image stuck as white
I started teaching myself C# a week ago. I started by writing Tetris to get myself acquainted with the language. I got the main game mechanics working by painting onto presized bitmap and displaying ...
0
votes
1answer
20 views
Using C# backcolors
In C#, I have a control that wants it's backcolor set by way of an Uint value.
With out running 10's of thousands of permiatations, how do I know what value to use for Light Tan, Dark Green, etc?
0
votes
1answer
434 views
DataGridView Cell Backcolor not set
I have a DataGridView with four columns. The first three are returned back as an array: red, green and blue. All values are between 0 and 255. I've programmatically added a column called "Colour". I'd ...
0
votes
1answer
237 views
0
votes
3answers
379 views
How to achieve a transparent BackColor on an original WinForms control?
I'm about to lose my mind here.
Why won't the checkbox control blend with what's behind it?
The question applies to all WinForms controls, but I'm using this as an example.
A picture is worth a ...
0
votes
1answer
690 views
VB.Net Clear or Reset form BackColor?
Hey guys!
A simple question, but simple part of learning.
How do I clear/reset the BackColor of a windows application form? For instance, I have a set of radio buttons, each one changes the ...
0
votes
0answers
586 views
Vba - Set transparent color or direct hex value of label backcolor?
I want to insert a label into a PowerPoint presentation. But I don't want any background on there, or, have the background color be the same as the what is underneath.
I've found that 082F68 is the ...
0
votes
1answer
241 views
Changing TreeNode.BackColor causes full TreeView redraw
I set the BackColor of specific TreeNodes in a TreeView as a hint to the user that something interesting has happened to the node while they are using the application. However, when I set BackColor, ...
0
votes
1answer
85 views
Passing setting value back to form that had called the form
This is what I have..
Dim frmSettings As New frmOptions
frmSettings.ShowDialog(Me)
frmSettings is a settings form that you can choose the color for background of form1(Me). But I cannot access the ...
0
votes
1answer
279 views
Rectangular BackColor of selection in RichTextBox
Background:
I'm going to start studying/coding at the local university's library. Since I'm not a student, I won't be able to utilize their wireless internet access. Since StackOverflow is such a ...
0
votes
2answers
1k views
BackColor of ListView ColumnHeaders
Is there a way to set the BackColor of the ColumnHeaders of a ListView?
0
votes
1answer
966 views
Change color of scrollbar of listbox in ASP.NET
How to change the color of scrollbar of a listbox in ASP.NET?