Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 154
Default Word "Image" into Excel

I've been given a Word file. It contains an 'image' which is actually a
company logo.

Is there a way to (say) save this to a bitmap file then import it into
Excel?

My aim would be to place this on an Userform (in an
Image?)

Thanks.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,758
Default Word "Image" into Excel

This worked ok for me (and avoided saving the picture).

Select the picture in Word
Rightclick|Copy

Back to the Excel Userform.
Insert an Image in your userform
hit F4 to see that image's properties.
Click on Picture
ctrl-v (to paste)

You may be able to copy the picture from MSWord and paste to your favorite
picture editor and save from there, too.

Stuart wrote:

I've been given a Word file. It contains an 'image' which is actually a
company logo.

Is there a way to (say) save this to a bitmap file then import it into
Excel?

My aim would be to place this on an Userform (in an
Image?)

Thanks.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 154
Default Word "Image" into Excel

Many thanks.
The copy/paste works, but it does not appear in the
printed form. If it makes a difference, the Image's
Picture property is showing as a Metafile.

What might I be doing wrong, please?

Regards.

"Dave Peterson" wrote in message
...
This worked ok for me (and avoided saving the picture).

Select the picture in Word
Rightclick|Copy

Back to the Excel Userform.
Insert an Image in your userform
hit F4 to see that image's properties.
Click on Picture
ctrl-v (to paste)

You may be able to copy the picture from MSWord and paste to your favorite
picture editor and save from there, too.

Stuart wrote:

I've been given a Word file. It contains an 'image' which is actually a
company logo.

Is there a way to (say) save this to a bitmap file then import it into
Excel?

My aim would be to place this on an Userform (in an
Image?)

Thanks.


--

Dave Peterson



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,758
Default Word "Image" into Excel

It worked ok for me when I did a me.printform.

A long time ago, we had problems printing too much info on the sheet. We
increased the memory for the printer and we could print ok.

But I don't have a real guess.

Stuart wrote:

Many thanks.
The copy/paste works, but it does not appear in the
printed form. If it makes a difference, the Image's
Picture property is showing as a Metafile.

What might I be doing wrong, please?

Regards.

"Dave Peterson" wrote in message
...
This worked ok for me (and avoided saving the picture).

Select the picture in Word
Rightclick|Copy

Back to the Excel Userform.
Insert an Image in your userform
hit F4 to see that image's properties.
Click on Picture
ctrl-v (to paste)

You may be able to copy the picture from MSWord and paste to your favorite
picture editor and save from there, too.

Stuart wrote:

I've been given a Word file. It contains an 'image' which is actually a
company logo.

Is there a way to (say) save this to a bitmap file then import it into
Excel?

My aim would be to place this on an Userform (in an
Image?)

Thanks.


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 154
Default Word "Image" into Excel

Hmm. Used the PrintForm command from the Immediate
Window with the same result - no image, just the outline
of the image.

Placed the Logo into a standard sheet, highlighted it and looked at the
Formula bar ....... it reports as follows:
=EMBED("Word.Picture.8","")

Does this shed any light, please?

Regards.

"Dave Peterson" wrote in message
...
It worked ok for me when I did a me.printform.

A long time ago, we had problems printing too much info on the sheet. We
increased the memory for the printer and we could print ok.

But I don't have a real guess.

Stuart wrote:

Many thanks.
The copy/paste works, but it does not appear in the
printed form. If it makes a difference, the Image's
Picture property is showing as a Metafile.

What might I be doing wrong, please?

Regards.

"Dave Peterson" wrote in message
...
This worked ok for me (and avoided saving the picture).

Select the picture in Word
Rightclick|Copy

Back to the Excel Userform.
Insert an Image in your userform
hit F4 to see that image's properties.
Click on Picture
ctrl-v (to paste)

You may be able to copy the picture from MSWord and paste to your
favorite
picture editor and save from there, too.

Stuart wrote:

I've been given a Word file. It contains an 'image' which is actually
a
company logo.

Is there a way to (say) save this to a bitmap file then import it into
Excel?

My aim would be to place this on an Userform (in an
Image?)

Thanks.

--

Dave Peterson


--

Dave Peterson





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,758
Default Word "Image" into Excel

Not to me.

But I don't think that a picture in an image on a userform would have much in
common with an object placed on the worksheet--but I've been wrong before.

Did you try a smaller picture to see if that was the problem?

Stuart wrote:

Hmm. Used the PrintForm command from the Immediate
Window with the same result - no image, just the outline
of the image.

Placed the Logo into a standard sheet, highlighted it and looked at the
Formula bar ....... it reports as follows:
=EMBED("Word.Picture.8","")

Does this shed any light, please?

Regards.

"Dave Peterson" wrote in message
...
It worked ok for me when I did a me.printform.

A long time ago, we had problems printing too much info on the sheet. We
increased the memory for the printer and we could print ok.

But I don't have a real guess.

Stuart wrote:

Many thanks.
The copy/paste works, but it does not appear in the
printed form. If it makes a difference, the Image's
Picture property is showing as a Metafile.

What might I be doing wrong, please?

Regards.

"Dave Peterson" wrote in message
...
This worked ok for me (and avoided saving the picture).

Select the picture in Word
Rightclick|Copy

Back to the Excel Userform.
Insert an Image in your userform
hit F4 to see that image's properties.
Click on Picture
ctrl-v (to paste)

You may be able to copy the picture from MSWord and paste to your
favorite
picture editor and save from there, too.

Stuart wrote:

I've been given a Word file. It contains an 'image' which is actually
a
company logo.

Is there a way to (say) save this to a bitmap file then import it into
Excel?

My aim would be to place this on an Userform (in an
Image?)

Thanks.

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Word "Image" into Excel

OK, just try what you already stated your self; CopyPaste the image into
MSPaint and see what you can save it as. Then go back to Excel and Insert
that image into your form.

Seems the simplest way to me, but I'm no MVP or VIP...just lurking.

"Stuart" wrote in message
...
I've been given a Word file. It contains an 'image' which is actually a
company logo.

Is there a way to (say) save this to a bitmap file then import it into
Excel?

My aim would be to place this on an Userform (in an
Image?)

Thanks.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Protecting/Unprotecting all sheets with macro leads to "image" iss MikeR Excel Worksheet Functions 3 February 22nd 10 09:33 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
Automatically adding image extension ".jpg" to end of image name Alain Excel Discussion (Misc queries) 3 June 19th 08 03:21 PM
any formula to convert numbers in word form, e.g. "2" as "Two"? Neeraj Excel Worksheet Functions 1 May 26th 08 01:03 PM
Check if cells contain the word "Thailand", return "TRUE" ali Excel Worksheet Functions 7 September 14th 07 09:53 AM


All times are GMT +1. The time now is 05:45 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"