473,387 Members | 1,834 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.

what is visual c++? (stupid question)

I know this is a *really* stupid question but what the hell is visual
c++? I downloaded it and it doesn't seem to work. It isn't like any c++
compiler I ever saw before and the manual on the Microsoft website did
not improve my comprehension of it at all. How do you compile your
source code with this thing? Is it a compiler at all? Am I crazy?

I know it would probably take too much time to answer my dumb questions
here but if you can point me in the direction of any info, it would be
much appreciated.

I know it might sound like I'm joking here, but I'm serious. I
downloaded this piece of software in the faint hope of reviving some of
my forgotten programming knowledge (took programming courses in
college, haven't done any programming recently, interested in taking it
up as a hobby) but I found I couldn't do anything at all with it! Boy,
do I feel like a fool.

Mark

Oct 27 '06 #1
6 1494
Malvolio wrote:
I know this is a *really* stupid question but what the hell is visual
c++?
It's a C++ compiler from Microsoft.
I downloaded it and it doesn't seem to work. It isn't like any c++
compiler I ever saw before and the manual on the Microsoft website did
not improve my comprehension of it at all. How do you compile your
source code with this thing? Is it a compiler at all? Am I crazy?
Well, the IDE may be a little confusing. You basically have to create a
new project and add your source files to the project, then build. You
can still compile using the command-line like any other compiler,
though.
I know it would probably take too much time to answer my dumb questions
here but if you can point me in the direction of any info, it would be
much appreciated.
The problem is not that it takes too much time to answer, but that this
newsgroup is for discussing C++ language issues rather than specific
compilers. You might get better help by asking in one of the
microsoft.public.vc.* newsgroups.

Of course, don't hesitate to ask C++ language questions here.

Regards,
Bart.

Oct 27 '06 #2
On 26 Oct 2006 22:14:25 -0700 in comp.lang.c++, "Malvolio"
<mg*****@vcn.bc.cawrote,
>How do you compile your source code with this thing?
Assuming you have created your source file with your favorite
editor,
.. run vcvars32.bat in your command window to set up environment
variables
.. use the cl command to compile. cl /? for a summary of options.
cl /EHsc foo.cpp

It's still not too clear what is supposed to be "visual" about it.

Oct 27 '06 #3
Hi,

I really recommend spending a little time to get familiar with the GUI, it
just takes maybe a few hours and is really going to pay off when doing
things like debugging.

Just spend some time on one or more Visual C++ tutorials.

http://msdn2.microsoft.com/en-us/library/ms235632.aspx
Regards, Ron AF Greve

http://moonlit.xs4all.nl

"Malvolio" <mg*****@vcn.bc.cawrote in message
news:11**********************@k70g2000cwa.googlegr oups.com...
>I know this is a *really* stupid question but what the hell is visual
c++? I downloaded it and it doesn't seem to work. It isn't like any c++
compiler I ever saw before and the manual on the Microsoft website did
not improve my comprehension of it at all. How do you compile your
source code with this thing? Is it a compiler at all? Am I crazy?

I know it would probably take too much time to answer my dumb questions
here but if you can point me in the direction of any info, it would be
much appreciated.

I know it might sound like I'm joking here, but I'm serious. I
downloaded this piece of software in the faint hope of reviving some of
my forgotten programming knowledge (took programming courses in
college, haven't done any programming recently, interested in taking it
up as a hobby) but I found I couldn't do anything at all with it! Boy,
do I feel like a fool.

Mark

Oct 27 '06 #4

Bart wrote:
Malvolio wrote:
I know this is a *really* stupid question but what the hell is visual
c++?

It's a C++ compiler from Microsoft.
I downloaded it and it doesn't seem to work. It isn't like any c++
compiler I ever saw before and the manual on the Microsoft website did
not improve my comprehension of it at all. How do you compile your
source code with this thing? Is it a compiler at all? Am I crazy?

Well, the IDE may be a little confusing. You basically have to create a
new project and add your source files to the project, then build. You
can still compile using the command-line like any other compiler,
though.
Actually the IDE is very nice, especially VC8. It enables you to view
your classes and members and "Intellisense" puts down a drop-down box
so you can see the names of the methods (and works even for overloaded
-now) which saves you having to look up in a header file. In the
later versions you can also right-click on various identifiers or
headers to see their source.

You can do all this even if you don't intend to use the compiler at
all. You can even use the IDE for a project you are planning to compile
on UNIX.

The compiler itself is very standard compliant. You can compile
standard C++ on it - the only thing you might need to watch out for is
the compiler option to use RTTI - I think by default it is disabled but
they may have fixed that in V8.

The environment also includes a debugger. (You have to have built with
VC first to use it).

There are some complex make options so I think it is possible to use a
gcc compiler to make (but you'd have to create a GNU-style makefile,
because it is not the same as the VC one).

Oct 27 '06 #5
sam

Malvolio wrote:
I know this is a *really* stupid question but what the hell is visual
c++? I downloaded it and it doesn't seem to work. It isn't like any c++
compiler I ever saw before and the manual on the Microsoft website did
not improve my comprehension of it at all. How do you compile your
source code with this thing? Is it a compiler at all? Am I crazy?

I know it would probably take too much time to answer my dumb questions
here but if you can point me in the direction of any info, it would be
much appreciated.

I know it might sound like I'm joking here, but I'm serious. I
downloaded this piece of software in the faint hope of reviving some of
my forgotten programming knowledge (took programming courses in
college, haven't done any programming recently, interested in taking it
up as a hobby) but I found I couldn't do anything at all with it! Boy,
do I feel like a fool.

Mark
Hi,
I am surprised that your are saying that you got vc++
free from website.
How the microsoft will keep this software free for download?
I think you purchased it online?
Ok, that's not the point.
See VC++ is microsoft product.
It has very high level power to develop cutting edge software.
IN the gaming industry also (3d games) VC++ mostly use by game
developers for game programming.

second thing is you can create console applications or
you can use MFC(Microsoft Foundation Classes) predefined classes from
microsmicrosoft to give power and ease in programming(especially Object
Oriented Programming).

Third thing :- First you start from creating console applications or
some c++ onlyonly programs after that you learn some MFC classes and do
some.
exercises in it.

VC++ have components like:-
Activex control, com
also database objects.

So, now you are ready to hack VC++

Oct 28 '06 #6
sam wrote:
Hi,
I am surprised that your are saying that you got vc++
free from website.
How the microsoft will keep this software free for download?
I think you purchased it online?
http://msdn.microsoft.com/vstudio/express/

For hobbyist, novice, and student.
Actually rather a pain to get set up right, requires manual config to
get it set up, but is (or at least was) documented on web site.

Oct 28 '06 #7

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

Similar topics

125
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
4
by: IS | last post by:
At the recommendation of several people in this newsgroup I have downloaded two or three Compilers. One is the Beta version of Microsoft's Visual C++ 2005. I have entered a complete beginner code...
121
by: typingcat | last post by:
First of all, I'm an Asian and I need to input Japanese, Korean and so on. I've tried many PHP IDEs today, but almost non of them supported Unicode (UTF-8) file. I've found that the only Unicode...
2
by: mbjohnson | last post by:
I have an asp.net application written in C# and am having trouble with the debugger hitting the breakpoints. When I set the breakpoint, I get "?" tooltip and it says that the breakpoint will not...
12
by: RobKinney1 | last post by:
Hello, This is a stupid question. I cannot find any information if we can buy Visual C# 2005 without purchasing the whole Visual Studio 2005... can you do this like you can purchas C# 2003 by...
1
by: antjudy01 | last post by:
Hi, I was thinking about joining the MSFT Empower program which includes "5 licenses to Visual Studio 2005 Professional Edition". My question is how do I get the media to actually install the...
1
by: Alain R. | last post by:
Hi, I really like th Visual studio.net environment and windows type. It looks like a simple SDI application, but i guess that behind this SDI application look, MS has in fact developed a real...
6
by: JimmyKoolPantz | last post by:
I have been given the task of converting a program from VFP (visual foxpro) to Visual Basic.net. My question is "Is it possible to generate a DBF file Dynamically(at runtime) using Visual...
22
by: MarkusR | last post by:
I am currently using StarTeam for my source control. (Will eventual switch to whatever the latest Visual Source Safe is going to be called). With debug, installers, deploy and everything the...
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:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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.