View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Julia[_2_] Julia[_2_] is offline
external usenet poster
 
Posts: 4
Default Excel programming not using COM

Hi

As part of a larger application I have a VB program that is passed a
reference to an instance of an Excel application and I simply copy a
chart to the clipboard:

Dim oExcelApp As Object
' oExcel set in call to third party DLL
oExcelApp.ActiveSheet.ChartObjects(1).CopyPicture

I need to be able to do this exact same thing using 4D (a procedural
database programming language) and want to know if Excel allows you to
do this with a call to a function and not though object references.

Many thanks.
Julia.