Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

All of a sudden this code has stopped outputting an Excel File. It was converting a DataTable, dtOutput, into an Excel file:

if (dtOutput.Rows.Count > 0)
{
    DataView dv = dtOutput.DefaultView;
    dv.Sort = "Outage Start Time";
    dtOutput = dv.ToTable();
    // Populates a column of the table
    dtOutput = addIncidentCounts(dtOutput);

    Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();
    Workbook wb = xlApp.Workbooks.Add(XlWBATemplate.xlWBATWorksheet);
    Worksheet ws = (Worksheet)wb.Worksheets[1];
    ws.Name = "Retail Network Tracking Log";

    int col = 1;
    foreach (DataColumn column in dtOutput.Columns)
    {
        ws.Cells[1, col].Value2 = column.ColumnName;
        col++;
    }

    for (int i = 0; i < dtOutput.Rows.Count; i++)
    {
        for (int j = 0; j < dtOutput.Columns.Count; j++)
        {
            ws.Cells[i + 2, j + 1].Value2 = dtOutput.Rows[i][j];
        }
    }

    foreach (Range range in ws.UsedRange.Columns)
    {
        range.HorizontalAlignment = XlHAlign.xlHAlignLeft;
        range.Columns.AutoFit();
    }

    Range rangeE = ws.get_Range("E:E", Type.Missing);
    rangeE.NumberFormat = "d-mmm-yyyy hh:mm:ss";

    Range rangeF = ws.get_Range("F:F", Type.Missing);
    rangeF.NumberFormat = "d-mmm-yyyy hh:mm:ss";

    wb.Close(false, false, Type.Missing);
    xlApp.Quit();
    Marshal.ReleaseComObject(wb);
    Marshal.ReleaseComObject(xlApp);

    this.Close();
}

It has worked perfectly for weeks. I have made no changes to it. I have restarted VS, rebooted the computer, and finally reinstalled VS but I am still not getting any output. I have run it through the debugger as well and the code is definitely executing and attaining all of the proper values. I'm stumped.

share|improve this question
can't help ya without some kind of info about the error you're getting. That being said, if i had to guess I'd say its a permissions issue, or a directory structure issue, or something – Phillip Schmidt Aug 2 '12 at 20:31
I don't see where you save the workbook before closing down excel? – Tim Williams Aug 2 '12 at 20:47
...or you're looking in the wrong place for the saved workbook? Have you tried saving it explicitly with a fixed absolute path? – Tim Williams Aug 2 '12 at 21:02
2  
The Workbook.Close() call looks fairly bizarre. You pass false for the SaveChanges argument and false for the Filename argument. – Hans Passant Aug 2 '12 at 21:14

1 Answer

up vote 1 down vote accepted

Hans Passant was right. The call to close needed to be:

wb.Close(true, saveDirectory + "\\" + reportName, false);

Now the real mystery is how this code was working in the first place!

share|improve this answer
Maybe it wasn't? – Tim Williams Aug 3 '12 at 1:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.