Results 1 to 7 of 7

400 error, picture insert, resize

Threaded View

  1. #1
    Forum Contributor
    Join Date
    07-16-2009
    Location
    Montreal, Canada
    MS-Off Ver
    Excel 2013
    Posts
    114

    400 error, picture insert, resize

    I'm trying to write a macro to insert a picture into a selected range and resize and center it while keeping the aspect ratio. it doesn't seem to work and i can't figure out why. it would insert the picture and size it to about a 1/4 of the range and leave it in the top left. I disable the error trap and it's giving me a 400 error with no debugging options. can anyone see what i'm doing wrong in my macro?. any help would be greatly appreciated.

    Chris


    Sub PictureInsert()
        Dim pic As Picture
        Dim sPic As String
        Dim rPos As Range
        Dim ws As Worksheet
        Dim shp As Shape
        
        Dim rH As Double, rW As Double
        Dim fH As Double, fW As Double
        Dim fH2 As Double, fW2 As Double
        Dim fMod As Double
               
        Set ws = ThisWorkbook.Worksheets("Sheet1")
        Set rPos = ws.Range(Selection.Address)
        rH = rPos.Height: rW = rPos.Width
       
       
     '       For Each Shp In ws.Shapes
     '   Debug.Print Shp.Type
     '           If Shp.Type = msoPicture Then
     '               Shp.Delete
     '           End If
     '       Next Shp
        
        'On Error GoTo ErrorTrap
            sPic = Application.Dialogs(xlDialogInsertPicture).Show
            If TypeName(Selection) <> "Picture" Then Exit Sub
            
        Application.ScreenUpdating = False
                
        Set pic = ws.Pictures.Insert(sPic)
            pic.ShapeRange.LockAspectRatio = msoFalse
        
        fH = Selection.Height / rH
        fW = Selection.Width / rW
        fMod = IIf(fH > fW, fH, fW)
            
        With Selection
            .Left = rPos.Left
            .Top = rPos.Top
             fH2 = .Height
             fW2 = .Width
            .Width = fW2 / fMod - 10
            .Height = fH2 / fMod - 10
        End With
        
        With Selection
             rPos.Left = .Left + ((.Width - rPos.Width) / 2)
             rPos.Top = .Top + ((.Height - rPos.Height) / 2)
        End With
            
    'ErrorTrap:
     '       On Error GoTo 0
            Application.ScreenUpdating = True
            
    End Sub
    Last edited by Code Flunkie; 03-31-2010 at 02:27 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1