run without .net framework?
-
:) no, no i don't want to use .net :D
With the Standard edition of VS2005/2008, you can do native code using Win32 as well.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
although i am using .net c++, i want to run application while .net framework isn't installed on the another machine. anyone knows, is it possible? thanks.
darkonoid wrote:
i am using .net c++
You just told me you don't want to use .net. Here you are saying you are using it. Make up your mind, then.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
With the Standard edition of VS2005/2008, you can do native code using Win32 as well.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
ok thanks
-
darkonoid wrote:
i am using .net c++
You just told me you don't want to use .net. Here you are saying you are using it. Make up your mind, then.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
i use vs2005 platform because environment is capable, but when i run the executable file, it should not related with .net framework. when i say .net platform, i mention visual studio 2005/2008
-
i use vs2005 platform because environment is capable, but when i run the executable file, it should not related with .net framework. when i say .net platform, i mention visual studio 2005/2008
What kind of project are you creating? If you are creating .net projects, then you are stuck with the framework. If you don't want to use the framework, then go with MFC.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
What kind of project are you creating? If you are creating .net projects, then you are stuck with the framework. If you don't want to use the framework, then go with MFC.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
i create mfc applications on visual studio 6.0, but i want to create more quickly and easily. so i use visual studio 2005, however mfc applications needs .net framework on any machines
-
i create mfc applications on visual studio 6.0, but i want to create more quickly and easily. so i use visual studio 2005, however mfc applications needs .net framework on any machines
darkonoid wrote:
however mfc applications needs .net framework on any machines
Not so. MFC and .net are two completely different things.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
darkonoid wrote:
however mfc applications needs .net framework on any machines
Not so. MFC and .net are two completely different things.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
hmm ok, thanks a lot.
-
hmm ok, thanks a lot.
Unless you want to be really adventurous and mix the two together :-\
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
Unless you want to be really adventurous and mix the two together :-\
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
i couldn't tell what i want :D, english is not my native language :)
-
i see what you mention, but it doesn't work, that you tell
In fact it works as I told. I've done a lot of programs that way. The only caveat maybe the runtime version: you have two options, link with the static version of the runtime (
/MT
option) of compiler command line or deploy the runtime DLL toghether with your application. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
[my articles] -
darkonoid wrote:
i am using .net c++
You just told me you don't want to use .net. Here you are saying you are using it. Make up your mind, then.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
Hi there. have you try this my friends ? if your project is an win32 application project !! i think you can use this configuration : Project menu --> project properties --> configuration properties --> general --> in project defaults group select No Common Language Runtime support for common language runtime support . your application will never need to .net framework
DMASTER
-
Hi there. have you try this my friends ? if your project is an win32 application project !! i think you can use this configuration : Project menu --> project properties --> configuration properties --> general --> in project defaults group select No Common Language Runtime support for common language runtime support . your application will never need to .net framework
DMASTER
That'll work as well. I think the OP wasn't sure exactly what he was going to develop with.
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon