Hi,
I would like to Name the Excel WorkBook that i create so that by the time i say "Save File"..the file name appears in the File Name Text Box.
Dim ExObj As Excel.Application
Dim WbObj As Excel.Workbook
Dim WsObj As Excel.Worksheet
Private Sub Command1_Click()
Set ExObj = CreateObject("Excel.Application")
Set WbObj = ExObj.Workbooks.Add
Set WsObj = WbObj.Worksheets.Add
....