Click here to Skip to main content
15,891,607 members
Home / Discussions / C#
   

C#

 
Questionfixed width text file Pin
Iman Mohtashemi22-Jul-10 9:10
Iman Mohtashemi22-Jul-10 9:10 
AnswerRe: fixed width text file Pin
Keith Barrow22-Jul-10 9:18
professionalKeith Barrow22-Jul-10 9:18 
GeneralRe: fixed width text file Pin
Iman Mohtashemi22-Jul-10 9:21
Iman Mohtashemi22-Jul-10 9:21 
GeneralRe: fixed width text file Pin
Keith Barrow22-Jul-10 9:35
professionalKeith Barrow22-Jul-10 9:35 
AnswerRe: fixed width text file Pin
Samuel Cherinet22-Jul-10 9:38
Samuel Cherinet22-Jul-10 9:38 
GeneralRe: fixed width text file Pin
Iman Mohtashemi22-Jul-10 9:42
Iman Mohtashemi22-Jul-10 9:42 
Questionshowing text in the pdf in the user defined format Pin
Dhyanga22-Jul-10 8:57
Dhyanga22-Jul-10 8:57 
AnswerRe: showing text in the pdf in the user defined format Pin
Peace ON22-Jul-10 19:22
Peace ON22-Jul-10 19:22 
You can access cell by cell of your dataGrid and use then
in whatever way you need.

Find sample code below for the same.
C#
for(int i=0;i<<dataGridView1.Rows.Count;i++)
{
    for(int j=0;j<<dataGridView1.Cells.Count;i++)
    {
        //access individual cell as
        //dataGridView1.Rows[i].Cells[j].Value
    }
}



HTH
Jinal Desai - LIVE
Experience is mother of sage....

QuestionHow to correct X Axis scale label in .Net Chart Control Pin
Daniel Tong22-Jul-10 8:24
Daniel Tong22-Jul-10 8:24 
QuestionWebBrowser control automation question Pin
Etienne_12322-Jul-10 6:57
Etienne_12322-Jul-10 6:57 
AnswerRe: WebBrowser control automation question Pin
Etienne_12322-Jul-10 7:07
Etienne_12322-Jul-10 7:07 
QuestionMy TextBox lacks discipline and Forms.Focus Pin
GrenMeera22-Jul-10 5:48
GrenMeera22-Jul-10 5:48 
AnswerRe: My TextBox lacks discipline and Forms.Focus Pin
Peace ON22-Jul-10 19:45
Peace ON22-Jul-10 19:45 
GeneralRe: My TextBox lacks discipline and Forms.Focus Pin
GrenMeera23-Jul-10 3:08
GrenMeera23-Jul-10 3:08 
QuestionPassing a Varible to a TextBox in ReportViewer Pin
cgillespie22-Jul-10 3:56
cgillespie22-Jul-10 3:56 
QuestionDynamic Dictionary usage problem in C# Pin
glitteringsound22-Jul-10 3:22
glitteringsound22-Jul-10 3:22 
QuestionMDIChild form in FULLSCREEN mode Pin
frommi22-Jul-10 0:05
frommi22-Jul-10 0:05 
AnswerRe: MDIChild form in FULLSCREEN mode Pin
Peace ON22-Jul-10 0:16
Peace ON22-Jul-10 0:16 
GeneralRe: MDIChild form in FULLSCREEN mode Pin
frommi22-Jul-10 0:25
frommi22-Jul-10 0:25 
GeneralRe: MDIChild form in FULLSCREEN mode Pin
Peace ON22-Jul-10 2:04
Peace ON22-Jul-10 2:04 
GeneralRe: MDIChild form in FULLSCREEN mode Pin
Ravi Bhavnani22-Jul-10 4:19
professionalRavi Bhavnani22-Jul-10 4:19 
GeneralRe: MDIChild form in FULLSCREEN mode Pin
Matt U.22-Jul-10 11:57
Matt U.22-Jul-10 11:57 
AnswerRe: MDIChild form in FULLSCREEN mode Pin
Niyamat22-Jul-10 7:47
Niyamat22-Jul-10 7:47 
Questionhow to auto Refresh a control in windows application Pin
Krishna Varadharajan21-Jul-10 23:20
Krishna Varadharajan21-Jul-10 23:20 
AnswerRe: how to auto Refresh a control in windows application Pin
Peace ON22-Jul-10 0:09
Peace ON22-Jul-10 0:09 

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.