![]() |
| ||
| how to link an excel program in vb.net? Hi All, I've some excel programs. I want to attach those programs to my vb.net application. Is it possible? If yes then How? If its possible then can the excel file be editable? |
| ||
| Re: how to link an excel program in vb.net? The first thing that you'll need to do is add a reference to the Microsoft Excel Object Library. In your code you will need to create an Excel application object and excel workbooks. Then you should be able to access the file to edit the cells. It may look something like this; 'declare an instance of an excel application There is information about manipulating the data at this link, http://support.microsoft.com/default...b;EN-US;302094 |
| ||
| Re: how to link an excel program in vb.net? I wonder how to process the data in the excel cells with the vb.net codes. thnx |
| ||
| Re: how to link an excel program in vb.net? If you are wanting to just read what is on the sheet like it is a database column you would use an OleDb connection object like this; Dim strSql As String = "select * from [" & SheetName & "$]" Then use as any other OleDb connection. To access individual cells you need to create Excel objects like the post above and then loop through each row and cell, check the link in that post for examples. |
| ||
| Re: how to link an excel program in vb.net? A word of warning I found out later if using oledb - the spreadsheet must be perfect In other words: Every column must either number numeric or non-numeric, if there is a mismatch it doesn't work. |
| ||
| Re: how to link an excel program in vb.net? Quote:
plz check this http://vb.net-informations.com/excel..._tutorials.htm |
| All times are GMT -4. The time now is 8:27 am. |
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC