Hi,
I have an image stored as an OLE Object in a table in access.
(Our company Logo - bitmap file)
I currently have code that creates an invoice in excel using vba, and I would like to insert our logo from the table in access, into excel.
Has anyone had any experience with this?
We are trying...
Hi,
I am working on a program that will import a spreadsheet of billing information that is emailed to us monthly.
I have code so that the user just clicks "Import Billing data" and they are prompted for the path and filename. I then use the Transferspreadsheet method to place the data in a...
I tried it out - you need to change:
Set objxlwrksht = objxlwrkbk.Worksheets("sheet1")
to
Set objxlwrksht = objxlwrkbk.Worksheets("null")
It seems that when creating the new workbook, excel will name the worksheet after the object your are outputting.
(Just curious - do you have a table...