Click here to Skip to main content
15,888,461 members
Home / Discussions / C#
   

C#

 
GeneralRe: Application that can't be terminate or kill Pin
Dan Neely26-Jul-07 2:17
Dan Neely26-Jul-07 2:17 
GeneralRe: Application that can't be terminate or kill Pin
leckey26-Jul-07 4:05
leckey26-Jul-07 4:05 
JokeRe: Application that can't be terminate or kill Pin
Luc Pattyn26-Jul-07 6:28
sitebuilderLuc Pattyn26-Jul-07 6:28 
GeneralRe: Application that can't be terminate or kill Pin
J4amieC26-Jul-07 3:51
J4amieC26-Jul-07 3:51 
AnswerRe: Application that can't be terminate or kill Pin
Sam_c26-Jul-07 3:31
Sam_c26-Jul-07 3:31 
AnswerRe: Application that can't be terminate or kill Pin
Ihtesham8-Mar-10 21:25
Ihtesham8-Mar-10 21:25 
QuestionWCF performance Pin
qmiswax26-Jul-07 0:53
qmiswax26-Jul-07 0:53 
QuestionDataGridView and List Pin
sangramkp26-Jul-07 0:40
sangramkp26-Jul-07 0:40 
Hi I am working with DatagridView and List<>:
my code goes as follows

List<seatentity> seat = scs.GetSeats();//Returns List<>
SeatEntity seobj= new SeatEntity();
foreach (DataGridViewRow row in dataGridView1.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
foreach (SeatEntity se in seat)
{
seobj.SeatId = se.SeatId.ToString();
seobj.RowId = se.RowId.ToString();
if (cell.ColumnIndex.ToString() == seobj.SeatId.Substring(14) && cell.RowIndex.ToString() == seobj.RowId.Substring(12))
{
cell.Style.BackColor = Color.Green;
//MessageBox.Show(cell.ColumnIndex.ToString());
//MessageBox.Show(cell.RowIndex.ToString());
}

}
}
}

While I execute this code the out put is First row of the datagrid only....
But requirement is It should give more rows....

Help me.....Rose | [Rose]
AnswerRe: DataGridView and List Pin
kubben26-Jul-07 1:39
kubben26-Jul-07 1:39 
QuestiontableAdapters and transactions Pin
JoZ CaVaLLo26-Jul-07 0:11
JoZ CaVaLLo26-Jul-07 0:11 
QuestionWindows application developped using C#.Net with .Net 2005 Pin
indian14326-Jul-07 0:09
indian14326-Jul-07 0:09 
QuestionDouble characters in regexp Pin
Markus Pylvnen26-Jul-07 0:08
Markus Pylvnen26-Jul-07 0:08 
AnswerRe: Double characters in regexp Pin
Tormod Fjeldskaar26-Jul-07 3:06
Tormod Fjeldskaar26-Jul-07 3:06 
GeneralRe: Double characters in regexp Pin
Markus Pylvnen26-Jul-07 19:18
Markus Pylvnen26-Jul-07 19:18 
AnswerRe: Double characters in regexp Pin
snorkie26-Jul-07 3:11
professionalsnorkie26-Jul-07 3:11 
QuestionSaving data to Disk ... Pin
Jalpesh B. Patel26-Jul-07 0:07
Jalpesh B. Patel26-Jul-07 0:07 
AnswerRe: Saving data to Disk ... Pin
Pete O'Hanlon26-Jul-07 0:31
mvePete O'Hanlon26-Jul-07 0:31 
QuestionSynchronizing Data between SQL Express editions running on a network Pin
wasife25-Jul-07 23:43
wasife25-Jul-07 23:43 
QuestionSqlCommand timeout Pin
Stoyan Furnadzhiev25-Jul-07 23:36
Stoyan Furnadzhiev25-Jul-07 23:36 
AnswerRe: SqlCommand timeout Pin
Blue_Boy25-Jul-07 23:46
Blue_Boy25-Jul-07 23:46 
AnswerRe: SqlCommand timeout Pin
kubben26-Jul-07 1:43
kubben26-Jul-07 1:43 
GeneralRe: SqlCommand timeout Pin
Stoyan Furnadzhiev26-Jul-07 2:12
Stoyan Furnadzhiev26-Jul-07 2:12 
QuestionExpiring app Pin
sujithkumarsl25-Jul-07 23:29
sujithkumarsl25-Jul-07 23:29 
AnswerRe: Expiring app Pin
N a v a n e e t h26-Jul-07 0:11
N a v a n e e t h26-Jul-07 0:11 
AnswerRe: Expiring app Pin
Tormod Fjeldskaar26-Jul-07 3:25
Tormod Fjeldskaar26-Jul-07 3: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.