can i use my Visual C++ 6.0 with XP?

Sharky Forums


Results 1 to 11 of 11

Thread: can i use my Visual C++ 6.0 with XP?

  1. #1
    Reef Shark
    Join Date
    Oct 2000
    Location
    Bangkok, Thailand
    Posts
    254

    can i use my Visual C++ 6.0 with XP?

    sorry if this was asked before; i'm new at programming. i installed 6.0 and it installed fine but when i tried running the code i got error message - something is missing!?!

    and no win console option.

    do i have to get rid of XP and reinstalled 98? sigh...

    thanks in advance.

    btw, can someone explain object oriented to me? english is my second language and for the life of me i can't understand the explanations in my books.

    cheers

  2. #2
    Goldfish DarkAvenger's Avatar
    Join Date
    Dec 2001
    Location
    India --> Australia
    Posts
    72
    VC++ 6 should be compatible, what was the error message exactly?

  3. #3
    Reef Shark
    Join Date
    Oct 2000
    Location
    Bangkok, Thailand
    Posts
    254
    i didn't write it down. it says a file is missing.

    i did a search and found that i need to use 'Visual C++.Net' for XP.

    perhaps i'll install Win98 just for this.

  4. #4
    Goldfish DarkAvenger's Avatar
    Join Date
    Dec 2001
    Location
    India --> Australia
    Posts
    72
    If you can afford to download it, try installing the Visual Studio Service Pack 5 . AFAIK VC++ is *supposed* to work in XP but I have read about some problems people have had with it, so you're not alone.

  5. #5
    Reef Shark
    Join Date
    Oct 2000
    Location
    Bangkok, Thailand
    Posts
    254
    EESWT.DLL This required file cannot be loaded. Please re-install Microsoft Visual C++

    that's the message. and i re-installed 3 times!

    ok, so when i open the C++ 6.0 and i click on File>New>Projects then which option do i choose? when i use the 6.0 at school -running WinNT- i'd pick windows console (i think) but under XP there is no such option.

    however there are:

    Custom AppWizard
    Database Project
    DevStudio Add-in Wizard
    ISAPI Extension Wizard
    MFC ActiveX ControlWizard
    MFC AppWizard (dll)
    MFC AppWizard (exe)
    New Database Wizard

    and yes i installed the Visual Studio Service Pack 5.


    please help. im very frustrated - i have projects that i need to do and i don't feel like driving to school to finish them.

    thanks again.

  6. #6
    Goldfish DarkAvenger's Avatar
    Join Date
    Dec 2001
    Location
    India --> Australia
    Posts
    72
    Sorry, but the only thing that I got was this Microsoft support document. It also talks about another DLL being missing and it involves some registry editing..risky, but have a look and see if you think you want to try it.

    Sorry I couldn't be of more help .

  7. #7
    Reef Shark
    Join Date
    Oct 2000
    Location
    Bangkok, Thailand
    Posts
    254
    hey, no problem. you've helped and i appreciate that.

    thanks for trying, though.

    now, wish me luck cause im going to try editing the registry

    cheers

  8. #8
    Tiger Shark Sparky_D's Avatar
    Join Date
    Jul 2001
    Location
    Waterloo/Toronto
    Posts
    628
    That's very odd....

    We run Visual Studio 6 here at work on our XP machines....we haven't had any problems...
    [CPU]: Pentium IV 3.0c gHz[Case]: Lian Li PC60 USB [Power]: Thermaltake 430W TruPower[Motherboard]: Abit IS7[RAM]: OCZ PC3500 Dual Channel Kit(2X512)[Video Card]: ATI 9700 Pro All-In-Wonder[Storage]: 160 GB Western Digital w/8 MB Cache[Optical Storage:] 16X Pioneer DVD-ROM, LG 16X8X32[Sound Card]:Soundblaster Audigy 2 [Speakers]: Creative Inspire 5.1 5700 [Monitor]: Viewsonic PF790 19" Flat Screen CRT [Peripherals]: Logitech MX700, Microsoft Natural Keyboard Elite Pro, Logitech Rumblepad USB [OS]:Windows XP Pro

    New thinking is needed to solve new problems. - Albert Einstein

  9. #9
    Reef Shark
    Join Date
    Oct 2000
    Location
    Bangkok, Thailand
    Posts
    254
    dang it! i followed all the instructions, re-installed, and still get the same error message.

    sigh......................

    hmmm...my GF has a notebook running XP, ill try it on her machine - be right back!

    I'll be damn. It works on her computer! No problem what so ever - There is an option for Win32 Console App as well...
    Last edited by leaf; 04-10-2002 at 12:54 PM.

  10. #10
    Mako Shark slavik's Avatar
    Join Date
    May 2001
    Location
    Brooklyn
    Posts
    3,308
    OOP (Object Oriented Programing) is used for making a program that has buttons, text boxes and such (Windows OS for example or any Windows program).

    I have 1 hassle with this.

    Let's say you have a program that adds 2 numbers.

    In Qbasic (it's simple and works), the code would look like this.

    CLS 'Clear Output Screen (command promt)
    INPUT "Enter the 1st number: ", number1 'Get 1st number
    INPUT "Enter the 2nd number: ", number2 'Get 2nd number
    PRINT number1+number2 'Print the result of operation
    END 'Terminate program (not needed if nothing else is below)

    In VB persay, you will need 2 text boxes (box1, box2 for example), and a button (add), now you need to set whatever is in box1 to a variable, same with box2, BUT you have to declare ALL variables prior to their use (C++). You will also need a third text box or a label or make a message box, to display the answer.

    There is something good though, when the program is done calculating, it does not terminate itself unless you press the exit button (you can make one int your program or simple use the "X" in the upper right corner).

    I used VB, because it's the most abvious to have OOP.
    Activation? What activation?
    Quote Originally Posted by Geekkit (from ubuntu forums regarding 'goto' statement)
    Yep it sure does. So does crack cocaine. Existence is not a valid endorsement for being acceptable.
    Quote Originally Posted by Linus Torvalds
    Only wimps use tape backup: _real_ men just upload their important stuff on ftp, and let the rest of the world mirror it

  11. #11
    Tiger Shark dip027's Avatar
    Join Date
    Jun 2001
    Location
    Lawrenceville, NJ USA
    Posts
    631
    sorry i cant really help, all i can say is that i run visual c++ 6.0 on winxp pro and it runs fine, so you know its possible

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •