Monday, May 24, 2010

What's the difference between "visual C++ and VC++.net" or "visual C# and VC#.net"?

C++ is a standard programming language; Microsoft made its own flavor of it, and called it Visual C++. Then it created another version of it, as a part of the .NET framework, and called it Visual C++.NET.





C# (pronounce: see sharp) is an entirely new language that resembles C++ a bit, and it was designed by Microsoft to also use the .NET framework. In fact, there is no non-.NET version of that language, hence there is no difference between C#, Visual C#, and Visual C#.NET. [I stand corrected; see Nick F's response, below.]





De .NET framework is both a huge library of software components that you can re-use in your own programs to increase your productivity, and at the same time a set of mandatory programming rules that make it easier to write software that is safe to use and easy to expand.

What's the difference between "visual C++ and VC++.net" or "visual C# and VC#.net"?
the .net demotes that they are architected for the .net framework.





Basically a standard that enables you to write portable and standards based code.





hope this helps





Owen
Reply:jacovkss2 is not entirely correct, the C# specification was created by MS but it's an open specification, anyone is free to create their own specific interpretation of the C# spec, "C#" and "Visual C# .NET" are NOT synonymous (ex. you can write code C# on Linux using MONO)


In Visual C++; Microsoft Foundation Classes; Progress control; can it display a percentage number?

I am doing a screen with a report, using a progress control to depict a percentage magnitude from zero to 100 pecent with the SetPos(xx) method. Can I also place a number like "60%" inside the control. You see this on download completion bars and such. SetWindowText("60") does NOT work. How do I do this?

In Visual C++; Microsoft Foundation Classes; Progress control; can it display a percentage number?
yes you can. you just need to get the appropriate method and use it.


i have done it before, but at the moment dont remember what method i used.

petunia

Microsoft Visual C++ 2005?

I need to download this; but I need to download the entire program at once not just the installer. I have no access to the internet at home.

Microsoft Visual C++ 2005?
The first link is Visual Studio 2005 Trial. The second link is Visual Studio 2008 beta. These are iso images. You would have to burn to a DVD. You will also have to have a msn passport to download (hotmail email works, or you can set up any email for passport for free).


Microsoft Visual C++ Runtime Library,Runtime Error ,Anyone get this mess. too?It disconnects me online.?

I get this message from time to time and usually right in the middle of something important,very frustrating.AT%26amp;T says it's not their problem,it's in my PC.I have not been using a computer very long ,so I need the solution in laymans terms,Thank you.

Microsoft Visual C++ Runtime Library,Runtime Error ,Anyone get this mess. too?It disconnects me online.?
Hey, I'm actually having the same problem. I've also noticed that iTunes stops working as well, so bummer. I think, though that the best thing to do is run a registry scan on your computer. "Registry is a file that is used to log all the changes you make to your system. As you install and uninstall programs in your computer, you make changes to the registry. Overtime, the registry becomes cluttered and causes all sorts of PC performance problems," the site below should help answer some questions. If that doesn't work you can try reinstalling the operationg system or even reformating %26amp; and reinstalling your computer (delete everyting and basically clean sweep of ALL information on your computer)





Hope it helps


Help required on visual c++ 6.0 or Dev c?

Plesae make an overlapped window having white background color having a small triangle on it :

Help required on visual c++ 6.0 or Dev c?
Or not. I don't think I'll be doing your homework / work for you today, thanks. Why did / do you undertake to learn and/or go to school for these things if you aren't going to even try to learn? It's a waste of your time... and correspondingly ours.


"Microsoft Visual C=++ Runtime Library" and "Abnormal program termination" I'm seeing more errors like this ??

I'm getting these Runtime errors that leads to abnormal program termination. Is their a Microsoft hotfix that makes problems or is their a program flaw...








Best Regards


Jesper Bang

"Microsoft Visual C=++ Runtime Library" and "Abnormal program termination" I'm seeing more errors like this ??
It sounds like your trying to run your program with the wrong complier settings. If you programming in c++ then you have the visual c++ option checked. Un check it and run it again.

mint

For visual c+ compiling, is there is a a way to determine an good why to find typo error.?

There are several editors that will point out syntax errors in the language.

For visual c+ compiling, is there is a a way to determine an good why to find typo error.?
I've never used anything other than the Visual C++ editor.


Yeah, there are a lot of other editors out there, but they pretty much do the same thing as far as finding typo errors.





The Visual C++ editor does a good job at helping find mistakes,


though it can't find, or figure out every mistake you make, whether


intentional or non intentional.





One more comment.


If you make a mistake while typing a function, such as sprint instead of sprintf, the editor doesn't necessarily know that you have made a mistake, because you might have created a sprint function in another file. The complier doesn't know this until it is compiled.





I would suggest that you slow down and look at what you are typing, rather than having something else find your mistakes.


Plus, you can compile every once in a while and find the mistakes on your own, that way it will teach you to keep making the same mistakes.