Thread: dll in VBA
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
jacob[_3_] jacob[_3_] is offline
external usenet poster
 
Posts: 9
Default dll in VBA

Hi,
Have made something in c++ to convert a unix file to
dos format. I declare the function in a module using

Declare Function Unix2dos Lib "unixconvert.dll" _
(ByVal InputFile As String, ByVal OutputFile As String)
As Long

and then reference the dll in References under the tools
menu. I then call the function in a sub in the same
module containing the Declare statement using

ConvertStatus = Unix2dos(FileIn, FileOut)

and get Err=53, i.e. file not found. What could be wrong,
excepting typos?

Any help appreciated.

jacob