Forum: C++ Nov 19th, 2008 |
| Replies: 1 Views: 532 I have a c++ application in microsoft visual studio. Is it possible to create a button on a dialog that will pop up the device manager window in windows so that the user can see all the different... |
Forum: C++ Aug 15th, 2008 |
| Replies: 1 Views: 477 I have two files sampleclass.cpp and sampledataclass.cpp along with sampleclass.h and sampledataclass.h
In sampleclass.cpp in the constructor I give a value to a variable
sampleclass.cpp... |
Forum: C++ Jul 29th, 2008 |
| Replies: 2 Views: 382 I was reviewing some material over pointers in a book called C++ Primer 4th Edition and it said there were four possible values that you can set to a pointer.
A constant expression with a value... |
Forum: C++ Jul 24th, 2008 |
| Replies: 4 Views: 1,660 Let me explain in more detail, I have:
int numData;
CStringArray MyArray[50];
I want to be able to set the value of any element like this:
MyArray[rownumber].SetAtGrow(colnumber, value);
... |
Forum: C++ Jul 24th, 2008 |
| Replies: 4 Views: 1,660 I am trying to create a 2d array in my program that can hold CStrings. I need to be able to add my CString to any row and column in the array(not just at the end) and I need it to be able to grow in... |
Forum: C++ Jun 5th, 2008 |
| Replies: 3 Views: 1,000 can you develop using MFC in Microsoft Visual Studio 2008 Express Edition or do you need to have at least the standard edition? |
Forum: C++ Jun 5th, 2008 |
| Replies: 3 Views: 1,000 I am trying to learn how to create windows applications using microsoft visual c++ 2008. What is the difference between a Win32 Application and a Windows Form Application? Also does anyone know any... |