| | |
Chnange Cell Color + GridView
Please support our VB.NET advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Mar 2008
Posts: 324
Reputation:
Solved Threads: 7
I want to change the value & its backcolor of cell.
On Button1_Click,I m adding records to the Gridview.
On Button3_Click,I want to chnage the value of cell & its backcolor.
Suppose two Rows & two columns are there in Grdiview
1 10
2 20
Suppose I want to change the value of item(Row=2,Colomn=2) to 100. I change the value but i m not ablt to change the backcolor.Can somebody tell me?
On Button1_Click,I m adding records to the Gridview.
On Button3_Click,I want to chnage the value of cell & its backcolor.
Suppose two Rows & two columns are there in Grdiview
1 10
2 20
Suppose I want to change the value of item(Row=2,Colomn=2) to 100. I change the value but i m not ablt to change the backcolor.Can somebody tell me?
VB.NET Syntax (Toggle Plain Text)
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try Dim row0 As String() = {TextBox1.Text, TextBox2.Text} DataGridView1.Rows.Add(row0) row0 = Nothing Catch ex As Exception MsgBox(ex.Message) End Try End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Try DataGridView1.Item(1, 1).Value = 100 'What to write to chnage the cell color Catch ex As Exception MsgBox(ex.Message) End Try End Sub
![]() |
Similar Threads
- set DataGridView cell color during Rows.Add ?? (C#)
- Changing the cell color by clicking on the cell in gridview (ASP.NET)
- Stringgrid cell color (Pascal and Delphi)
- how to format a Datagrid ?? (C#)
- Adding color to GridView (ASP.NET)
Other Threads in the VB.NET Forum
- Previous Thread: Recent Interview Question
- Next Thread: Timeout Expired
| Thread Tools | Search this Thread |
.net .net2008 30minutes 2005 2008 access account arithmetic array basic bing button buttons center check code combobox component connectionstring crystalreport data database databasesearch datagrid datagridview date design dissertation dissertations dropdownlist excel fade file-dialog filter folder ftp generatetags google gridview hardcopy images input insert intel internet mobile monitor ms net networking objects output panel passingparameters peertopeervideostreaming picturebox picturebox1 port position print printing problem problemwithinstallation project save searchbox searchvb.net select serial shutdown soap survey table tcp temperature text textbox timer timespan toolbox trim update updown user vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web winforms wpf year





