Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8167173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T20:07:07+00:00 2026-06-06T20:07:07+00:00

Just like I said, my winform application works properly on computers with VS installed,

  • 0

Just like I said, my winform application works properly on computers with VS installed, but on other computers, it will crash due to a FileNotFound Exception. I used

using Application = Microsoft.Office.Interop.Excel.Application;

in my source code to generate a Excel file, and the problem occurs as soon as the Excel-related function is called. But I don’t know what it refers to exactly. Do I have to get some .dll included along with the .exe file? And what DLL is that?

Below are part of my codes:

  private void FileExport(object objTable)
    {
        StartWaiting();
        string[,] table = null;
        try
        {
            table = (string[,])objTable;
        }
        catch (Exception ex)
        {
            ShowStatus(ex.Message, StatusType.Warning);
        }
        if (table == null)
        {
            return;
        }
        Application excelApp = new Application
        {
            DisplayAlerts = false
        };
        Workbooks workbooks = excelApp.Workbooks;
        Workbook workbook = workbooks.Add(XlWBATemplate.xlWBATWorksheet);
        Worksheet worksheet = (Worksheet)workbook.Worksheets[1];
        worksheet.Name = "TABLE";
        for (int i = 0; i < table.GetLength(0); i++)
        {
            for (int j = 0; j < table.GetLength(1); j++)
            {
                worksheet.Cells[i + 1, j + 1] = table[i, j];
            }
        }
        Range range = excelApp.Range["A1", "H1"];
        range.Merge();
        range.Font.Bold = true;
        range.Font.Size = 15;
        range.RowHeight = 50;
        range.EntireRow.AutoFit();
        range = excelApp.Range["A2", "H8"];
        range.Font.Size = 11;
        range = excelApp.Range["A1", "H8"];
        range.NumberFormatLocal = "@";
        range.RowHeight = 300;
        range.ColumnWidth = 50;
        range.HorizontalAlignment = XlHAlign.xlHAlignCenter;
        range.VerticalAlignment = XlVAlign.xlVAlignCenter;
        range.EntireRow.AutoFit();
        range.EntireColumn.AutoFit();
        worksheet.UsedRange.Borders.LineStyle = 1;
        Invoke(new MainThreadInvokerDelegate(SaveAs), new object[] { worksheet, workbook, excelApp }
            );
        EndWaiting();
    }

`

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T20:07:10+00:00Added an answer on June 6, 2026 at 8:07 pm

    As others mentioned, you probably forgot to deploy Microsoft.Office.Interop.Excel.dll along with you application files. You could either include these files when you deploy your application or use a Windows Installer that can do this automatically for your. An installer would take care of deploying your project files and all their dependencies. On this subject MSDN says:

    The resulting Windows Installer (.msi) file contains the application,
    any dependent files, information about the application such as
    registry entries, and instructions for installation.

    On a side note: you have to ensure Excel is installed on the other machine otherwise your application won’t behave the way you expect it to do.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just like the title said. For example: I have a class like this: class
Possible Duplicate: Real world use of custom .NET attributes Just like the title said
i've got confused trying to change the map controls like said here But don`t
Just like in the title. I got GridView control that displaying some data from
Just like what happens when you click Sign in with OpenID on http://twitterfeed.com/ ,
Just like stackoverflow, there is a many-to-many relationship between Question and Tag. After running
Just like in JavaScript : opener.document.getElementByName jQuery: ?? Is there any way to get
Just like in topic I try to create a form when the elements create
Just like in this topic , I have a performance issue in dev mode
NSString just like 1000.00 and 1008977.72, how can I format them to 1,000.00 and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.