How do I insert an Excel file into VB 6. I need to be able to view the file in a seperate form. I know the coding to change the forms is
Form1.Hide
Form2.Show
And I read a previous thread before on these forums that gave me the coding to load it:
Dim xlTmp As Excel.Application
Set xlTmp = New Excel.Application
xlTmp.Workbooks.Open App.Path & "\times.xls"
Could anyone please help me to find what the solution so the Excel spreadsheet may be displayed on the form?