473,387 Members | 1,532 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

VS Studio / VS.NET Integration

I already have VS Studio.Net 2003 installed.

I have need to compile some vanilla C, not C# programs on the same
PC.

If I install VS Studio will it integrate into VS.NET's IDE (which
I would prefer) or does it have to install its own IDE, editors,
and associated environment? I would prefer to be able to do both
C and C# from within the same IDE.

Regards, Oz
--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 21 '05 #1
6 1247
VS 6.0 and VS.NET are 2 separate and distinct pieces of software. They can
both be installed and exist side-by-side with each other (install VS 6.0
first and VS.NET after), but they are each used to develop different types
of applications.
"ozbear" <oz****@bigpond.com> wrote in message
news:418564cb.1042014203@news-server...
I already have VS Studio.Net 2003 installed.

I have need to compile some vanilla C, not C# programs on the same
PC.

If I install VS Studio will it integrate into VS.NET's IDE (which
I would prefer) or does it have to install its own IDE, editors,
and associated environment? I would prefer to be able to do both
C and C# from within the same IDE.

Regards, Oz
--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

Jul 21 '05 #2
I use Visual Studio .Net 2003's IDE to write C programs all the time. The
VS.Net IDE is designed to do this...so I wouldn't install VS 6 at all if I
were you.

Besides, what you do think Microsoft is using to write their code?

ShaneB
"Scott M." <s-***@nospam.nospam> wrote in message
news:ek**************@TK2MSFTNGP15.phx.gbl...
VS 6.0 and VS.NET are 2 separate and distinct pieces of software. They
can both be installed and exist side-by-side with each other (install VS
6.0 first and VS.NET after), but they are each used to develop different
types of applications.

Jul 21 '05 #3
You can use VS.NET to write a C application with or without managed
extensions.

But you can NOT use VS.NET to create anything in VB 6.0 or project types
that are specific to COM (like .ocx's).

VS.NET and VS 6.0 are 2 SEPARATE AND DISTINCT products.
"ShaneB" <st********@yahoo.com> wrote in message
news:u4**************@TK2MSFTNGP14.phx.gbl...
I use Visual Studio .Net 2003's IDE to write C programs all the time. The
VS.Net IDE is designed to do this...so I wouldn't install VS 6 at all if I
were you.

Besides, what you do think Microsoft is using to write their code?

ShaneB
"Scott M." <s-***@nospam.nospam> wrote in message
news:ek**************@TK2MSFTNGP15.phx.gbl...
VS 6.0 and VS.NET are 2 separate and distinct pieces of software. They
can both be installed and exist side-by-side with each other (install VS
6.0 first and VS.NET after), but they are each used to develop different
types of applications.


Jul 21 '05 #4
He asked about compiling some "vanilla C" code which to me, means simple C
code...not creating COM objects or using VB6. If that is the case, there is
no reason for him to install VS6 from the information he gave.

ShaneB
"Scott M." <s-***@nospam.nospam> wrote in message
news:uC**************@TK2MSFTNGP09.phx.gbl...
You can use VS.NET to write a C application with or without managed
extensions.

But you can NOT use VS.NET to create anything in VB 6.0 or project types
that are specific to COM (like .ocx's).

VS.NET and VS 6.0 are 2 SEPARATE AND DISTINCT products.
"ShaneB" <st********@yahoo.com> wrote in message
news:u4**************@TK2MSFTNGP14.phx.gbl...
I use Visual Studio .Net 2003's IDE to write C programs all the time. The
VS.Net IDE is designed to do this...so I wouldn't install VS 6 at all if I
were you.

Besides, what you do think Microsoft is using to write their code?

ShaneB
"Scott M." <s-***@nospam.nospam> wrote in message
news:ek**************@TK2MSFTNGP15.phx.gbl...
VS 6.0 and VS.NET are 2 separate and distinct pieces of software. They
can both be installed and exist side-by-side with each other (install VS
6.0 first and VS.NET after), but they are each used to develop different
types of applications.



Jul 21 '05 #5
On Mon, 1 Nov 2004 15:19:25 -0500, "ShaneB" <st********@yahoo.com>
wrote:
He asked about compiling some "vanilla C" code which to me, means simple C
code...not creating COM objects or using VB6. If that is the case, there is
no reason for him to install VS6 from the information he gave.

ShaneB


Shane,
Correct. I have some vanilla C code I occasionally need to deal
with. No VB, no COM.

But surely I have to install something beyond VS.NET 2003, or does
it have a C compiler hidden someplace that is used on the basis
of a .c .h file extension?

Regards, Oz
--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 21 '05 #6
Depending on your installation, you may or may not have the compiler and
related files (headers, libs, etc...) installed already. The easiest way to
tell is by checking the splash screen. If it shows an icon for "Microsoft
Visual C++ .NET" , it's already installed. If not, you'll have to run
Setup.exe on the installation DVD, select Option 2 (the "Repair, Reinstall,
Install Additional Features..." one), and check the "Visual C++ .NET" (under
"Language Tools") to add it. Anyway....

One it's installed, you can simply follow these steps to create a new
project and add your C/CPP files to it:

Open up VS.Net
Hit CTRL_SHIFT-N (New Project shortcut)
When the New Project dialog opens: Under Project Type, select "VC++
Projects", under Templates, select "Win32 Project"
Enter a project name/location and hit OK
The App Wizard dialog will open. From there, select the type of app
you're creating (Windows or console or whatever), and then enable the "Empty
Project" checkbox so the wizard doesn't generate any files for you.
Click OK

From there, drag your header files, .c, .cpp files to the Project Explorer.
From there, cross your fingers and build your project :)

ShaneB

"ozbear" <oz****@bigpond.com> wrote in message
news:4186ab0f.1125537687@news-server...
On Mon, 1 Nov 2004 15:19:25 -0500, "ShaneB" <st********@yahoo.com>
wrote:
He asked about compiling some "vanilla C" code which to me, means simple C
code...not creating COM objects or using VB6. If that is the case, there
is
no reason for him to install VS6 from the information he gave.

ShaneB


Shane,
Correct. I have some vanilla C code I occasionally need to deal
with. No VB, no COM.

But surely I have to install something beyond VS.NET 2003, or does
it have a C compiler hidden someplace that is used on the basis
of a .c .h file extension?

Regards, Oz
--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

Jul 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: gj | last post by:
I'm working on a build environment for .NET application where the developers are using visual studio and VSS. In order to pull only the changed modules (and any required dependencies) I want to...
0
by: Stylus Studio | last post by:
Stylus Studio 6 XML Enterprise Edition Now Integrates with TigerLogic XDMS XQuery and Native XML Database Bedford, MA, -- Stylus Studio ( http://www.stylusstudio.com ), the industry-leading...
0
by: Stylus Studio | last post by:
World's Most Advanced XML Schema Editor Adds Support for IBM AlphaWorks XML Schema Quality Checker to Improve XML Schema Style and Quality BEDFORD, MA -- 09/13/2005 -- Stylus Studio...
2
by: Wendy Elizabeth | last post by:
I was just assigned a project at work to setup a CRM web system. However from what I have heard Visual Studio 2005 Team System is suppose to be a CRM system. Is it a metholodologythat Microsoft...
30
by: Cowboy \(Gregory A. Beamer\) | last post by:
There seems to be a lot of confusion on the versions of Visual Studio 2005. My latest blog entry covers the different versions: Main URL:...
26
by: Bruno Jouhier [MVP] | last post by:
I'm currently experiencing a strange phenomenon: At my Office, Visual Studio takes a very long time to compile our solution (more than 1 minute for the first project). At home, Visual Studio...
5
by: JoeBrain00 | last post by:
Sorry if this is in the wrong forum, I couldn't find another place for it... Does anyone use Visual Integration Studio? ( http://www.crossrhoades.com ) I am attempting to load some Oracle...
0
by: fiona | last post by:
Innovasys Ltd., a leader in help authoring and documentation tools, today announced the inclusion of a tailored version of the Innovasys HelpStudio help authoring product, HelpStudio Lite, in the...
0
by: stylusstudio | last post by:
Dear microsoft.public.dotnet.xml, Stylus Studio has published a new educational video tutorial entitled: Visual Data Integration Using Stylus Studio XML Pipeline. To view this new tutorial,...
8
by: WT | last post by:
Is it normal that Visual Studio sets the PreInit handler for a Page from the OnInit code ? No chance to fire it as OnPreInit is run befor OnInit. ??? CS
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.