Visual studio 2008 problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Svinja
    New Member
    • Nov 2007
    • 25

    Visual studio 2008 problem

    Hi,

    I made native win32 application in VS 2008, the problem is that it works only on my computer. Which files do i have to distribute with exe file? I distribute it with
    msvcr80.dll and msvcr90.dll and Microsoft.VC80. CRT.manifest and Microsoft.VC90. CRT.manifest and APP_NAME.interm ediate.manifest and it still doesnt work?

    PS: If i convert the VS 6.0 project into VS 2008 project then it works with only exe.
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Did you make a release build? If so, all you need onthe other machine is the .exe

    If this an MFC program? If so, the other machine needs the runtime MFC dll installed.

    Are you using an dlls? If so, they have to be loaded onthe other machine.

    You should not need any of the VS files associated with your project, unclusing all of your source code and youer headers.

    What error do you get when you try to run it on the other machine?

    Comment

    • Svinja
      New Member
      • Nov 2007
      • 25

      #3
      I didnt do release build, i didnt even know that it exists until now. I will try.
      It is not MFC app. Even default simple window program doesnt work. The error i get on other computers is Error executing program and nothing else. I have been using VS 6.0 for about five years and never had any problems. C# programs work great only this dont.

      Comment

      • Svinja
        New Member
        • Nov 2007
        • 25

        #4
        release build helps, thx a lot

        Comment

        Working...