Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Dave,
Using this macro, how can I insert the picture in a range say- A36:G44, I have been fooling around with the Set myRng = ActiveCell line but can't seem to get the proper syntax Dave 2. Dave Peterson Nov 14 2005, 5:27 am show options Newsgroups: microsoft.public.excel From: Dave Peterson - Find messages by this author Date: Mon, 14 Nov 2005 06:27:16 -0600 Local: Mon, Nov 14 2005 5:27 am Subject: insert picture Reply to Author | Forward | Print | Individual Message | Show original | Report Abuse Maybe you could give the user a macro to insert the picture. Then you'll have more control over what happens: Option Explicit Private Declare Function SetCurrentDirectoryA Lib _ "kernel32" (ByVal lpPathName As String) As Long Sub ChDirNet(szPath As String) Dim lReturn As Long lReturn = SetCurrentDirectoryA(szPath) If lReturn = 0 Then Err.Raise vbObjectError + 1, "Error setting path." End Sub Sub testme01() Dim myPictureName As Variant Dim myPict As Picture Dim myRng As Range Dim myCurFolder As String Dim myNewFolder As String myCurFolder = CurDir myNewFolder = "yourfoldernamehere" On Error Resume Next ChDirNet myNewFolder If Err.Number < 0 Then 'what should happen MsgBox "Please change to your own folder" Err.Clear End If On Error GoTo 0 myPictureName = Application.GetOpenFilename _ (filefilter:="Picture Files,*.jpg;*.bmp;*.tif;*.gif") ChDirNet myCurFolder If myPictureName = False Then Exit Sub 'user hit cancel End If Set myRng = ActiveCell Set myPict = myRng.Parent.Pictures.Insert(myPictureName) myPict.Top = myRng.Top myPict.Width = myRng.Width myPict.Height = myRng.Height myPict.Left = myRng.Left myPict.Placement = xlMoveAndSize End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I insert picture into cell so vlookup can return picture? | Excel Worksheet Functions | |||
insert a picture in to a comment but picture not save on hard disk | Excel Discussion (Misc queries) | |||
insert picture to a specfic range of cells | Excel Discussion (Misc queries) | |||
How to insert a picture | Excel Discussion (Misc queries) | |||
Insert Picture to Excel to specified range | Excel Programming |