Re: Problems using Platoform SDK with VC++ 2005 Express Beta 2



"tmr_net" <tmrnet@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote...

>I followed the directions in this link
>
> "Using Visual C++ 2005 Express with the Microsoft Platform SDK"
> http://lab.msdn.microsoft.com/express/visualc/usingpsdk/default.aspx
>
> as best as I can, but I still can't create a win32 application project with
> the project wizard. I can see the Windows Application option...but it is
> grayed out and I can't select it.
>
> The only real ambiguity in the instructions is editing the paths in the
> VCProjectEngine.dll.express.config file. It is unclear from the article if
> the order of insertion of the new paths matters.....I tried inserting them in
> front of all the default paths...and I tried putting them at the
> end...neither seemed to work.
>
> Any ideas on what I could be doing wrong?

The option to make a Win32 app (i.e. one with a WinMain() entry point) directly was removed from the
Express Edition, because it's pointless to be able to make one without the Platform SDK and that
doesn't come bundled with this edition. However you can make one easily enough; just make a Win32
Console app, then change the properties afterwards. On the Linker -> System tab change the SubSystem
to Windows (/SUBSYSTEM:WINDOWS), and on the C/C++ -> Preprocessor tab change the _CONSOLE definition
to _WINDOWS. You should now be in the same state you'd be in if you'd created the file as a Win32
app (at least this works on previous versions of VC...) Note you need a .cpp file in the project for
the C/C++ tab to appear.

Andrew


.



Relevant Pages

  • Re: Charles Petzold ! How to start?
    ... >>> .NET and his directions of creating a Windows program somehow don't ... Here are the directions in his book. ... Select Win32 application. ... >>> indicated in the Location field. ...
    (microsoft.public.vc.language)
  • Re: Charles Petzold ! How to start?
    ... >> .NET and his directions of creating a Windows program somehow don't ... Here are the directions in his book. ... Select Win32 application. ... >> indicated in the Location field. ...
    (microsoft.public.vc.language)
  • Re: debuging
    ... I am a newbie in win32 software hacking. ... when i have a open source software,i use the gdb to debug the software,but the most of win32 app, is not a open source,why i know the functions?the operations?what tools i will use to this? ... Grep'ing through source is a LOT less time consuming than RCE'ing ...
    (Vuln-Dev)
  • Re: Callbacks into another assembly
    ... I've created a windows service using the Win32 app ... > works just fine when I compile all my code and classes in a normal ...
    (microsoft.public.dotnet.general)
  • Is a Managed MDI child possible from a WIN32 MDI parent?
    ... It is a Win32 app ... with a Multiple Document window area where it displays child windows. ... I add functionallity by writing Win32 dlls. ... Is it even possible to have a .Net winform be a MDI child to a Win32 ...
    (microsoft.public.dotnet.languages.vc)

Loading