How to enable Profiling under Microsoft Visual C++ 6.0 - visual-c++

I use Microsoft Visual C++ 6.0 For a particular project which I have, under the the "Project" tab, i see there is one menu - "Profile", but when I click on it, it says - Enable the profiling in project settings. So to "Enable Profiling", when I check under under Project Settings-->Link-->Category General-->Enable profiling seems to be disabled. I cannot check the check box there.
I have seen this profiling working under Microsoft Visual C++ 6.0 earlier where it gives CPU cycles consumed while running a program at end of its completiong.
How can i enable this profiling?
Does it need any extra file/dll to be copied in the installation folder of the tool or something?
thank you.
-AD

Have you got the Standard edition of Visual C++? Profiling is only supported in the Professional and Enterprise editions.

Related

Create a setup file in Visual Studio 2012

I have a windows form project and I want to create an installation package for this project. How can I create a setup file in Visual Studio 2012 ? My project is without data base.
How to create a Setup package using Visual Studio 2012.NET?
Microsoft released the Visual Studio Installer Project extension in April of this year, the catch is it's for VS2013, not VS2012.
http://blogs.msdn.com/b/visualstudio/archive/2014/04/17/visual-studio-installer-projects-extension.aspx
The 'lite' InstallShield option remains in VS if you need something with more flexibility.
Advanced Installer also has a free version that includes an extension for VS. This is a commercial tool but the extension is included in the free edition as I said, for more advanced features you need to purchase a Professional or higher licenses and edit the project direct from Advanced Installer GUI, not from VS. (but you can still use the project in the VS solution, so you get the MSI built at the end of your build process)
Visual Studio setup projects (vdproj) are not supplied with VS 2012
There are several solutions for you:
You could use InstallShield instead.
If you don't want or
can't use InstallShield for any reason, you could try WiX. This
toolset builds Windows installation packages from XML source code.
If you only use Windows Presentation Foundation (.xbap), Windows Forms (.exe), console application (.exe), or Office solution (.dll) you could look at ClickOnce. To use this you should right click on the project file in the solution explorer and select "Publish" from the pop-up menu.
Alternatively you can use previous version of Visual Studio (2010).

Where is the Architecture Menu in Visual Studio 2012 Premium?

I can't seem to access the Architecture Tools available in Visual Studio 2012 Premium Version 11.0.60610.01 Update 4 using .Net Version 4.5.50709
My only visible menu options on startup are:
FILE
EDIT
VIEW
DEBUG
TEAM
SQL
TOOLS
TEST
ANALYZE
WINDOW
HELP
And with a project open these two extra items appear:
PROJECT
BUILD
There is nothing under the any of the menus related to Architecture Tools except for
VIEW > Toolbars > Architecture Designers
The Architecture Designers toobar's buttons are all grayed out when enabled.
Do I need to do something extra after the Visual Studio 2012 install to make them show up?
Does it only work for certain types of projects (I am trying to make an MVC4 project)? Does it have to be enabled on a per-project basis?
Is there a difference between how the Architecture tools work in Premium vs Ultimate?
Isn't it only available in VS 2012 Ultimate? (which used to be called "Architecture Edition".)

Visual Studio through MSDN: Can they know it is not mine?

So, I was arguing with a great friend of mine about Visual Studio 2012 and Microsoft being able to detect which one you used. According to him if you get your hands on a direct MSDN download of Visual Studio 2012 Professional, and you end up creating an app, like a game or something, and then you submit it to the Windows App Store, they will never know which visual studio version you truly used to develop the App, or if you were the owner of it or not.
Is he right? Because I thought Visual Studio some how left a footprint behind on the .exe file letting Microsoft know about licensing information. Or should I go apologize to him for calling him a f...ing liar.
If you guys say it does leave a print, can you show some proof, or a link to read more about it? Thanks guys.
Your friend is likely correct. Why would MS bother when they make freely available all the tools you need to compile your program. You can build .Net applications without the Visual Studio IDE. See this related question
Is it possible to install a C# compiler without Visual Studio?

Customise Visual Studio 2012 installation (C# only)

Is there any way to customise which languages are installed with Visual Studio 2012? I only want C#, no VB or F# etc.
I'm trying to install Visual Studio 2012 Premium RTM.
The first install page I see this:
and the next I see this:
but there's no option to choose which languages I want to install :-(
I think thats as much customization as your going to get.
http://blogs.msdn.com/b/visualstudio/archive/2012/06/04/setup-improvements-for-visual-studio.aspx
http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/2639283-bring-back-the-visual-studio-installation-customiz
According to those links they [Microsoft] removed then brought back the option for customization. And what you see there is all you get. I know my installation of VS 2012 (upgraded express to ultimate) is only taking up 2 gb so IDK why it is saying it needs 6.
I've raised the point on the Visual Studio installation forum, see what comes of it.

How to enable Profiling under Microsoft Visual C++ 6.0?

Merged with How to enable Profiling under Microsoft Visual C++ 6.0.
I use Microsoft Visual C++ 6.0
For a particular project which I have, under the the "Project" tab, i see there is one menu - "Profile", but when I click on it, it says - Enable the profiling in project settings.
So to "Enable Profiling", when I check under under Project Settings-->Link-->Category General-->Enable profiling seems to be disabled. I cannot check the check box there.
I have seen this profiling working under Microsoft Visual C++ 6.0 earlier where it gives CPU cycles consumed while running a program at end of its completiong.
How can i enable this profiling?
Does it need any extra file/dll to be copied in the installation folder of the tool or something?
thank you.
-AD

Resources