Click here to Skip to main content
15,901,205 members
Home / Discussions / C#
   

C#

 
AnswerRe: Cross-instance method invoking Pin
Nader Elshehabi28-Sep-06 2:36
Nader Elshehabi28-Sep-06 2:36 
QuestionWindow Position Pin
Spack27-Sep-06 22:58
Spack27-Sep-06 22:58 
AnswerRe: Window Position Pin
albCode27-Sep-06 23:07
albCode27-Sep-06 23:07 
GeneralRe: Window Position Pin
Spack28-Sep-06 0:34
Spack28-Sep-06 0:34 
AnswerRe: Window Position Pin
faladrim27-Sep-06 23:17
faladrim27-Sep-06 23:17 
Questionbackcolor in load form Pin
faladrim27-Sep-06 21:45
faladrim27-Sep-06 21:45 
AnswerRe: backcolor in load form Pin
jeyapandian27-Sep-06 22:08
jeyapandian27-Sep-06 22:08 
GeneralRe: backcolor in load form Pin
faladrim27-Sep-06 22:50
faladrim27-Sep-06 22:50 
thx, i also found something in the meentime Smile | :)
private void dataGridView1_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e)
{
index = dataGridView1.Rows.GetLastRow(DataGridViewElementStates.Visible);

for (int x = 0; x < index + 1; x++)
{
for (int y = 0; y < colamount; y++)
{
string fout = dataGridView1.Rows[x].Cells[y].Value.ToString();
if (fout == "foute input!")
{
dataGridView1.Rows[x].Cells[y].Style.BackColor = Color.Red;
}
}
}
}
instead of using the load im using addrows, so i dont have to write this when the form loads and when im adding a row Smile | :)
grz
QuestionEncrypting a password Pin
Sonu.T27-Sep-06 21:43
Sonu.T27-Sep-06 21:43 
AnswerRe: Encrypting a password Pin
aamironline28-Sep-06 18:56
aamironline28-Sep-06 18:56 
Questiona problem in UserControl Pin
dehghan198427-Sep-06 21:35
dehghan198427-Sep-06 21:35 
AnswerRe: a problem in UserControl Pin
jeyapandian27-Sep-06 22:05
jeyapandian27-Sep-06 22:05 
GeneralRe: a problem in UserControl Pin
dehghan198428-Sep-06 2:18
dehghan198428-Sep-06 2:18 
GeneralRe: a problem in UserControl Pin
jeyapandian28-Sep-06 18:48
jeyapandian28-Sep-06 18:48 
GeneralRe: a problem in UserControl Pin
dehghan19844-Oct-06 21:38
dehghan19844-Oct-06 21:38 
QuestionRelative path Pin
Parshant Verma27-Sep-06 20:46
Parshant Verma27-Sep-06 20:46 
AnswerRe: Relative path Pin
albCode27-Sep-06 20:59
albCode27-Sep-06 20:59 
QuestionLive mail look in windows form Pin
Mr.Sam27-Sep-06 20:37
Mr.Sam27-Sep-06 20:37 
Questionregular expression for time Pin
saqib8227-Sep-06 20:31
saqib8227-Sep-06 20:31 
AnswerRe: regular expression for time Pin
saqib8227-Sep-06 20:33
saqib8227-Sep-06 20:33 
QuestionHelp! Segmented Download problem! Pin
cilly_brain27-Sep-06 20:08
cilly_brain27-Sep-06 20:08 
QuestionCrystal Report [modified] Pin
tyagi020827-Sep-06 20:08
tyagi020827-Sep-06 20:08 
AnswerRe: Crystal Report Pin
jeyapandian27-Sep-06 20:19
jeyapandian27-Sep-06 20:19 
Questioncan we do this? Pin
sharma sanjeev27-Sep-06 18:59
sharma sanjeev27-Sep-06 18:59 
AnswerRe: can we do this? Pin
eggsovereasy28-Sep-06 4:17
eggsovereasy28-Sep-06 4:17 

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.