spreadsheets

If you want to simply open the excel file you can use the following code


VB.NET:
Expand Collapse Copy
Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim proc As New Process()
        proc.StartInfo = New ProcessStartInfo("yourfile.xls")
        proc.Start()
    End Sub
End Class

Or if you want to retrieve and modify records then this link may help you

http://support.microsoft.com/default.aspx?scid=kb%3B[LN]%3BQ316934
 
Back
Top