Thrawler
New member
- Joined
- Jan 15, 2012
- Messages
- 4
- Programming Experience
- 3-5
Ok I have a command Button, and with the Click I need to load Excel, and Load the Workbook.
the code I have loads Excel.exe into Memory but does not actually show it.
Any help would be nice.
the code I have loads Excel.exe into Memory but does not actually show it.
Any help would be nice.
VB.NET:
[LEFT][COLOR=#333333][/COLOR][/LEFT] Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim oExcel As Object
oExcel = CreateObject("Excel.Application")
oExcel.Workbooks.Open("c:\CCP\Loot.xlsm")
End Sub