Results 1 to 20 of 32

Thread: A Class Module to store Images from a folder for later reuse in Workbook Excel VBA

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #29
    The earlier sample file i attached used your Collection approach only. Dictionaries can store any datatypes including Objects (not sure of Picture types if they are not considered as objects...).

    I am also using the same declarations that you provided, but still the same issue. The only way it works, is as shown in my earlier reply, i am able
    to load the pic directly i.e.

    Thisworkbook.sheets("PicSht").Image1.Picture=IPic
    but not by assigning from a Collection
    PicCollect.Add PastePicture(CF_ENHMETAFILE)

    Last edited by sifar786; 02-22-2020 at 08:38 AM.

Tags for this Thread

Posting Permissions

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