Click here to Skip to main content
15,903,362 members
Home / Discussions / C#
   

C#

 
AnswerRe: Best way to debug a Windows Service Pin
dbrenth15-May-08 3:07
dbrenth15-May-08 3:07 
GeneralRe: Best way to debug a Windows Service Pin
Ashfield15-May-08 3:12
Ashfield15-May-08 3:12 
GeneralRe: Best way to debug a Windows Service Pin
Peter Josefsson Sweden16-May-08 12:17
Peter Josefsson Sweden16-May-08 12:17 
AnswerRe: Best way to debug a Windows Service Pin
PIEBALDconsult15-May-08 5:43
mvePIEBALDconsult15-May-08 5:43 
QuestionDataTable / DataRow / someDataTable.Select() Issue Pin
Harvey Saayman15-May-08 2:43
Harvey Saayman15-May-08 2:43 
AnswerRe: DataTable / DataRow / someDataTable.Select() Issue Pin
Sandeep Kumar15-May-08 3:39
Sandeep Kumar15-May-08 3:39 
GeneralRe: DataTable / DataRow / someDataTable.Select() Issue Pin
Harvey Saayman15-May-08 3:42
Harvey Saayman15-May-08 3:42 
AnswerRe: DataTable / DataRow / someDataTable.Select() Issue Pin
sarvesh.upadhyay15-May-08 5:16
professionalsarvesh.upadhyay15-May-08 5:16 
I think instead of using
DataRow[] filteredRowsArray = table.Select(filterString);
and adding the above row to another table. You should use
DataView objdv = table.DefaultView;
and then Use objdv.RowFilter = filterstring.
It is more easy and fast compared to your above steps.

You can get more example on codeproject and google on it.
I think it will help u and may solve ur problem.

Sarvesh Upadhyay
Senior Software Engineer
Birlasoft India Ltd.
Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

GeneralRe: DataTable / DataRow / someDataTable.Select() Issue Pin
Harvey Saayman15-May-08 20:00
Harvey Saayman15-May-08 20:00 
QuestionDoEvents() Pin
ellllllllie15-May-08 2:23
ellllllllie15-May-08 2:23 
AnswerRe: DoEvents() Pin
Guffa15-May-08 7:13
Guffa15-May-08 7:13 
QuestionAfterBuild.Bat & PostBuildEvent.bat Pin
Hum Dum15-May-08 2:18
Hum Dum15-May-08 2:18 
QuestionChild processes that is started by a logon process ends when the parent process ends in Windows 2000 Pin
pranu_1315-May-08 1:52
pranu_1315-May-08 1:52 
AnswerRe: Child processes that is started by a logon process ends when the parent process ends in Windows 2000 Pin
Dario Solera15-May-08 2:00
Dario Solera15-May-08 2:00 
Questionlate binding Pin
Pankaj Garg15-May-08 1:52
Pankaj Garg15-May-08 1:52 
AnswerRe: late binding Pin
dan!sh 15-May-08 2:07
professional dan!sh 15-May-08 2:07 
AnswerRe: late binding Pin
CPallini15-May-08 2:10
mveCPallini15-May-08 2:10 
QuestionRe: late binding Pin
Pankaj Garg15-May-08 2:54
Pankaj Garg15-May-08 2:54 
AnswerRe: late binding Pin
CPallini15-May-08 3:11
mveCPallini15-May-08 3:11 
AnswerRe: late binding Pin
Guffa15-May-08 7:29
Guffa15-May-08 7:29 
Questioncould anyone tell me Pin
prasadbuddhika15-May-08 1:18
prasadbuddhika15-May-08 1:18 
AnswerRe: could anyone tell me Pin
Ashfield15-May-08 3:08
Ashfield15-May-08 3:08 
QuestionBest way to insert DataSet to database table Pin
cokelite15-May-08 0:44
cokelite15-May-08 0:44 
AnswerRe: Best way to insert DataSet to database table Pin
Bert delaVega15-May-08 7:16
Bert delaVega15-May-08 7:16 
QuestionImplement ListView Itemplate - for dynamically building a listview itemtemplaet Pin
harleydk15-May-08 0:42
harleydk15-May-08 0:42 

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.