Display Excel doc

Dthomson

New member
Joined
Mar 29, 2005
Messages
2
Programming Experience
1-3
I have a number of spreadsheet files I want to dispaly. I do not want to use or manipulate the data in the spreadsheet. I just want a user to be able to select from a list and see that spreadsheet. It sounds so simple but I cant seem to get it to work...
 
Perhaps you need to provide more information about your idea/app as
well as we could provide you with our opinions and that way help you out ... in meantime you could read this article .... maybe it will help you understand more about this subject ....
http://support.microsoft.com/kb/301982/EN-US/

btw, to open an existing Excel file you could use:

VB.NET:
oXL = CreateObject("Excel.Application") 
oXL.Workbooks.Open("c:\mySpreadSheet.xls")


Cheers ;)
 
Back
Top