Click here to Skip to main content
15,896,063 members
Home / Discussions / C#
   

C#

 
Questionxml Pin
naghoumeh1416-Feb-10 6:09
naghoumeh1416-Feb-10 6:09 
AnswerRe: xml Pin
dan!sh 16-Feb-10 6:35
professional dan!sh 16-Feb-10 6:35 
AnswerRe: xml Pin
Not Active16-Feb-10 6:37
mentorNot Active16-Feb-10 6:37 
GeneralRe: xml Pin
naghoumeh1416-Feb-10 12:09
naghoumeh1416-Feb-10 12:09 
GeneralRe: xml Pin
Not Active16-Feb-10 12:18
mentorNot Active16-Feb-10 12:18 
Questioncopy datagridview to another datagridview Pin
jashimu16-Feb-10 6:03
jashimu16-Feb-10 6:03 
AnswerRe: copy datagridview to another datagridview Pin
dan!sh 16-Feb-10 6:06
professional dan!sh 16-Feb-10 6:06 
GeneralRe: copy datagridview to another datagridview Pin
jashimu16-Feb-10 6:52
jashimu16-Feb-10 6:52 
d@nish, this is what I have done but it is taking long time
to do that if you have thousands of rows then forget it.
that is why I am looking for any convinent way of doing it or not.
for (int j = 0; j < dataGridView1.Rows.Count; j++)<br />
                {<br />
                       dataGridView2.Rows.Add();<br />
                        for (int i = 0; i < 5; i++)<br />
                        {<br />
                           dataGridView2.Rows[dataGridView2.Rows.Count - 1].Cells[i].Value = dataGridView1.Rows[j].Cells[i].Value; <br />
                        }               <br />
                }<br />
                   <br />


Here I have five coloumns for the second for loop.
QuestionIMessageFilter to capture click event Pin
nuttynibbles16-Feb-10 5:45
nuttynibbles16-Feb-10 5:45 
AnswerRe: IMessageFilter to capture click event Pin
dan!sh 16-Feb-10 6:02
professional dan!sh 16-Feb-10 6:02 
GeneralRe: IMessageFilter to capture click event Pin
nuttynibbles17-Feb-10 0:12
nuttynibbles17-Feb-10 0:12 
Questionsave a picture Pin
naghoumeh1416-Feb-10 4:50
naghoumeh1416-Feb-10 4:50 
AnswerRe: save a picture Pin
Pete O'Hanlon16-Feb-10 4:57
mvePete O'Hanlon16-Feb-10 4:57 
GeneralRe: save a picture Pin
naghoumeh1416-Feb-10 5:05
naghoumeh1416-Feb-10 5:05 
GeneralRe: save a picture Pin
Saksida Bojan16-Feb-10 10:37
Saksida Bojan16-Feb-10 10:37 
QuestionIDWedge ID Scanner Reading Sample application Pin
Tiger45616-Feb-10 4:48
Tiger45616-Feb-10 4:48 
QuestionRPC Error Pin
Syed Shahid Hussain16-Feb-10 4:39
Syed Shahid Hussain16-Feb-10 4:39 
AnswerRe: RPC Error Pin
Dimitri Witkowski16-Feb-10 9:07
Dimitri Witkowski16-Feb-10 9:07 
GeneralRe: RPC Error Pin
Syed Shahid Hussain16-Feb-10 10:30
Syed Shahid Hussain16-Feb-10 10:30 
GeneralRe: RPC Error Pin
Dimitri Witkowski16-Feb-10 10:47
Dimitri Witkowski16-Feb-10 10:47 
GeneralRe: RPC Error Pin
Syed Shahid Hussain16-Feb-10 11:00
Syed Shahid Hussain16-Feb-10 11:00 
GeneralRe: RPC Error Pin
Dimitri Witkowski16-Feb-10 18:09
Dimitri Witkowski16-Feb-10 18:09 
QuestionGrouping elements by memory words: possible? Pin
blackblizzard16-Feb-10 3:29
blackblizzard16-Feb-10 3:29 
AnswerRe: Grouping elements by memory words: possible? Pin
Pete O'Hanlon16-Feb-10 4:11
mvePete O'Hanlon16-Feb-10 4:11 
GeneralRe: Grouping elements by memory words: possible? Pin
blackblizzard16-Feb-10 4:21
blackblizzard16-Feb-10 4:21 

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.