open an Excel file using c#
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hai i need to open an excel file when i click on the open button i need to open in visible mode of excel file it means just display the excel file using c#
-
hai i need to open an excel file when i click on the open button i need to open in visible mode of excel file it means just display the excel file using c#
maybe this helps u: exap = new Microsoft.Office.Interop.Excel.ApplicationClass(); if (exap == null) { MessageBox.Show("can't load excel"); System.Windows.Forms.Application.Exit(); } exap.Visible = true;