473,804 Members | 3,057 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1531
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.publi c.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.goo glegroups.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 "Intellisen se" 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(esp ecially 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
14867
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 software giant such as Microsoft SQL Server, Oracle, and Sybase? Is PostgreSQL reliable enough to be used for high-end commercial application? Thanks
4
1452
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 that looks like this: #include <iostream> using namespace std: //introduces namespace std int main( void )
121
10196
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 support IDEs are DreamWeaver 8 and Zend PHP Studio. DreamWeaver provides full support for Unicode. However, DreamWeaver is a web editor rather than a PHP IDE. It only supports basic IntelliSense (or code completion) and doesn't have anything...
2
1320
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 currently be hit. But occassionally, when I first open Visual Studio, it will hit it. Very frustrating. I'm using Visual Studio 2003, Windows XP. Any help will be greatly appreciated. Mike
12
1585
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 itself? Visual studio costs like $800! And we have to buy 2 licenses or more for our team here... we are a small company. Thanks all for reading this.
1
1243
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 Visual Studo product? The Empower program comes with all sorts of licenses to different products, but I don't understand how I get the media to actually install the programs...
1
954
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 MDI application and just hide that windows bar. Could you tell me more about this method ? thanks a lot,
6
11612
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 Basic.Net?" With all the field properties, such as, field length and type. I'm not sure if this is a stupid quesiton or If I am just over looking something, but I have not found solid information on the internet about this topic. Any useful...
22
7444
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 project directory structure is a mess of files and directories What files should be in source control (All final builds willbe done on anothe machine)?
0
9706
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9584
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10337
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10082
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9160
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7622
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6854
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5654
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3822
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.