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

C#

 
AnswerRe: Exporting DataGridView to excel Pin
Rashmi_Karnam2-Mar-10 0:13
Rashmi_Karnam2-Mar-10 0:13 
AnswerRe: Exporting DataGridView to excel Pin
Dan Mos2-Mar-10 1:30
Dan Mos2-Mar-10 1:30 
GeneralRe: Exporting DataGridView to excel Pin
Hum Dum2-Mar-10 2:04
Hum Dum2-Mar-10 2:04 
GeneralRe: Exporting DataGridView to excel [modified] Pin
Dan Mos2-Mar-10 2:17
Dan Mos2-Mar-10 2:17 
QuestionControl Authoring OnPaint not working as expected Pin
TheFoZ1-Mar-10 22:54
TheFoZ1-Mar-10 22:54 
AnswerRe: Control Authoring OnPaint not working as expected Pin
OriginalGriff1-Mar-10 23:54
mveOriginalGriff1-Mar-10 23:54 
GeneralRe: Control Authoring OnPaint not working as expected Pin
TheFoZ1-Mar-10 23:56
TheFoZ1-Mar-10 23:56 
QuestionC# - Fill a .xlsx / .xls - file with data based on a grid Pin
Mschauder1-Mar-10 22:44
Mschauder1-Mar-10 22:44 
Hey,

I have my data in a grid (no datagridview), export a grid (30 cols and over 20.000 rows) takes a lot of time (minimum 2minutes)... Dead | X|

now my question: Is there a way to accelerate this?

for (int i = 0; i < UsingGrid.Cols; i++)
{
    for (int j = 0; j < UsingGrid.Rows; j++)
    {
        worksheet.Cells[j + 1, i + 1] = ConvertToExcelFormat(Convert.ToString(UsingGrid[j, i]));
    }
}


Thank you
AnswerRe: C# - Fill a .xlsx / .xls - file with data based on a grid Pin
TheFoZ1-Mar-10 23:54
TheFoZ1-Mar-10 23:54 
AnswerRe: C# - Fill a .xlsx / .xls - file with data based on a grid Pin
Rashmi_Karnam2-Mar-10 0:17
Rashmi_Karnam2-Mar-10 0:17 
AnswerRe: C# - Fill a .xlsx / .xls - file with data based on a grid Pin
Dan Mos2-Mar-10 1:32
Dan Mos2-Mar-10 1:32 
QuestionConverting to Hex Pin
Deepak.Prahlad1-Mar-10 22:28
Deepak.Prahlad1-Mar-10 22:28 
AnswerRe: Converting to Hex Pin
Luc Pattyn1-Mar-10 22:47
sitebuilderLuc Pattyn1-Mar-10 22:47 
GeneralRe: Converting to Hex Pin
Deepak.Prahlad1-Mar-10 23:03
Deepak.Prahlad1-Mar-10 23:03 
GeneralRe: Converting to Hex Pin
Luc Pattyn1-Mar-10 23:14
sitebuilderLuc Pattyn1-Mar-10 23:14 
Questionproblem in debugging the windows application Pin
Amit Spadez1-Mar-10 22:22
professionalAmit Spadez1-Mar-10 22:22 
AnswerRe: problem in debugging the windows application Pin
Luc Pattyn1-Mar-10 22:49
sitebuilderLuc Pattyn1-Mar-10 22:49 
GeneralRe: problem in debugging the windows application Pin
Amit Spadez1-Mar-10 22:57
professionalAmit Spadez1-Mar-10 22:57 
AnswerRe: problem in debugging the windows application Pin
Tony Richards1-Mar-10 22:52
Tony Richards1-Mar-10 22:52 
QuestionConvert string to UTF-8 Pin
dabuskol1-Mar-10 20:41
dabuskol1-Mar-10 20:41 
AnswerRe: Convert string to UTF-8 Pin
sanforjackass1-Mar-10 21:29
sanforjackass1-Mar-10 21:29 
GeneralRe: Convert string to UTF-8 Pin
Rajesh Anuhya1-Mar-10 21:53
professionalRajesh Anuhya1-Mar-10 21:53 
AnswerRe: Convert string to UTF-8 Pin
N a v a n e e t h1-Mar-10 21:56
N a v a n e e t h1-Mar-10 21:56 
GeneralRe: Convert string to UTF-8 Pin
dabuskol2-Mar-10 0:18
dabuskol2-Mar-10 0:18 
Questionapply changes to a xml file on the internet Pin
sajjad.aghapouer1-Mar-10 20:38
sajjad.aghapouer1-Mar-10 20:38 

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.