Making dlls with Visual C++ Express Edition Beta 2

I am wondering if there is a way to make a dll in Beta 2. The radio buttons are greyed out. I do not have Beta 1. Is there a way I could make a dll in the win32 application? I want to make a plugin for Maya. Though I do not want to pay money in order to do this. Is there an easy way to do this. Thanks.
[304 byte] By [falcon22] at [2007-12-16]
# 1

It looks like you are correct in that the wizard disables the radio button. I will look into fixing that but in the meantime, you can always create the project as a static lib and then go to the project properties and switch the configuration type to make it a dll project.

Thanks,

BorisJabesMS at 2007-9-9 > top of Msdn Tech,Visual C++,Visual C++ General...
# 2
Step by step instructions on how to do this would be nice. I too am trying to start development on Maya plugins, but can't find the DLL options. In my beta2 version of VC++ Express 2005 In the New Projects wizard there is no option for static libraries, just CLR libraries and Control Libraries.
Soviut at 2007-9-9 > top of Msdn Tech,Visual C++,Visual C++ General...
# 3
Indeed, I spoke a little quickly.
One of the wizards available for new projects is "Win32 Project". This wizard then has a section called "Application settings" where one of the options is "static library" (and there's also "DLL" but it's grayed out, as mentioned before). If you choose this option, finish the wizard, you can then manually edit the project to be a dll in the manner which I described above.
I hope this helps,
BorisJabesMS at 2007-9-9 > top of Msdn Tech,Visual C++,Visual C++ General...
# 4
You should also download the 'Platform SDK' (search MSDN) ...it has a skeleton sample of a DLL project in there as well as lots of other stuff. Big download though. Also has all the documentation for Windows internals and all that good stuff...kind of a must have if you're going to do Windows development.

Davey

Davey at 2007-9-9 > top of Msdn Tech,Visual C++,Visual C++ General...
# 5

I went to View | Propert Manager, then Double Clicked on the Release|Win32 Heading. That opened up the Release Property Pages which has a Configuration Type entry under Project Defaults. That is where I could select a DLL.

This was with the Release version, not Beta 2.

nkoranda at 2007-9-9 > top of Msdn Tech,Visual C++,Visual C++ General...