Click here to Skip to main content
15,917,793 members
Home / Discussions / C#
   

C#

 
GeneralRe: like sql statement in c# Pin
Pete O'Hanlon10-Jan-08 23:40
mvePete O'Hanlon10-Jan-08 23:40 
GeneralRe: like sql statement in c# Pin
eyeseetee11-Jan-08 2:14
eyeseetee11-Jan-08 2:14 
GeneralRe: like sql statement in c# Pin
Pete O'Hanlon11-Jan-08 2:29
mvePete O'Hanlon11-Jan-08 2:29 
GeneralRe: like sql statement in c# Pin
MikeZ10111-Jan-08 5:16
MikeZ10111-Jan-08 5:16 
GeneralCode Generator Pin
Ashwani_kumar10-Jan-08 22:47
Ashwani_kumar10-Jan-08 22:47 
GeneralRe: Code Generator Pin
DavidNohejl11-Jan-08 1:12
DavidNohejl11-Jan-08 1:12 
Generalcolor for datagrid columns Pin
chithra.r10-Jan-08 22:26
chithra.r10-Jan-08 22:26 
GeneralRe: color for datagrid columns Pin
Justin Perez11-Jan-08 2:48
Justin Perez11-Jan-08 2:48 
This should help you. You will have to modify it for use, however. That way you will have to do a little work Smile | :) . This method takes a row index, then loops through the columns for that row in the dataGridView, and then sets the backround color to light gray.

private void HighlightSelectedRow(int iRowIndex)
{
  for (int c = 0; c <; yourDataGridView.Columns.Count; c++)
    dataGridView1[c, iRowIndex].Style.BackColor = Color.LightGray;
}


"If an Indian asked a programming question in the forest, would it still be urgent?" - John Simmons / outlaw programmer

I get all the news I need from the weather report - Paul Simon (from "The Only Living Boy in New York")

QuestionIncluding a chm file in C#.net application Pin
Haj10-Jan-08 21:01
Haj10-Jan-08 21:01 
GeneralRe: Including a chm file in C#.net application Pin
Ajay.k_Singh10-Jan-08 21:49
Ajay.k_Singh10-Jan-08 21:49 
GeneralInstalling Certificate using C# Pin
wasife10-Jan-08 20:28
wasife10-Jan-08 20:28 
QuestionObjectPicker dialog: getting additional attributes by using C# + Interop Pin
gns1010-Jan-08 20:23
gns1010-Jan-08 20:23 
GeneralSome unsolf Question About PPC Pin
E_Gold10-Jan-08 19:48
E_Gold10-Jan-08 19:48 
Questionabout A* algorithm Pin
Member 475670910-Jan-08 19:33
Member 475670910-Jan-08 19:33 
GeneralRe: about A* algorithm Pin
Mohib Sheth10-Jan-08 19:39
Mohib Sheth10-Jan-08 19:39 
JokeRe: about A* algorithm Pin
Steve Echols10-Jan-08 19:52
Steve Echols10-Jan-08 19:52 
GeneralGeodesic Pin
Vikram A Punathambekar10-Jan-08 21:14
Vikram A Punathambekar10-Jan-08 21:14 
GeneralRe: Geodesic Pin
Steve Echols10-Jan-08 21:27
Steve Echols10-Jan-08 21:27 
GeneralRe: Geodesic Pin
Dan Neely11-Jan-08 2:14
Dan Neely11-Jan-08 2:14 
GeneralRe: about A* algorithm Pin
Member 475670910-Jan-08 20:18
Member 475670910-Jan-08 20:18 
GeneralRe: about A* algorithm Pin
DavidNohejl11-Jan-08 3:44
DavidNohejl11-Jan-08 3:44 
GeneralHelp me to implement code compress file . Pin
Vampire1986hieu10-Jan-08 19:29
Vampire1986hieu10-Jan-08 19:29 
GeneralRe: Help me to implement code compress file . Pin
benjymous11-Jan-08 0:55
benjymous11-Jan-08 0:55 
GeneralRe: Help me to implement code compress file . Pin
Vampire1986hieu11-Jan-08 13:45
Vampire1986hieu11-Jan-08 13:45 
GeneralRe: Help me to implement code compress file . Pin
Scott Dorman12-Jan-08 7:33
professionalScott Dorman12-Jan-08 7:33 

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.