| Thread | Last Post | Replies |
|
| USB interface | 21 Oct 2005 16:16 GMT | 1 |
Is there an easy way to talk to a USB port via VS C++.NET (2203, soon 2005)? VS C++.NET has other easy interfaces (e.g. XML), so I was wondering if a USB 'inteface' is built into the language somehow? If not, is there a tutorial and/or book and/or third-party widget I can get to ...
|
| settting /CLR per file in VS 2005 | 21 Oct 2005 15:30 GMT | 1 |
I was told that it is possible to set the /clr compiler switch on a per file basis. I find this option in the project settings for the .cpp files. However that does not affect the header files. So if I have a class that has managed members setting the /clr on a per file basis ...
|
| Automated builds with VC7.1 | 21 Oct 2005 15:25 GMT | 1 |
I have several modules comprising of shared libs (i.e. dlls) and executables. I would like to be able to do the ff: 1). Build each of the modules individually from the command line (without having to start MSDEV) - ideally by having a make file in each
|
| perfomance, malloc, HeapAlloc | 21 Oct 2005 13:17 GMT | 2 |
is there any performance difference between malloc() & HeapMalloc()?
|
| [BUG] VS 2005 and MFC Extension DLL with /CLR | 21 Oct 2005 11:39 GMT | 2 |
When I try to compile a MFC extension dll with /CLR in VS 2005 Beta 2. I get the following link errors: LNK2005: error _DLLMain@12 already defined in MyMFCDll.obj File: mfcs80ud.lib
|
| DLL From VB to use in VC++ | 21 Oct 2005 08:58 GMT | 3 |
Hi, i made a VB.net dll....i want to kno how i can use it in C++. I kno i need to make it a com object and how to call it. ive looked at several websites and none of them seem to work bc i dont understand it....so if anyone can any help id be grateful....thanks
|
| Noob question, how to malloc/free for char** ? | 21 Oct 2005 04:22 GMT | 8 |
Hey guys, If I have a pointer to a *char, how do I allocate and free memory for it? for example, if I had: char* pstring = "Hello\0";
|
| Is there a 'functiondef' (similar to a 'typedef')? | 20 Oct 2005 22:19 GMT | 7 |
I have defined a templated function: template< typename dataT > dataT Add_T( dataT x, dataT y ) { return (x+y) ; } Now, I'd like to do something like:
|
| Local and server paths question. | 20 Oct 2005 16:07 GMT | 1 |
I have in my PC the 'F:\' drive, it is an alias to '\\SERVER1\\DOCS' How can I get the real path for 'F:\'? How can I determine if 'F:\', 'G:\', etc. is a local drive drive or an alias to SERVER path?
|
| VC++6 to VC++7 porting issues | 20 Oct 2005 11:45 GMT | 5 |
I am migrating modules from VC++6 to VC++7. All the dll and exe modules are compiled successfully, but the applications crashes at startup. Please guide me what are the proper steps to migrate VC++6 code to VC++7. Thanks & Regards,
|
| How can I use C# GUI component in my MFC application. | 20 Oct 2005 09:12 GMT | 3 |
Would you be able to help me using C# GUI (with user interface component) in my MFC application. I have used managed extension, COM-interops, etc but problem is this C# component has user interface. how should have get window handle from managed windows?
|
| C3395: __declspec(dllexport) and __clrcall incompatible | 20 Oct 2005 06:14 GMT | 8 |
Hello, I created a MFC extension dll (using VS 2005 Beta 2) that is supposed to export a class that uses .NET internally (See header below) und later shall be used by a plain MFC Project (without the /CLR). As soon as I try to specify __declspec(dllexport) (AFX_EXT_CLASS) I get
|
| LINKER ERROR 1215 | 20 Oct 2005 06:12 GMT | 9 |
For some reson my code is generating a LNK1215 error, which 'suggests' I re-install VS C++. So I did. which did NOT solve the problem. The weid part is it seems to be caused by my one CPP file, but not sure how. It compiled just fine. Then I made a simple change and re-compiled, ...
|
| create a wrapped managed dll that can be used from pure unmanaged code | 19 Oct 2005 23:10 GMT | 13 |
I am trying to create a dll that internally uses managed types but exposes a plain unmanaged interface. All the managed stuff shall be "wrapped out of sight". So that I would be able to use that dll from pure unmanaged code (for example inherit from classes in that dll). Is
|
| writing to text file | 19 Oct 2005 22:26 GMT | 4 |
i have a compiled dll, and i want to see what values ar in certain methods during run time. i have built the release build . is there a way to write to a text file on my desktop or qa desktop?
|