Click here to Skip to main content
15,900,389 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: printing failes... Pin
Dave Kreskowiak26-Feb-09 6:04
mveDave Kreskowiak26-Feb-09 6:04 
QuestionEmail through VB code Pin
RajaAhmed25-Feb-09 23:35
RajaAhmed25-Feb-09 23:35 
AnswerRe: Email through VB code Pin
Jay Royall26-Feb-09 0:24
Jay Royall26-Feb-09 0:24 
Questionhow to convert any string to unicode encoding in vb.net code Pin
ahlamissa25-Feb-09 23:18
ahlamissa25-Feb-09 23:18 
AnswerRe: how to convert any string to unicode encoding in vb.net code Pin
ABitSmart26-Feb-09 0:04
ABitSmart26-Feb-09 0:04 
AnswerRe: how to convert any string to unicode encoding in vb.net code Pin
Rupesh Kumar Swami26-Feb-09 1:54
Rupesh Kumar Swami26-Feb-09 1:54 
QuestionHow to Change Cell Backcolor if Datagridview2.item.value = Datagridview1.item.value [modified] Pin
ikanbobo25-Feb-09 23:15
ikanbobo25-Feb-09 23:15 
AnswerRe: How to Change Cell Backcolor if Datagridview2.item.value = Datagridview1.item.value [modified] Pin
Sebastian Br.26-Feb-09 1:08
Sebastian Br.26-Feb-09 1:08 
Colouring the background of a DataGridView-Cell works as following listed:

Dim cs As DataGridViewCellStyle
cs = New DataGridViewCellStyle
cs.BackColor = Color.Green
aDataGridView.Rows(r).Cells(c).Style = cs

Note, that the above code overwrites existing CellStyles you already assigned to a cell (maybe via the GUI-Design-Tool and so on).

For a complete row, you could use instead:

aDataGridView.Rows(r).DefaultCellStyle.BackColor = Color.Green

modified on Thursday, February 26, 2009 7:45 AM

GeneralRe: How to Change Cell Backcolor if Datagridview2.item.value = Datagridview1.item.value [modified] Pin
ikanbobo26-Feb-09 2:38
ikanbobo26-Feb-09 2:38 
GeneralRe: How to Change Cell Backcolor if Datagridview2.item.value = Datagridview1.item.value Pin
Sebastian Br.26-Feb-09 3:00
Sebastian Br.26-Feb-09 3:00 
GeneralRe: How to Change Cell Backcolor if Datagridview2.item.value = Datagridview1.item.value Pin
ikanbobo26-Feb-09 3:22
ikanbobo26-Feb-09 3:22 
Questiondeploying VB.net2005 project with Crystal report [modified] Pin
hrishiS25-Feb-09 23:11
hrishiS25-Feb-09 23:11 
AnswerRe: deploying VB.net2005 project with Crystal report Pin
Dave Kreskowiak26-Feb-09 5:52
mveDave Kreskowiak26-Feb-09 5:52 
GeneralRe: deploying VB.net2005 project with Crystal report Pin
hrishiS26-Feb-09 17:11
hrishiS26-Feb-09 17:11 
GeneralRe: deploying VB.net2005 project with Crystal report Pin
Dave Kreskowiak27-Feb-09 1:35
mveDave Kreskowiak27-Feb-09 1:35 
GeneralRe: deploying VB.net2005 project with Crystal report Pin
hrishiS1-Mar-09 17:28
hrishiS1-Mar-09 17:28 
GeneralRe: deploying VB.net2005 project with Crystal report Pin
Dave Kreskowiak2-Mar-09 2:00
mveDave Kreskowiak2-Mar-09 2:00 
Question[Message Deleted] Pin
hkjghkj125-Feb-09 21:20
hkjghkj125-Feb-09 21:20 
AnswerRe: get the first digit Pin
alx.n25-Feb-09 21:45
alx.n25-Feb-09 21:45 
GeneralRe: get the first digit Pin
Luc Pattyn26-Feb-09 3:17
sitebuilderLuc Pattyn26-Feb-09 3:17 
QuestionAccessing File Pin
AliAmjad25-Feb-09 21:02
AliAmjad25-Feb-09 21:02 
AnswerRe: Accessing File Pin
alx.n25-Feb-09 21:36
alx.n25-Feb-09 21:36 
Questionhow to know the form is loaded into memory or not in vb6.0 Pin
Ashutosh Shivnekar25-Feb-09 20:31
Ashutosh Shivnekar25-Feb-09 20:31 
AnswerRe: how to know the form is loaded into memory or not in vb6.0 Pin
ABitSmart26-Feb-09 0:16
ABitSmart26-Feb-09 0:16 
QuestionWindows service Error:1053 Pin
samsonx25-Feb-09 19:25
samsonx25-Feb-09 19:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.