Click here to Skip to main content
15,915,857 members
Home / Discussions / C#
   

C#

 
QuestionListView Scrolling Pin
Zaegra13-Oct-09 7:32
Zaegra13-Oct-09 7:32 
AnswerRe: ListView Scrolling Pin
Ian Shlasko13-Oct-09 8:08
Ian Shlasko13-Oct-09 8:08 
QuestionRe: ListView Scrolling [modified] Pin
Zaegra13-Oct-09 8:12
Zaegra13-Oct-09 8:12 
AnswerRe: ListView Scrolling Pin
Ian Shlasko13-Oct-09 10:16
Ian Shlasko13-Oct-09 10:16 
AnswerRe: ListView Scrolling Pin
Luc Pattyn13-Oct-09 13:55
sitebuilderLuc Pattyn13-Oct-09 13:55 
Questionserial port communication with multithreading Pin
Member 647306613-Oct-09 5:26
Member 647306613-Oct-09 5:26 
AnswerRe: serial port communication with multithreading Pin
Luc Pattyn13-Oct-09 5:54
sitebuilderLuc Pattyn13-Oct-09 5:54 
GeneralRe: serial port communication with multithreading Pin
Md. Marufuzzaman13-Oct-09 6:02
professionalMd. Marufuzzaman13-Oct-09 6:02 
GeneralRe: serial port communication with multithreading Pin
Member 647306614-Oct-09 5:51
Member 647306614-Oct-09 5:51 
GeneralRe: serial port communication with multithreading Pin
Luc Pattyn14-Oct-09 6:00
sitebuilderLuc Pattyn14-Oct-09 6:00 
GeneralRe: serial port communication with multithreading Pin
Member 647306614-Oct-09 10:55
Member 647306614-Oct-09 10:55 
GeneralRe: serial port communication with multithreading Pin
Luc Pattyn14-Oct-09 11:15
sitebuilderLuc Pattyn14-Oct-09 11:15 
QuestionMaskedTextBox mask problem Pin
EnkelIk13-Oct-09 5:22
EnkelIk13-Oct-09 5:22 
AnswerRe: MaskedTextBox mask problem Pin
dan!sh 13-Oct-09 5:33
professional dan!sh 13-Oct-09 5:33 
AnswerRe: MaskedTextBox mask problem Pin
Alan N13-Oct-09 5:57
Alan N13-Oct-09 5:57 
GeneralRe: MaskedTextBox mask problem Pin
EnkelIk13-Oct-09 20:51
EnkelIk13-Oct-09 20:51 
QuestionCodeproject forum ... ? Pin
devboycpp13-Oct-09 5:18
devboycpp13-Oct-09 5:18 
AnswerRe: Codeproject forum ... ? Pin
Md. Marufuzzaman13-Oct-09 5:53
professionalMd. Marufuzzaman13-Oct-09 5:53 
GeneralRe: Codeproject forum ... ? Pin
Kevin Marois13-Oct-09 6:42
professionalKevin Marois13-Oct-09 6:42 
AnswerRe: Codeproject forum ... ? Pin
Abhijit Jana13-Oct-09 7:18
professionalAbhijit Jana13-Oct-09 7:18 
Questiongenrate data is not display in report viewer Pin
vivek_s_IT13-Oct-09 2:41
vivek_s_IT13-Oct-09 2:41 
AnswerRe: genrate data is not display in report viewer Pin
Searril13-Oct-09 3:20
Searril13-Oct-09 3:20 
AnswerRe: genrate data is not display in report viewer Pin
Md. Marufuzzaman13-Oct-09 4:44
professionalMd. Marufuzzaman13-Oct-09 4:44 
QuestiondataGridView problems Pin
Steve5177113-Oct-09 2:30
Steve5177113-Oct-09 2:30 
AnswerRe: dataGridView problems Pin
Manas Bhardwaj13-Oct-09 2:40
professionalManas Bhardwaj13-Oct-09 2:40 
This shows that it has the null value in it...

try with this code, this will tell you whenever you have the null value. Smile | :)

for (int i = 0; i < dataGridView1.Rows[e.RowIndex].Cells.Count; i++)
{
dataGridView1[i, e.RowIndex].Style.BackColor = Color.Green; // works for all 3 rows

if(dataGridView1[i, e.RowIndex] == null)
	MessageBox.Show("Somehow, I have the null value here...");
else
	MessageBox.Show(dataGridView1[i, e.RowIndex].Value.ToString());
}


Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.

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.