|
|
Question : Printing a chartspace object with VBA
|
|
I have included a chartspace object in VBA. But now I want to use a button that prints the chartspace object. I've tried using Printer.PaintPicture but that doesn't work in VBA. I've exported the picture to a imagefile so a function to print an imagefile that's on disk will do also.
Thnx
|
Answer : Printing a chartspace object with VBA
|
|
you can programmatically change your source of image:
me.image0.picture = "your image location here"
|
|
|
|