[Wine] Re: DLL not found

Sydcul wineforum-user at winehq.org
Sun Dec 11 01:45:52 CST 2011


eagleonorth wrote:
> I am testing a Norwegian financial and invoicing software with Wine 1.3.
> 
> The app is called "Matrix Økonomi" (www.matrix.no)
> 
> Most things seems to work fine, but PDF export is not working. The app says ".dll not found". 
> 
> I have checked with the publisher and they say that the DLL that they use for generating PDF's is called "DPDF_Gen.dll". 
> 
> I have confirmed that this file do exist in 
> 
> .wine > drive_c > Programfiler > Matrix Rs
> 
> Thanks for any hints!

I guess you just enter the following command in your command line (this is the syntax for a mac, but that doesn't matter:


Code:
wine ~/.wine/drive_c/Program\ Files/Matrix\ Rs/matrixrs.exe


The fault with that code is that your program tries to call the folder where he's in to find the DLL's, but in this case wine is copying it to a "temp folder", so he can't find the DLL's. The good code on a mac should be:

Code:
cd ~/.wine/drive_c/Program\ Files/Matrix\ Rs/
wine matrixrs.exe


Maybe the exact command is different because you are using an other OS or the file somewhere else, but i guess you understand the point i am trying to make.







More information about the wine-users mailing list