473,813 Members | 3,424 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

using C++ visual Studio.net to write programs for c++ 6.0

I am a student taking a computer class programmning with ms visual C++. The
college is using ms visual C++ 6.0 on it's computers. I purchased ms visual
studio.net (Academic) (ver 2003) which is more up to date. How can I use my
program to write C++ 6.0 the same way I am be instructed in class? Do I need
to buy visual C++ 6.0 I already paid for one program I would like to make use
of it at home it gives me more time to learn. Thanks Charlie
Nov 17 '05 #1
5 1215
Your best bet would be to purchase the VC++6 downgrade. It's dirt cheap.
Search for "downgrade" .
"Charlie" <Ch*****@discus sions.microsoft .com> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
I am a student taking a computer class programmning with ms visual C++. The college is using ms visual C++ 6.0 on it's computers. I purchased ms visual studio.net (Academic) (ver 2003) which is more up to date. How can I use my program to write C++ 6.0 the same way I am be instructed in class? Do I need to buy visual C++ 6.0 I already paid for one program I would like to make use of it at home it gives me more time to learn. Thanks Charlie

Nov 17 '05 #2

"Charlie" <Ch*****@discus sions.microsoft .com> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
I am a student taking a computer class programmning with ms visual C++.
The
college is using ms visual C++ 6.0 on it's computers. I purchased ms
visual
studio.net (Academic) (ver 2003) which is more up to date. How can I use
my
program to write C++ 6.0 the same way I am be instructed in class? Do I
need
to buy visual C++ 6.0 I already paid for one program I would like to make
use
of it at home it gives me more time to learn. Thanks Charlie


I agree with BobF for several reasons, but first, here's the link to
downgrade information:

http://msdn.microsoft.com/vbasic/pre...downgrade.aspx

My reasons why the downgrade may be safer for you are as follows:
If your instructor is teaching "pre-standard" C++ (and, I have no way of
knowing, as the 6.0 compiler supports most new stuff, but also supports
things no longer in the new standard), some of the code/preprocessor
directives he/she teaches will not work in the VC 7.1 C++ compiler (the one
in Visual Studio 2003), and you may well be left to figure the necessary
changes out for yourself.
Have you discussed you situation with your instructor, to see what advice
he/she might offer?
What textbook are you using and what's the publication date?
Hint: If your instructor is teaching:

#include <iostream.h>

and does not realize the directive should now be:

#include <iostream>, typically followed by (in beginning texts)
using namespace std;

then you should go for the downgrade ASAP.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.
Nov 17 '05 #3
In article news:<#y******* *******@TK2MSFT NGP12.phx.gbl>, Peter van der Goes
wrote:
Hint: If your instructor is teaching:

#include <iostream.h>

and does not realize the directive should now be:

#include <iostream>, typically followed by (in beginning texts)
using namespace std;

then you should go for the downgrade ASAP.
Correction: If your instructor is teaching:

#include <iostream.h>

and does not realize the directive should now be:

#include <iostream>

you should change your instructor!
typically followed by (in beginning texts)
using namespace std;


Yeah, "typically followed in beginning texts" is true enough, but "using
namespace" is really a bad habit to get into.

Cheers,
Daniel.
Nov 17 '05 #4

"Daniel James" <wa*********@no spam.aaisp.org> wrote in message
news:VA******** **********@nosp am.aaisp.org...
In article news:<#y******* *******@TK2MSFT NGP12.phx.gbl>, Peter van der
Goes
wrote:
Hint: If your instructor is teaching:

#include <iostream.h>

and does not realize the directive should now be:

#include <iostream>, typically followed by (in beginning texts)
using namespace std;

then you should go for the downgrade ASAP.


Correction: If your instructor is teaching:

#include <iostream.h>

and does not realize the directive should now be:

#include <iostream>

you should change your instructor!

<snip>
I agree with the sentiment, but the OP may be stuck in a situation where
there is no alternative but to continue the class in which he in enrolled,
hence the suggestion to downgrade.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.
Nov 17 '05 #5
In article news:<#X******* *******@tk2msft ngp13.phx.gbl>, Peter van
der Goes wrote:
I agree with the sentiment, but the OP may be stuck in a situation
where there is no alternative but to continue the class in which
he in enrolled, hence the suggestion to downgrade.


That is possible, I agree ... and the matter may well be moot because
the instructor may be using standard iostreams with VC6 (or, at
least, not using iostream.h).

However, I'd argue that if the instructor *is* teaching iostream.h in
2005 then it is better to drop out of the course now than have to
unlearn it all later. Such a teacher should be approached -- if
necessary using what we're saying here as ammunition -- and asked to
update the course materials, and if that fails the instructor's
employer should be asked to replace the instructor.

Cheers,
Daniel.


Nov 17 '05 #6

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

Similar topics

1
1761
by: Craig Skrabacz | last post by:
I originally had VB.Net standard installed on my computer. I have subsequently installed Visual Studio .Net 2002 on my computer. I have not uninstalled VB.Net. When I look in my Add/Remove programs - there are two entries - one for VB.Net and the other for Visual Studio .Net. Both entries are over 1 GB in size. My question is whether the VB.Net is redundant information
121
10205
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...
3
1228
by: Charlie1 | last post by:
I am a student taking c++ programming I purchased a program Visual Studio.net (2003 ver), The college is using visual C++ 6.0. How can I use my porgram to write programs in Ms 6.0. Do I have to buy C++ 6.0 I allready purchased on program.
1
1776
by: iredshift | last post by:
Hello, I am trying to use visual c++ express to write opengl programs for a class because I don't have the full visual studio program. However, when I downloaded and installed visual c++ express beta2, the include files in "C:\Program Files\Microsoft Visual Studio 8\VC\include" do not include a GL folder with all the opengl headers (i.e. gl.h etc). Hence, all of my programs complain that <GL/gl.h> is not found. Is there a way I can...
16
2612
by: TB | last post by:
Hi all: If you think that the following comments are absolute amateurish, then please bear with me, or simply skip this thread. A couple of months back I made the decision to initiate a gradual upgrade of my web programming skills from Classic ASP / VBS to ASP.NET / VB.NET. While the study of the language differences and all the new features in .NET has so far not been a traumatic experience, I am a bit shell-schocked after
2
1318
by: Victor | last post by:
I've downloaded both MS Visual Basic 2005 Express Edition and MS Visual Web Developer 2005 Express Edition. All I want to do is be able to write some code snippets, in ASP (VBScript) and then run them locally for debugging purposes. I've been going through the docs for both these programs and I don't know if they can do this - can anyone help me with this? Can I use either of these programs to debug ASP programs, and if so, how? Thanks,
8
2219
by: HELLO $$$ | last post by:
To those who are familiar to MS Visual studio : I have recently Visual Studio 2005. Please can any body tells me , when I write a code: How can I separate the files of such code from the Studio program and operate it away from mother program (Studio). Thank you. =============================
0
3535
by: fischermx | last post by:
Environment: Microsoft Visual Studio 2005 Version 8.0.50727.762 (SP.050727-7600) Microsoft .NET Framework Version 2.0.50727 Microsoft Visual Studio 2005 Professional Edition - ENU Service Pack 1 (KB926601) Hotfix for Microsoft Visual Studio 2005 Professional Edition - ENU (KB933608) Windows XP, SP2.
4
3617
by: maria | last post by:
I only use C++ with Visual Studio 6.0 for string manipulations in thousands of HTML pages on my website. Many times, the output files of many of my C++ programs contain a spanish question mark (¿) as their first character. What creates it? How do we avoid it? Thanks! maria
0
9609
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
10669
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10408
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...
1
10426
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10141
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
9225
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...
0
6897
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();...
1
4358
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3030
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.