ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How to add an image to a worksheet programmatically (https://www.excelbanter.com/excel-discussion-misc-queries/17753-how-add-image-worksheet-programmatically.html)

mjohnson

How to add an image to a worksheet programmatically
 
I am trying automate adding a picture to an excel sheet using JScript
(I would imagine the language shouldn't matter that much). After doing
quite a bit of research I tried writing the following code but I get an
error saying that the 'Pictures' collection is null or not an object.
I can't seem to figure out what I should be doing:

var book = new ActiveXObject("OWC10.Spreadsheet");
var sheet = book.Worksheets[1];
var range = sheet.Range("A1");

range.Activate();
sheet.Pictures.Add( PATH_TO_LOGO_BMP );

Any suggestions? thanks for your help!


Ron de Bruin

Use something like this

ActiveSheet.Shapes.AddPicture "C:\Data\Skate.jpg", msoTrue, _
msoFalse, 100, 100, 100, 50



--
Regards Ron de Bruin
http://www.rondebruin.nl



"mjohnson" wrote in message oups.com...
I am trying automate adding a picture to an excel sheet using JScript
(I would imagine the language shouldn't matter that much). After doing
quite a bit of research I tried writing the following code but I get an
error saying that the 'Pictures' collection is null or not an object.
I can't seem to figure out what I should be doing:

var book = new ActiveXObject("OWC10.Spreadsheet");
var sheet = book.Worksheets[1];
var range = sheet.Range("A1");

range.Activate();
sheet.Pictures.Add( PATH_TO_LOGO_BMP );

Any suggestions? thanks for your help!




mjohnson

Thanks for your response but it still doesn't work. It seems that
'Shapes' isn't a valid member either. This is what I tried:

sheet.Shapes.AddPicture(PATH_TO_LOGO,true,false,10 0,100,100,50);

Not sure if the problem is 'ActiveSheet' or not. I realize that
ActiveSheet is valid in VBA, but I tried 'book.ActiveSheet' but that
didn't work either. Using the ObjectBrowser is less than satisfactory
(it doesn't even give you a view into the Cell object). It's very
frustrating trying to find documentation on how to use the Excel object
effectively. A lot of guess work....



All times are GMT +1. The time now is 05:33 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com