LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Opening Excel from VB .NET application


I'm trying to open various Excel files to determine which
ones are not in a valid format. I have the following
snippit of code:

Try
Dim bDisplayAlertsOldValue
Dim workBook As
Excel.Workbook
bDisplayAlertsOldValue =
m_excelApp.DisplayAlerts
m_excelApp.DisplayAlerts =
False
workBook =
m_excelApp.Workbooks.Open(fileName)
workBook.Close(False)
m_excelApp.DisplayAlerts =
bDisplayAlertsOldValue

Catch ex As Exception
MsgBox(ex.ToString())
End Try

The problem I'm encountering is this. If I don't disable
the DisplayAlerts property, then Excel prompts the user
with the standard file is in incorrect format dialog. My
application is going to run without user interaction over
many excel files. If I disable the DisplayAlerts property,
Excel no longer throws the exception that I was catching
after the dialog. Any ideas?

-Dan
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel opening from other application bonz Excel Discussion (Misc queries) 1 January 29th 09 05:06 PM
Opening Excel 2007 application Mike Excel Discussion (Misc queries) 2 May 11th 07 02:36 PM
Opening Excel Application difficulty Ariston Excel Discussion (Misc queries) 1 February 20th 05 01:16 AM
Opening a different application from Excel JonR Excel Programming 1 December 31st 04 07:07 PM
Slow-Opening Excel Application Joe Conti Excel Programming 2 October 11th 03 07:30 PM


All times are GMT +1. The time now is 04:06 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"