+ Reply to Thread
Results 1 to 3 of 3

Macro coding for inserting an object

  1. #1
    Registered User
    Join Date
    06-13-2012
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2007
    Posts
    2

    Macro coding for inserting an object

    Hello,

    Before I go asking for favors I have been reading the forum for guidance for a while now and it has been very helpful. So thank you to everyone whom helps by responding to posts.

    Recently I have been trying to put a template together for a group of computer literate older men so just explaining the directions to them wont cut it. What I have done is created a button with a macro which will allow them to insert a file, but once that file is inserted it wont open from other computers. I know that if you use "Insert Object" then "Create from file" it will solve this problem but I don't know how to create a macro which will do this.

    My original coding is:


    Sub btnAddFile_Click()

    Dim vFile As Variant
    vFile = Application.GetOpenFilename("All Files,*.*", Title:="Find file to insert")
    If LCase(vFile) = "false" Then Exit Sub
    ActiveSheet.OLEObjects.Add Filename:=vFile, Link:=True, DisplayAsIcon:=True, IconFileName:= _
    "C:\WINDOWS\Installer\{AC76BA86-7AD7-1033-7B44-A94000000001}\PDFFile_8.ico", _
    IconIndex:=0, IconLabel:=vFile

    End Sub

    Any help as to how to adjust would be greatly appreciated.

  2. #2
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Macro coding for inserting an object

    I suspect you simply need to change
    Please Login or Register  to view this content.
    to
    Please Login or Register  to view this content.
    Please note that you need to use code tags when posting code here or a moderator will slap you.
    Everyone who confuses correlation and causation ends up dead.

  3. #3
    Registered User
    Join Date
    06-13-2012
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Macro coding for inserting an object

    That was exactly it... I thought it would be the opposite for some reason. And I am sorry about the lack of code tags, please dont slap me. I will make sure to use code tags from this day forward. Thank you so very much.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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