Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Pasting embedded OLE objects to specific filename

The following code copies an embedded OLE object and pastes it to the
specified path:

Sub Test()
ActiveSheet.OLEObjects("Object 1").Copy

'paste to activeworkbook's path
CreateObject("Shell.Application") _
.Namespace(ActiveWorkbook.Path) _
.Self.InvokeVerb "Paste"
End Sub

What about pasting the object and giving it a particular filename
during the paste action? With the code given, the object is pasted
correctly. However, by default, the filename used in the pasting is the
filename that was specified during the Insert Object Create from
File process (initial insert of the object).

Is there anyway to change the filename used in the paste?

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default Pasting embedded OLE objects to specific filename

Run a Dir() on the folder first, then check which is the new file
following the paste, then rename it....

Tim.


wrote in message
oups.com...
The following code copies an embedded OLE object and pastes it to
the
specified path:

Sub Test()
ActiveSheet.OLEObjects("Object 1").Copy

'paste to activeworkbook's path
CreateObject("Shell.Application") _
.Namespace(ActiveWorkbook.Path) _
.Self.InvokeVerb "Paste"
End Sub

What about pasting the object and giving it a particular filename
during the paste action? With the code given, the object is pasted
correctly. However, by default, the filename used in the pasting is
the
filename that was specified during the Insert Object Create from
File process (initial insert of the object).

Is there anyway to change the filename used in the paste?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 129
Default Pasting embedded OLE objects to specific filename

I don't know how to name the file while pasting.
but after pasted, it can be renamed. for example,

Sub test2()
Dim FileName As String
Dim TempPath As String
Dim TempFile As String

On Error GoTo ErrorHandler

If ActiveWorkbook.Path = "" Then Exit Sub
FileName = ActiveWorkbook.Path & "\My.mdb"
TempPath = ActiveWorkbook.Path & "\TMP"

If Dir(FileName) < "" Then
MsgBox "'" & FileName & "' already exists."
Exit Sub
End If

If Dir(TempPath, vbDirectory) = "" Then MkDir TempPath

If Dir(TempPath & "\") < "" Then
MsgBox "Remove all files in '" & TempPath & "', then try again."
Exit Sub
End If

'copy an oleobject
ActiveSheet.OLEObjects("Object 1").Copy

'paste to a temp-folder
CreateObject("Shell.Application") _
.NameSpace(CVar(TempPath)).Self.InvokeVerb "Paste"

'get the filename
TempFile = Dir(TempPath & "\")
If TempFile = "" Then
MsgBox "No file."
Exit Sub
End If

'move and rename the file
Name TempPath & "\" & TempFile As FileName

'TempPath seems to be locked while procedures are running.
'the below might not be able to remove it.
On Error Resume Next
Kill TempPath & "\*"
RmDir TempPath

Exit Sub

ErrorHandler:
MsgBox Err.Description, vbExclamation
Exit Sub

End Sub

--
HTH

okaizawa


wrote:
The following code copies an embedded OLE object and pastes it to the
specified path:

Sub Test()
ActiveSheet.OLEObjects("Object 1").Copy

'paste to activeworkbook's path
CreateObject("Shell.Application") _
.Namespace(ActiveWorkbook.Path) _
.Self.InvokeVerb "Paste"
End Sub

What about pasting the object and giving it a particular filename
during the paste action? With the code given, the object is pasted
correctly. However, by default, the filename used in the pasting is the
filename that was specified during the Insert Object Create from
File process (initial insert of the object).

Is there anyway to change the filename used in the paste?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Embedded objects(?) Brad Excel Discussion (Misc queries) 2 September 18th 09 04:45 PM
Embedded Objects Pete[_3_] Excel Discussion (Misc queries) 2 January 18th 08 05:03 PM
Embedded objects Mike25 Excel Discussion (Misc queries) 1 March 23rd 06 02:05 PM
Embedded Objects Lightfoot Excel Discussion (Misc queries) 0 December 30th 05 02:20 PM
embedded objects John[_62_] Excel Programming 0 October 29th 03 08:05 PM


All times are GMT +1. The time now is 11:12 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"