Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Saving excel files as jpeg

Hi!

I need to save the excel sheets as jpeg.
Is that possible then how do I go about it.

Please help.
John


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 21
Default Saving excel files as jpeg

On Thu, 23 Jun 2005 18:32:07 +0530, "John"
wrote in microsoft.public.excel.programming:

I need to save the excel sheets as jpeg.
Is that possible then how do I go about it.


Get PDFCreator; prin: Save as type: .jpg - single page only.
<http://sourceforge.net/projects/pdfcreator/

--
Michael Bednarek http://mbednarek.com/ "POST NO BILLS"
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Saving excel files as jpeg

Thanks for the response , but I need to do it through code in VBA. Is that
possible.
I need a method where in I can transfer the excel information in image
format.


John

"Michael Bednarek" wrote in message
...
On Thu, 23 Jun 2005 18:32:07 +0530, "John"
wrote in microsoft.public.excel.programming:

I need to save the excel sheets as jpeg.
Is that possible then how do I go about it.


Get PDFCreator; prin: Save as type: .jpg - single page only.
<http://sourceforge.net/projects/pdfcreator/

--
Michael Bednarek http://mbednarek.com/ "POST NO BILLS"



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 93
Default Saving excel files as jpeg

I´ve seen this done before. Without any details I can say it is
CopyPicture method.
This put selection into clipboard as a picture and paste it onto
activesheet:

Sub makemepic()
Dim rng As Range
Set rng = Selection
rng.CopyPicture xlScreen, xlPicture
activesheet.paste
End Sub

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 21
Default Saving excel files as jpeg

On Fri, 24 Jun 2005 10:55:36 +0530, "John"
wrote in microsoft.public.excel.programming:

Thanks for the response , but I need to do it through code in VBA. Is that
possible.
I need a method where in I can transfer the excel information in image
format.


You need to investigate how PDFCreator controls its output option -
hopefully through some registry settings, but it's also possible it does
it purely through its GUI. In the first case, you can manipulate the
registry through VBA, in the second case you have to use some kind of
SendKeys - very problematic.

Alternatively, there might be some kind of screen grabber which can be
command-line driven and save the image as a JPG.

Why do you need to do this in the first place? Portability? Wouldn't PDF
output be just as portable? Or using the free XLS Viewer?

"Michael Bednarek" wrote in message
.. .
On Thu, 23 Jun 2005 18:32:07 +0530, "John"
wrote in microsoft.public.excel.programming:

I need to save the excel sheets as jpeg.
Is that possible then how do I go about it.


Get PDFCreator; prin: Save as type: .jpg - single page only.
<http://sourceforge.net/projects/pdfcreator/


--
Michael Bednarek http://mbednarek.com/ "POST NO BILLS"


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
Embedding jpeg files into Excel worksheet that can be emailed zuesco Excel Discussion (Misc queries) 2 October 5th 09 08:44 PM
How to auto size jpeg files into excel when import/insert pictures Ken C[_2_] New Users to Excel 3 September 25th 09 02:17 PM
linking jpeg files Mike Excel Worksheet Functions 2 December 27th 07 08:16 PM
jpeg files in excel Andre Excel Discussion (Misc queries) 1 February 5th 05 08:12 AM
Export sheets as JPEG files through a dialog box (Problems) Tim[_36_] Excel Programming 6 May 21st 04 01:26 AM


All times are GMT +1. The time now is 05:23 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"