Re: Problem with Visual C++ 9.0 EE Programming Software Development by vmanes VC++ Express 2008 includes the SDK when installed, unlike the 2005 version. Are you trying to create a Windows app, or a console (DOS box) app? Short code - it works on VC++ Express but not on Bloodshed!! Programming Software Development by fesago90 [CODE=c++]#include <cstdlib> #include <iostream> #include <string> #include <algorithm> using namespace std; int main() { string foo = "123"; if(count_if(foo.begin(), foo.end(), isdigit) == foo.size()) { cout << "\nGreat!\n"; } cin.get() }[/CODE]… Re: Short code - it works on VC++ Express but not on Bloodshed!! Programming Software Development by Ravalon [QUOTE=fesago90;301552][CODE=c++]#include <cstdlib> #include <iostream> #include <string> #include <algorithm> using namespace std; int main() { string foo = "123"; if(count_if(foo.begin(), foo.end(), isdigit) == foo.size()) { cout << "\nGreat!\n"; } cin.get() }[/… Re: View class Diagram in VC# Express Programming Software Development by thines01 I created a VC# 2008 Express project then loaded it with VS 2008 Standard and added a class diagram. When I re-loaded it in VC# Express, the class diagram FILE was there, but the content looked like this: [CODE] <?xml version="1.0" encoding="utf-8"?> <ClassDiagram MajorVersion="1" MinorVersion="1"… VC++ 10.0 textBox Programming Software Development by pstrohma Hello all, Does VC++ Express 10.0 even support the ability to get text from a text box? I've seen related threads having conflicting solutions, none of which actually work. Ex: must have SDK version x.y. This functionality seems to be so basic and necessary that solutions would be all over the internet.. but they're not. So far, my code is the… Re: VC++ 10.0 textBox Programming Software Development by nbaztec [B]>>Does VC++ Express 10.0 even support the ability to get text from a text box?[/B] Ask yourself, what's the use of a write-only text box. [CODE] CText myText; CString text = myText.Text; //Property //Go berserk with text. [/CODE] In case I wasn't clear - Yes. Visual C++ Express Questions Programming Software Development by arunpawar I have downloaded the visual C++ express 2005.Actually i have no experience with the visual C++, i used to develop with Visual Basic earlier but i don't know some of the following thing: 1. How can i enable the line numbers in my source code? 2. Where can i find information about some basic programs in VC++?On how to compile & run simple … Compliling a VC++ 2008 Express project to an exe file so it can be shared. How??? Programming Software Development by seakayaker Hi, I have searched the internet high and low but all posts I have found on this topic have been confusing to me... It is quite clear that there is something basic I am not getting... please help... My applications are written in VC++ 2008 Express and all source code is included in my projects (no .dlls used, just #include <windows.h> etc… Re: DLLs, Header Files, OCX's, Adding to Visual C++ Express Project Programming Software Development by Tester2 The code I'm referencing is described here (including downloadables): [url]http://www.codeproject.com/KB/openGL/ntgraph3d_atl.aspx[/url] . I've been away from C++, dll's, and structures too long. Quite honestly, because of the dll origin, I'm not sure how to refer to the structure data type in defining a structure of that type with a … DLLs, Header Files, OCX's, Adding to Visual C++ Express Project Programming Software Development by Tester2 Found some neat graphing software for 2D and 3D applications at CodeProject. Looking forward to using with MS VC++ Express, which I just downloaded and installed. Can I do this? Is it legal? The creator offers what seem to be some options, but I'm not sure the header files are compliant with MS VC++ (Express) classes. For that reason, I'm … 2 forms in one application in VC++ 2008 Programming Software Development by creative_m I am trying to create a multi-form application using VC++ express 2008. I have included the header file of the 2nd form in the 1st form header. and I put this code in a function in the 1st form : [CODE] Show (gcnew form2 () ); [/CODE] but nothing happend when I ran it. sometimes, I recieve a message tells me that another thread should be … Re: Unresolved External Symbol VC++ 2008 Programming Software Development by mitrmkar [QUOTE=hermann87;1117971]But my my application is a Win32 application, it shouldn't matter, no?[/QUOTE] By reading your first post I got the impression that you are having 64-bit libraries etc and trying to get them working with VC Express, that would not work. Perhaps I understood it all wrong? Re: Unresolved External Symbol VC++ 2008 Programming Software Development by hermann87 [QUOTE=mitrmkar;1117981]By reading your first post I got the impression that you are having 64-bit libraries etc and trying to get them working with VC Express, that would not work. Perhaps I understood it all wrong?[/QUOTE] Actually yes, I'm confused myself. After reading your post about the 64-bit program I realized that my program is … Re: Visual Web developer express Vs Visual studio express edition Programming Web Development by thewebhostingdi There is no Visual Studio Express as far as I know. Microsoft has launched Visual Studio Express Editions in which VC# Express, VB.NET express, Visual Web Developer Express, etc are included. However, these all are needed to be installed one by one. Refer [url]http://www.microsoft.com/express/product/default.aspx[/url] Re: How to update MS Visual studio 2010 express c++? Programming Software Development by Schol-R-LEA Well, the good news is, a certain number of C++0x/C++11 features did make it into VS2010 and VS2012; the bas news is, constexprs weren't among them. A detailed explanation of which features are and aren't supported can be found [here](http://msdn.microsoft.com/en-us/library/vstudio/hh567368.aspx). This leaves you with the prospect of using a … Re: Getting along with Visual Studio express 2010 Programming Software Development by tinstaafl When you first open VS2010 VC++ Express. The page that opens is called the start page. Here you can easily find out more on what is possible to do with VS. I know that a lot of the code will be beneath your knowledge level, but, it's a great way to learn the IDE. Basically what it boils down to is that, VS has several templates already made up … different C++ versions. suspected dll incompattibility Programming Software Development by quintoncoert I am currently working on a project which requires me to instantiate objects of a class. The class is in a dll which is accessed via its header file. I suspect that the dll does not work with visual c++ express edition which I am using. I would like some second opinions on this before I go back to the original programmer of the dll. Here are my … Re: Best IDE for c++ ? Programming Software Development by Ancient Dragon [QUOTE=niek_e;653071]I like VS2008 (VC++ Express) the best. ... and it's backwards-compatible with VC6. [/QUOTE] No it isn't backward compatible because VC++ 6.0 did not support the c++ standards very well. Code written with VC++ 6.0 will encounter some porting problems when compiled with VC++ 2005 or newer compilers. Don't bother trying … Best IDE for c++ ? Programming Software Development by Quarck Hi I'm was a c++ programmer for 7 years past with VC++ then go to Java and now return to c++ , I've search for VC++ and its seems big change now (VC++ Express Edition ) . I looking for free VC++6.0 or any other easy/free editor for c++ programming . any info. are welcome here Thanx .. VB shell command counterpart in c++ Programming Software Development by quintoncoert I am using VC++ express edit 2005 but I can also switch to C# 2005 express. I would like to know if there is a cmd similar to the shell function which is found in visual basic. The VB shell cmd basically allows one to execute a dot exe file from your VB code. The program(i.e. dot exe file) then runs in a command line interface and can do what … Re: Best IDE for c++ ? Programming Software Development by Nick Evan I like VS2008 (VC++ Express) the best. It's free and it's backwards-compatible with VC6. VC6 isn't freely available (to my knowledge). What problems do you have with the new visual IDE? Perhaps we can assist. Develop iPhone Apps on Windows with C++ Programming Mobile Development by SgtMe Hi all. There have been several threads where people are asking, [B]"is there any way we can develop iPhone Apps on Windows, or without using Objective-C?" [/B]The main reason people ask this is because [I]they either cannot afford a Mac, or cannot afford all the additional costs one has to suffer as a result of using the iPhone SDK.[/… Re: Random Number Generator Programming Software Development by mrnutty >>It occurred to me that this only generates numbers uniformly over the range In fact, it dosen't. The only way rand() generate uniform distribution is by using the value it returns as the random number and not manipulate that random number. Thus when you do something like this :[i] int power = rand()/(RAND_MAX) * (max-min) [/i] you are … Problems with cin (char arrays|strings) Programming Software Development by Kumal I can't seem to use the 'cin.get' statement for getting character arrays. I've just switched to VC++ Express, from Dev-Cpp, which allowed that. I have tried other methods like declaring the variable with 'string' but the compiler doesn't recognise it even with the <string> header. [code] void encrypt() { string input; // Error … Classes-- stuck in the mire of syntax Programming Software Development by mattyd Hi, I am working on a fairly simple project (it will grow more in time as planned) but I am stuck in a spot which I cannot solve yet. The operation of this prog at this point is: [LIST] [*]Start. Ask user for input choice (only 1 choice available at this point) [*]Cin will take user to another screen (another file, Look.cpp) This file … Which is nicer? Programming Software Development by Elfshadow Should I use the codeblocks IDE with MinGW or Dev C++ IDE with MinGW??? I'm only a beginner C++ programmer and I don't like VC++ express because of installing the platform SDK:eek: Re: Which is nicer? Programming Software Development by Ravalon [QUOTE=Elfshadow;295796]I'm only a beginner C++ programmer and I don't like VC++ express because of installing the platform SDK:eek:[/QUOTE] You only need to install the platform SDK if you use the windows API. If you are just now learning C++, that will be a while away because you have a lot of standard C++ to learn first. Internet Application Programming Software Development by scru First of all, let me just say thanks to everyone that helped me get my first C# project under my belt. It works and runs fine thanks to all of you. Now, only two days later, I'm going to try to take on another: --An internet application. (A messenger almost, with the ability to send and receive files and data) I'm using MS VC# Express 2005. … Simple program that I need help with. Programming Software Development by Elfshadow I have trying C and so far it's gone great but this has been driving me mad today. I could swear scanf worked earlier but its crashing my programs? I know you get this problem when you forget the pointer thing & but this should work [code] #include<stdio.h> int main() { int userinput; scanf("%d",&userinput);… Re: Simple program that I need help with. Programming Software Development by WaltP [QUOTE=Elfshadow;347525]I have trying C and so far it's gone great but this has been driving me mad today. I could swear scanf worked earlier but its crashing my programs? I know you get this problem when you forget the pointer thing & but this should work [code] #include<stdio.h> int main() { int userinput; …