| Thread | Last Post | Replies |
|
| MC++ Reflection | 06 May 2004 08:10 GMT | 2 |
I have some code that does reflection on an assembly I load. When I try to get the attributes on one of the methods implemented in the assembly, the MC++ version does not return anything. See code below: Object __gc* memberAttributes[] =
|
| IL editor | 06 May 2004 06:33 GMT | 11 |
does anybody know where I can find an IL-editor ? thnx Chris
|
| How can I join Strings? | 06 May 2004 01:26 GMT | 1 |
String* str1; String* str2; String* s; str1="Rado";
|
| where is the old wizard? | 06 May 2004 01:05 GMT | 2 |
I create a MFC dialog application with VC++.NET 2002. I want to add OnSize() , and OnTimer(), functions. But, I cannot find class wizard tool any more! Can anyone help?
|
| C++ debug compiler errors | 05 May 2004 22:47 GMT | 6 |
I am trying to compile my C++ programs in debug mode in Visual NET 2003 and keep getting the following message fatal error LNK1104: cannot open file 'mfc70d.lib I cannot find this program anywhere in my Windows 2003 Server operating system. Also, I cannot find MFC42D.DLL anywhere ...
|
| ResXResourceReader Class Available Using C++? | 05 May 2004 19:18 GMT | 2 |
I'm using .NET 2002. Is the ResXResourceReader available in C++? MSDN says yes (by showing C++ function prototypes) however C++ fails to find the class. Yes, I have the using statement like:
|
| getting a control from its name | 05 May 2004 13:36 GMT | 1 |
On a Form, I'd like to do something like that, in C++ String *labelName = "myLabel" ; ... this->Controls[labelName]->Text = "foo" ;
|
| String | 05 May 2004 13:26 GMT | 1 |
I have one problem. I make class: And in Public I declare!" String* name[10];
|
| Debugging mixed DLL called from legacy code | 05 May 2004 10:57 GMT | 3 |
I'm writing a mixed-mode C++ DLL which is used by an old C++ application that I don't have the source code to. I'm amazed by the ease of interoperability, but the one problem I'm having is debugging the DLL, as the C++ app crashes if loaded into the debugger.
|
| __declspec( thread ) Limitations | 05 May 2004 09:00 GMT | 1 |
Introduction ********* I am writing a managed profiler using the ICorProfiler*.* API, this involves ceration of an agent DLL loaded by the profiled ( debugee ) process, I need to use TLS to hold some thread specific data The query
|
| listview subitem | 05 May 2004 08:00 GMT | 6 |
I have one question I make Listview with 4 columns. And I want add text to to column 2,3,4. With listview1->Items->add ("Text") I can add text only to first column.
|
| Handling ENter event on LIst Ctrl | 05 May 2004 07:58 GMT | 5 |
I have a list control. On doubleclick of list item, a new dlg opens. Now, i want to handle 'OnEnter Key'also. i.e. When a list item is selected & Enter key is pressed, the new dlg shd open I tried implementing with NM_RETURN. But, the application does not catch this msg Also i ...
|
| How does the linker choose section names ? | 05 May 2004 03:32 GMT | 1 |
When the linker creates an image, it combines sets of sections from the object files to single sections of the image file. I would like to know how the linker chooses which sections will be combined and which sections will be in different sections of the image ; and how the ...
|
| Comm Port setup not complete | 05 May 2004 03:26 GMT | 2 |
I am using a serial port to communicate with an embedded device. I am using CreateFile, WriteFile & ReadFile. It all works great until I run a VB6 application that uses the serial port. After I run the VB6 application, the ReadFile no longer waits for a character, it simply falls ...
|
| Sharing Resource Files Between C# and C++, Possible? | 05 May 2004 00:28 GMT | 2 |
I have a Managed C++ DLL used by a C# application. I'm building with VS .NET 2002. I have a resx file loaded with string data. The C# application can access the string data fine, like so:
|