I am using vb 2005 and I am tring to create an Excel Workbook called LeaveRequest.xls
and Add Employee Name: to cell A5 in sheet1. Below is the code I have so far. can someone help me complete the code? or guide me in the right direction.
Newbie in search of knowledge
and Add Employee Name: to cell A5 in sheet1. Below is the code I have so far. can someone help me complete the code? or guide me in the right direction.
Code:
Dim excel As Microsoft.Office.Interop.Excel.Application
Dim wb As Microsoft.Office.Interop.Excel.Workbook
excel = New Microsoft.Office.Interop.Excel.Application
wb = New Microsoft.Office.Interop.Excel.Workbook
'Create Workbook called LeaveRequest.xls
'Add Employee Name: to cell A5 in sheet1
'excel.Quit()
Newbie in search of knowledge