alaa gomaa
Member
- Joined
- Apr 16, 2007
- Messages
- 13
- Programming Experience
- 1-3
hi every body ,i need your help for open file xls in VB.NET
how i can do this ?????
how i can do this ?????
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