C
Craig Hornish
Hello,
How can I work with and embedded Excel Worksheet
that is in a field in a table.
I want to work with it the same way you can if it
was a file that was stored outside of Access -- ie
Dim objXLApp as Excel.Application
Dim objXLBook as Excel.WorkBook
Dim objXLSheet as Excel.WorkSheet
Dim objXLRange as Excel.Range
Set objXlBook = GetObject("C:\book1.xls")
....
Set objXLSheet = objXLBook.Worksheets("Sheet1")
Set objXLRange = objXLSheet.Range("A1:A1")
I have found no example of the correct steps to
assign the OLE field in a recordset, or a bound object
frame in a form to the objXLSheet.
Thanks for any help
Craig
How can I work with and embedded Excel Worksheet
that is in a field in a table.
I want to work with it the same way you can if it
was a file that was stored outside of Access -- ie
Dim objXLApp as Excel.Application
Dim objXLBook as Excel.WorkBook
Dim objXLSheet as Excel.WorkSheet
Dim objXLRange as Excel.Range
Set objXlBook = GetObject("C:\book1.xls")
....
Set objXLSheet = objXLBook.Worksheets("Sheet1")
Set objXLRange = objXLSheet.Range("A1:A1")
I have found no example of the correct steps to
assign the OLE field in a recordset, or a bound object
frame in a form to the objXLSheet.
Thanks for any help
Craig