| Thread | Last Post | Replies |
|
| tlbexp command | 16 Sep 2007 09:38 GMT | 18 |
I find that we can use tlbexp command like *tlbexp <dll name>* to export tlb file for a C# COM assembly, but can not use it to export tlb file for an unmanaged C++ COM DLL. Is that correct? I am wondering how to export tlb file of an unmanaged C++ COM DLL?
|
| dependecies for mfc exe | 15 Sep 2007 05:13 GMT | 3 |
I developed an mfc based application. Now, I need to create setup for this application. Now, I need to finde what are all the supporting dlls/libs for this application? I checked with dependency walker then created setup with 5 dlls.
|
| event handling | 15 Sep 2007 00:24 GMT | 1 |
I am writing a custom control in C++/CLI. In the Visual Studio designer, I clicked to handle the paint event. This worked fine except that Visual Studio put the function definition in the header file instead of the .cpp file. Is it okay if I move it to the .cpp
|
| /clr:pure doens't compile at release mode with unmanaged functions | 14 Sep 2007 20:43 GMT | 1 |
I have been writing a wrapper with /clr:pure set, while I using the debug mode it was fine, when turned the mode to release it begins show me the same errors that when we try to use unmanaged functions whithout specify the input libs to the linker,
|
| set_difference algorithm in .NET generic collections? | 14 Sep 2007 14:20 GMT | 1 |
Just before I have to implement my own.. I don't suppose the .NET framework has an equivalent of the STL set_difference algorithm yet...? For e.g. If I have two containers: CompareSet={1,2,3} ToSet={2,3,4}
|
| Updated my XP Pro System. Now VC++ 2005 Pro can't create tem file | 13 Sep 2007 16:54 GMT | 3 |
error PRJ0006 : Could not open the temporary file 'c:\Project\CompressMorphis\Release\RSP00000133601984.rsp'. Make sure the file exists and that the directory is not write-protected. 1>Compiling...
|
| Failure Fixed Disk | 13 Sep 2007 03:12 GMT | 5 |
Recently I was on my laptop and it shut down on me, when I tried to reboot, it came up with the error code Failure Fixed Disk, then goes straight to Bios. I can't even get windows to come up at all to try a virus scan or anything. Any ideas?????
|
| ListBox usage question | 12 Sep 2007 17:08 GMT | 3 |
Hi to every one!!!! For some time now I'm programing in .NET and I have a question in using ListBox I need to databind a collection to a ListBox. My code is something
|
| String problem VS 2005 | 12 Sep 2007 10:19 GMT | 12 |
How can I "convert" from a char to a string. I'm trying to display in the console the Classname and the text in the notepad window. Start notepad and type some text before running the following code. #include <windows.h>
|
| a simple ofstream open question | 11 Sep 2007 15:45 GMT | 3 |
If I write the following code: ofstream f; f.open("c:\\hello.txt", ios::binary | ios::out); how do I check if the file is successfully opened and ready to write ?
|
| OLE Viewer | 11 Sep 2007 07:12 GMT | 8 |
I am looking for some tutorials about how to use OLE Viewer. But I can not find any detailed tutorials. Any reference? thanks in advance, George
|
| Exposing unmanaged C++ COM to managed C++ application | 11 Sep 2007 01:50 GMT | 4 |
Hi, everybody, I found some simple example of writing of a service application in managed C++. The only thing my service has to do is periodically to call some COM Server function written in managed C++.
|
| Stepping into vc++ dll from c# | 10 Sep 2007 16:20 GMT | 2 |
I need to debug a native vc++ dll used in a c# app winforms app. The c# app employs DllImportAttribute, and static extern int, to define the functions it calls from the vc++ dll. The vc++ dll is not referenced, nor does it use com to communicate, rather
|
| Object sender, System.EventArgs e | 10 Sep 2007 15:00 GMT | 2 |
I'm trying to call ButtonClick( object sender, System.EventArgs e) from a method rather than clicking the button. But I can't determine the values of sender and e that I should use. I ran the program with a stop on, clicked the button and opened up a watch window and it shows them ...
|
| Virtual ListBox | 10 Sep 2007 14:58 GMT | 1 |
I have a problem, I hope someone will help me. I'm writing a small emulator, and as I'm working on it I want to see its internal memory the memory is from 0000 - FFFF (WORD) so that's 65536 bytes. I'm thinking to put 16 of them in one line, so that would make 4096
|