View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] meldrum_scotland@yahoo.co.uk is offline
external usenet poster
 
Posts: 7
Default Write array from vb6 dll to a specified worksheet in Excel

Hi,

I have the following code:

Excel VBA Sub:

Sub CallVBDLL

VBDLL (rows,cols)

End Sub

In VB6 DLL I have the following:


Public Sub VBDLL (rows,cols)

Re Dim BugArray(rows,cols) as string
Go through rows and cols, classify and add to my BigArray(rows,cols)

*** I would like a method of writing the BigArray to a new worksheet
in the workbook without looping through array **

End Sub

Any help much appreciated.

Thank you in advance

Meldrum