AverageAdam
Member
- Joined
- Jun 3, 2007
- Messages
- 6
- Programming Experience
- 1-3
I can't make Excel visible when I eport from my asp.net application.
I have the following code:
Dim excelApp As New Excel.Application
Dim excelBook As Excel.Workbook = excelApp.Workbooks.Add
Dim excelWorksheet As Excel.Worksheet = CType(excelBook.Worksheets(1), Excel.Worksheet)
excelApp.Visible = True
Why wouldn't I be able to see this empty Excel workbook?
I have the following code:
Dim excelApp As New Excel.Application
Dim excelBook As Excel.Workbook = excelApp.Workbooks.Add
Dim excelWorksheet As Excel.Worksheet = CType(excelBook.Worksheets(1), Excel.Worksheet)
excelApp.Visible = True
Why wouldn't I be able to see this empty Excel workbook?