PC Review


Reply
Thread Tools Rate Thread

Automatically resize a picture to a cell

 
 
Gpompidou
Guest
Posts: n/a
 
      18th Apr 2008
How can I automatically resize a picture to a cell of preset width &
height?
 
Reply With Quote
 
 
 
 
jaf
Guest
Posts: n/a
 
      22nd Apr 2008
Why? A cell can not contain a picture.


John


"Gpompidou" <(E-Mail Removed)> wrote in message
news:fc33506b-c9e9-4f9f-894b-(E-Mail Removed)...
> How can I automatically resize a picture to a cell of preset width &
> height?


 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      23rd Apr 2008
I use this to add a picture. Maybe you can pick out the pieces you need:


Option Explicit
Sub testme01()

Dim myPict As Picture
Dim myPictName As String

myPictName = "C:\test.jpg"

With ActiveSheet
With .Range("a1:b9")
Set myPict = .Parent.Pictures.Insert(Filename:=myPictName)
myPict.Top = .Top
myPict.Left = .Left
myPict.Width = .Width
myPict.Height = .Height
myPict.Name = "Pict_" & .Cells(1).Address(0, 0)
End With
End With
End Sub

I'm not sure if you want to fix the .width or the .height, though.




Manually, you could adjust its size/position by holding down the Alt key and
using the grab handles. The picture will snap-to the edges of the cells.

Gpompidou wrote:
>
> How can I automatically resize a picture to a cell of preset width &
> height?


--

Dave Peterson
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Resize cell to fit picture Gary888 Microsoft Excel Misc 3 26th Jan 2010 04:19 PM
Automatically resize a cell straightedge32 Microsoft Excel Programming 3 6th Jan 2010 11:31 PM
Not automatically resize the picture mcgynty Windows Vista Mail 2 3rd Jun 2008 09:35 AM
How can I get a cell to automatically resize vertically with the amount of text in it ?? luke58 Microsoft Excel Discussion 2 13th Apr 2007 08:03 PM
How to automatically resize inserted picture Ben Microsoft Powerpoint 2 2nd Mar 2004 08:21 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:25 PM.