| Thread | Last Post | Replies |
|
| How to "Add Reference" in VC.NET? | 09 Feb 2004 15:18 GMT | 10 |
How do I add a reference in VC++.NET? In VB.NET and VC#.NET, there's an option in "Project" menu called "Add Reference". This will add a .NET DLL reference to the current project. After I add a reference, I can start using the class in the DLL as follows:
|
| Newbie: Allocate 2 dimentional-array | 09 Feb 2004 10:33 GMT | 6 |
With these code: int a[3][5]; we are allocated (static) an array 3-by-5 (but continous) elements. But how to allocated dynamically an 3x5 array ?
|
| array of pointers to class methods | 09 Feb 2004 09:41 GMT | 10 |
Hope someone can tell me how to do this - I'm an old 'C' hack so sometimes I get stuck in old-think...this is one of those times... I've got a bunch of methods in a class that I want to be able to lookup and call from an array. In 'c' I'd just do something like:
|
| How to obtain the handle of the heap used by the C-Runtime system? | 09 Feb 2004 06:22 GMT | 3 |
I guess this is a new function for VS 2003, but how to obtain this information in VC6 and VC7? Best regards, Klaus
|
| Using BinaryReader with a structure | 09 Feb 2004 01:15 GMT | 1 |
I'm trying to read a file into a structure, called LogFile, but the compilier issues error message: error C2228: left of '.ReadBytes' must have class/struct/union typ Can anyone spot what is wrong with this declaration Thanks Ji
|
| .net "split" function equivalent | 08 Feb 2004 13:25 GMT | 1 |
I've seen that the string classes in the .net framework have a cool (new?) function: splitting strings and returning the substrings in an array. Is there any equivalent to this in "old-style" MFC C++? Thanks Sam
|
| "add variable" inactive -weird problem | 08 Feb 2004 09:39 GMT | 2 |
Hi, I am a beginner with Visual C++ (I am using .NET 2002) MY problem is that sometimes the main dialog class dissapears from the class view ( so if my project is named Test, I cannot see CTestDlg class there) and when i right click over a control and try to attach a variable to ...
|
| new operator | 08 Feb 2004 01:54 GMT | 2 |
int *(*arr)[5]; a is a pointer to an element (e1). e1 is an array of 5 integer pointer. Now i want to to allocate for arr. How to do that ? int *(**arr2)[3];
|
| OpenGL 1.1-GLUT 3.7 Programming on VC++ .NET 2002: error C2065-undeclared identifier | 07 Feb 2004 18:54 GMT | 1 |
I tried to use the attached OpenGL code to draw a Star-shaped figure on my Microsoft Visual C++ .NET 2002-Windows XP Pro PC. When I did 'Build' in Debug Mode, I got an error C2065: 'RenderScence': undeclared identifier. Please help and tell me (1) what it is wrong with my coding ...
|
| Reference to an .exe | 07 Feb 2004 02:41 GMT | 4 |
I am developing a 'addin.dl'l to a 'main.exe'. How can I add a reference to 'addin.dll project' for the main.exe? Currently I am renaming a copy of main.exe to main.dll and adding that to my references. Anything simpler?
|
| IDE Replace in Files doesn't work | 07 Feb 2004 01:28 GMT | 5 |
I have .NET 2003. When I run "Find in Files" command, everything works as expected. However when I run "Replace in Files" with the same settings a and press Find Next, I get: "Look in: A specified directory or file is not available or does not exist."
|
| Icon editors? | 07 Feb 2004 00:23 GMT | 2 |
Does anyone know of any good freeware editors that can create/edit .ico files? Don't need to be particularly flash graphics-wise - just need to be able to save .ico files.
|
| Debuggers? | 06 Feb 2004 23:30 GMT | 4 |
Apparently debuggers are available free to download from the MS website, presumably they are designed to work with the downloadable SDK..? Where are these debuggers, has anyone got a link to them? And how does a debugger work that hasn't got an IDE?
|
| Does anyone have ready tool to write files to ATAPI CDROM through writer??? | 06 Feb 2004 23:14 GMT | 2 |
Hye, Does anybody of you have any program or tool ready that can be used from inside my program that writes files to the CDROM (ATAPI interface) through writer???
|
| Debugging | 06 Feb 2004 20:02 GMT | 6 |
OK - picture the scenario. I want to develop a program using C++. I don't have any Visual Studio IDE (please don't say "but I thought you did" - this is for a different environment) I am of the belief I can build unmanaged C++ applciations using all of the things available in the ...
|