Change Useform, VBA code

KlausW

Active Member
Joined
Sep 9, 2020
Messages
378
Office Version
  1. 2016
Platform
  1. Windows
Hi

Anyone who can help modify this Useform, VBA code?

What I would like it to do is to start by inserting images in cell A1 and below.

And retrieve them from cell I3 in sheets (Stamdata)

Any help will be appreciated

Best regards
2023-05-21.png

Klaus W


VBA Code:
Option Explicit

Private Sub cmdCancel_Click()
    Unload Me
End Sub

Private Sub cmdOK_Click()
    Const cBorder = 2
    Dim vArray As Variant, vPicture As Variant, pic As Shape, rng As Range
    If Me.RefEdit1 = "" Then
        Me.RefEdit1.SetFocus
        MsgBox "Please select a cell, then try again.", vbExclamation
        Exit Sub
    End If
    vArray = Application.GetOpenFilename(FileFilter:="Pictures (*.png; *.jpg; *.jpeg; *.tif), *.png; *.jpg; *.jpeg; *.tif", _
        Title:="Select Picture to Import", MultiSelect:=True)
    If Not IsArray(vArray) Then
        MsgBox "You didn't select any pictures. Please try again.", vbExclamation
        Exit Sub
    End If
    Set rng = Range(Me.RefEdit1).MergeArea
    For Each vPicture In vArray
        Set pic = ActiveSheet.Shapes.AddPicture(Filename:=vPicture, LinkToFile:=False, SaveWithDocument:=True, _
                Left:=rng.Left + cBorder, Top:=rng.Top + cBorder, Width:=-1, Height:=-1)
        With pic
            .LockAspectRatio = False
            .Width = rng.Width - 2 * cBorder
            .Height = rng.Height - 2 * cBorder
            .Placement = xlMoveAndSize
        End With
        If Me.OptionButton1 Then
            Set rng = rng.Offset(1, 0)
        Else
            Set rng = rng.Offset(0, 1)
        End If
    Next vPicture
    Set pic = Nothing
    Unload Me
End Sub

Private Sub UserForm_Click()

End Sub
 
If I3 in Stamdata is a path and you want all the pictures that have a jpg or jpeg extension from that folder then something like this would work.
Code:
Sub Get_All_Pictures()
Dim i As Long, sht As Worksheet, fldr As String, shpFile As String
i = 1
Set sht = Worksheets("Sheet1")    '<---- Sheet name where picyures go. Change as required.
fldr = Worksheets("Stamdata").Range("I3").Value & Application.PathSeparator
shpFile = Dir(fldr & "*.jp*")
Do While shpFile <> ""
    sht.Shapes.AddPicture(fldr & shpFile, 0, -1, Cells(i, 1).Left, Cells(i, 1).Top, Cells(i, 1).Width, Cells(i, 1).Height).Name = "Picture " & i
shpFile = Dir
i = i + 1
Loop
End Sub
 
Upvote 0

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Dear DanteAmor thank you very much for your help. I choose to use the solution that jolivanes has made. Thank you for the cooperation, good day to you from me in Denmark.
Best Regards KlausW
 
Upvote 0
Thank you for the cooperation, good day to you from me in Denmark.
Best Regards KlausW

My macro requires a simple change.
I adjusted the name of the sheets. They are highlighted in blue. Also the macro includes other image types that you put in your original post(FileFilter:="Pictures (*.png; *.jpg; *.jpeg; *.tif)..)

Please try again:
Rich (BB code):
Private Sub cmdOK_Click()
  Const cBorder = 2
  Dim vArray As Variant, vPicture As Variant, pic As Shape, rng As Range
  Dim sPath As String, s As String
  
  sPath = Sheets("Stamdata").Range("I3").Value
  If sPath = "" Then Exit Sub
  If Dir(sPath, vbDirectory) = "" Then Exit Sub
  If Right(sPath, 1) <> "\" Then sPath = sPath & "\"
  Set rng = Range("A1")
  s = Dir(sPath & "*.*")
  Do While s <> ""
    If LCase(s) Like "*.png" Or LCase(s) Like "*.jpg" Or _
       LCase(s) Like "*.jpeg" Or LCase(s) Like "*.tif" Then
      Set pic = Sheets("Sheet1").Shapes.AddPicture(Filename:=sPath & s, _
          LinkToFile:=False, SaveWithDocument:=True, _
          Left:=rng.Left + cBorder, top:=rng.top + cBorder, Width:=-1, Height:=-1)
      With pic
        .LockAspectRatio = False
        .Width = rng.Width - 2 * cBorder
        .Height = rng.Height - 2 * cBorder
        .Placement = xlMoveAndSize
      End With
      Set rng = rng.Offset(1, 0)
    End If
    s = Dir()
  Loop
  Set pic = Nothing
  Unload Me
End Sub

--------------
I hope to hear from you soon.
Respectfully
Dante Amor
--------------​
 
Upvote 0
Solution
As you can see in Dante Amor's code, there can be, as you no doubt know, all kind of picture files that have different extensions.
I prefer to have only pictures in the folder and that way I don't need to worry about extensions.
If you're inclined to go that way, change this
VBA Code:
shpFile = Dir(fldr & "*.jp*")
to this
VBA Code:
shpFile = Dir(fldr & "*.*")
 
Upvote 0
Hi Dante Armor thanks I can use both solutions.
Many greetings Klaus from Denmark
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top