Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

.EXE or .DLL?

Status
Not open for further replies.

jayjay60

Programmer
Jun 19, 2001
97
FR
I have to create a "pricing tools" with Visual C++. For this application I have to use parameters which are kept in Excel worksheet and use them in functions which are implemented in c++. I don't know what is the better way for this kind of application. I don't know if I have to export C++ code to excel worksheet or import my parameters in C++ and use them.
So, I believe that I have to do a choice between EXE application or DLL.
It's the first time that I use VC++, before I worked under UNIX environment,so...

thanks for your help

Gerald
 
DLL is much faster and better. ProxyStub there are mush shorter and simplier. Choose DLL. In the case in which your application take too much memory remember what a dll run in the clients memory space. In this case is metter to use exe. Also if you want a server what can run as a different application you can yse also an exe. If you use frequently calls to fast executed function in the server is better to make a dll. John Fill
1c.bmp


ivfmd@mail.md
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top