![]() |
|
#1
|
|||
|
|||
|
Hi,
In need help … I have macro to insert picture into a sheet: Code:
Sub Gen_InsertPicture()
Dim sPicture As String, pic As Picture
FilterPics = "All Pictures, *.gif;*.jpg;*.jpeg;*.jpe;*.bmp;*.png;*.tif"
sPicture = Application.GetOpenFilename(FilterPics, , "select picture")
If sPicture = "False" Then Exit Sub
Set pic = ActiveSheet.Pictures.Insert(sPicture)
With pic
.ShapeRange.LockAspectRatio = msoTrue
'.Height = Selection.Offset(Selection.Rows.Count, 0).Top - Selection.Top
.Width = Selection.Offset(0, Selection.Columns.Count).Left - Selection.Left
.Top = Selection.Top
.Left = Selection.Offset(0, Selection.Columns.Count).Left - .Width
.Placement = xlMoveAndSize
End With
Set pic = Nothing
If ActiveSheet.CodeName = "Sheet9" Then
With Range("DrwgArea").Interior
.Pattern = xlNone
End With
End If
End Sub
the file is Attached
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Converting a left to right doc to a right to left | seli | Word | 3 | 04-23-2012 11:39 PM |
| Link Watermark to custom property | kerend | Word | 0 | 04-08-2012 05:03 AM |
| Left arrow won't work on Word | LaBecs | Word | 2 | 09-26-2011 09:27 AM |
Access to the property of the current table
|
b0x4it | Word VBA | 2 | 05-26-2011 06:25 AM |
| set icon for user property | nav1982 | Outlook | 0 | 11-11-2009 05:40 AM |