| Thread | Last Post | Replies |
|
| Sleep in .net | 15 Oct 2006 13:16 GMT | 4 |
under visual C++ exists a function Sleep(millisecond). What is the equivalent under Visual C++.Net ? thx, Alain
|
| Managed String to in/out char * | 15 Oct 2006 05:41 GMT | 1 |
I have a unmanged C++ dll which has a function defined like: Modify(char* str) The char* is an in/out with a max length of 1024 I'd like to have a C++.Net Wrapper function which can be called by
|
| ambiguous type | 14 Oct 2006 17:18 GMT | 1 |
Under VC++.net, if i include windows.h, and compile my application, i have several data types ambiguous, like IDataObject, IMessageFilter, IDropTarget,... so it means that they are defined in windows.h but also in some other
|
| Include text data in an unusual manner... | 13 Oct 2006 22:22 GMT | 1 |
I am trying to use a include file to include a whole bunch of text data in my source cpp file. This text data can change so I have to maintain it as a separate file and have something that works like a #include directive.
|
| Setup Project | 13 Oct 2006 21:46 GMT | 1 |
I am creating a Setup Deplloyment application for a MFC app that uses STL. What are the necessary Merge Modules ? And what is the difference between: VC_User_MFC71_RTL_X86_---.msm and VC_User_MFC71_loc_X86_---.msm and:
|
| CallNtPowerInformation | 13 Oct 2006 06:29 GMT | 1 |
I have to write a simple program that will retrieve information about the System Battery, So I was able to find this WinAPI function: CallNtPowerInformation NTSTATUS CallNtPowerInformation(
|
| Passing data between forms C++ | 12 Oct 2006 22:44 GMT | 2 |
How to pass data between two forms? I find in the Internet, but not found immplementation problem in Visual Studio 2005 and C++ language. Example:
|
| Winsock recv function | 12 Oct 2006 22:32 GMT | 1 |
Hey There, I have a situation that is occurring that I need help in understanding. I have a thread that has a recv function in it, and I have a child thread of that original thread that processes the data.
|
| "Load lock" in C++ mixed mode dll with MFC | 12 Oct 2006 15:14 GMT | 4 |
I wrote a mixed-mode dll (with MFC and C++/CLI) which is called from a C#-EXE. Under special cirumstances (that is: another process sends a windows-message to my process - this message is processed by the native part and calls managed code in turn) a loader lock appears.
|
| CLI Service with MFC ? | 12 Oct 2006 08:54 GMT | 2 |
is it possible to make a .Net service with C++/CLI with the support of MFC library ? I have made a C++/CLI service, that works perfectly. Then I add MFC support, without using it (only add afxxxx.h and "use
|
| Cannot debug from unmanged code into managed code | 12 Oct 2006 02:06 GMT | 6 |
my small project has two files, umg.cpp (unmanaged c++) and mged.cpp (MC++), and unmanged code will call managed code. However, I cannot debug from unmanged code into managed code. Can anyone help me to solve the problem?
|
| Timing function call | 11 Oct 2006 19:24 GMT | 3 |
I have a function in C++/CLI that calls a native C++ function. I want the C++/CLI function to measure the time between the call to the unmanaged function and the return to the managed function. Can anyone point me in the right direction?
|
| help needed with command line linker invocation | 11 Oct 2006 09:16 GMT | 1 |
Apologies for asking such a basic question here but I am not sure where else to go. I am new to Windoze (have been working with UNIX for many, many years). When I try to link my application it does not find the M$ libraries unless I define the environment variable LIB. When I try to ...
|
| Dereference pointer in inline assembly | 11 Oct 2006 08:26 GMT | 3 |
Could anyone please tell me if there is a syntax to dereference a pointer in inline assembly? Something like: int *a = ...; __asm mov eax, *a; // move dword from location pointed to by a
|
| Pointers In VS2005 | 11 Oct 2006 02:07 GMT | 2 |
I've been trying to learn dotnet myself though a bit of a basterdized know-how of dotnet 2003 and previous straight unix C++ programming. For some reason I have been able to get most of the mechanics down quickly but there's something that's been eluding me.
|