Hi,
I have a database in Access with the Interface created in VBA, the reports are created in Excel by filling in each cell.
This work fine, but now I am trying to create a watermark on the page using word art. The following places the wordart in excel
But I am unable to modify the shape from this point. The code to do this in Excel VBA is eg. "Selection.ShapeRange.Fill.Transparency = 1#"
Is this possible to do from Access VBA and hopefully it is so where would I start?
Also is there a website or book that lists all of the methods available for modifying excel from Access?
Thanks,
I have a database in Access with the Interface created in VBA, the reports are created in Excel by filling in each cell.
Code:
Set xlw = xlx.workbooks.Open(reportLoc())
Set xl = xlw.worksheets("PMP")
xl.Activate
xl.cells(2, 8).Value = rs.Fields("xxxx")
Code:
xl.Shapes.AddTextEffect(msoTextEffect1, "NOT APPROVED", "Arial Black" , 36#, msoFalse, msoFalse, 264.75, 396.75).Select
But I am unable to modify the shape from this point. The code to do this in Excel VBA is eg. "Selection.ShapeRange.Fill.Transparency = 1#"
Is this possible to do from Access VBA and hopefully it is so where would I start?
Also is there a website or book that lists all of the methods available for modifying excel from Access?
Thanks,