Visual C Express Edition 2005 on making dll.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can not make a dll. file in Visual C++ Express Edition 2005. It wont let
me. Is there any way to make one. Am I able to make one with this edition?
Thanks.
 
If you need a managed (.NET) DLL, you choose New Project -> Class
Library. If you need a native DLL, it's more tricky. You choose New
Project -> Win32 Console Application, click OK, and then read the
options carefully and you should find a radio button in the wizard that
switches to DLL mode. In VC++ 2003 it's pretty much hidden (it took me a
while to find the first time), in 2005 it's much more visible (use the
Next button in the wizard).

Tom
 
I found where the radio button is but it will not let me push it. So I can
not make this for a plug-in in Maya a 3D Software Package which is a .mll
file. This file format is close enough to make into the Maya format. The
radio button for the .dll is greyed out though. What can I do to fix this.
 
falcon22 said:
I found where the radio button is but it will not let me push it. So
I can not make this for a plug-in in Maya a 3D Software Package which
is a .mll file. This file format is close enough to make into the
Maya format. The radio button for the .dll is greyed out though. What
can I do to fix this.

1. Get another edition of Visual Studio 2005.

2. Get Visual Studio 2003.

3. Get the Visual C++ 2003 Toolkit

http://msdn.microsoft.com/visualc/vctoolkit2003/

-cd
 
Back
Top