| Thread | Last Post | Replies |
|
| Allowing Interrupts | 09 Jun 2004 20:32 GMT | 1 |
I'm writing a managed C++ application. Is there a function call I can make that allows any interrupt event (e.g., Mouse Click on a Button) to process? I'm writing a section of code that would best be served by running a long time without 'interruption', ala statistical runs of a ...
|
| clock_getTime | 09 Jun 2004 18:16 GMT | 1 |
is there anything like the clock_getTime function for windows? I want to run a Linux-project within .Net that uses the clock_getTime function to get nanoseconds. Thanks for your help
|
| Bottom property of Tab Control seems to malfunction | 09 Jun 2004 14:51 GMT | 3 |
Using Microsoft Visual Studio .NET 2003 to build a C++ MFC exe I am using the resource editor to create a dialog with a Tab Control. Setting the "Bottom" property (of the Tab Control) to True seems to erroneously set the "Buttons" property to true instead. This property worked ...
|
| Visual Studio .NET IDE Designer Fails When Implementing an custom namespace Form Programmatically in Managed Visual C++ .NET | 09 Jun 2004 11:03 GMT | 1 |
GoodDay.. Trying to nest the designer generated Namespace of a form-project in another namespace. with "MyCompay::MyApp" The program builds correctly. However, when try to view the form in Design view in the Microsoft Visual Studio .NET IDE Designer, eceive the following error ...
|
| How to get the current dialog background color ?? | 09 Jun 2004 10:36 GMT | 6 |
How can I get the backgroundcolor of a dialog, or generally a parent window ? I´ve tried "GetBkColor" on my own window, my parent window, the next parent window, the next and the next, but the return value always claims the background color would be white I´ve already used all ...
|
| VC+ built EXE and DLL have inconsistent CRCs | 09 Jun 2004 00:51 GMT | 1 |
Using Visual Studio we found when you rebuild an EXE file, even if a few minutes later, each time the CRC is different Same with DLL files I heard that if you skip a certain number of bytes in the beginning and end of the file, you can get consistent CRC signatures. Anyone knows ...
|
| Conversion from/to String* to/from std::string | 09 Jun 2004 00:18 GMT | 1 |
I have the following methods I've written to convert from String* to std::string and back: static void ConvertFromStdString(std::string& inStr, System:String* outStr)
|
| How to convert a UTF-8 string to UTF-16 string in vc | 08 Jun 2004 17:23 GMT | 5 |
algorithm or API is expect thanks
|
| buggy vc7 code? HELP!!! | 08 Jun 2004 13:36 GMT | 1 |
I've built wizard application in .NET 2003. In the CPropertyPage constructor, last param is passed by default as sizeof(PROPSHEETPAGE). Since I have defined _WIN32_WINNT as 0x0500, this size is passed in as 48 (which is fine). AllocPSP() in the constructor is now allocating 48 bytes ...
|
| Single instance DLL | 08 Jun 2004 11:57 GMT | 2 |
I am attempting to make a single instance DLL in C++. This means that I only want 1 copy to be loaded at any time and the DLL's data is shared throughout processes. For example, I have a VB.NET app connecting to my DLL and calling a
|
| Metadata importing puzzle | 08 Jun 2004 10:46 GMT | 4 |
When using another assembly, I prefer adding it to the References section of the project that uses it (thus adding the appropriate /FU option to the compiler command line) over an explicit #using directive in the source code. So far, this has worked without any problems.
|
| error LNK2001: unresolved external symbol "void __cdecl __CxxCallUnwindDtor... | 08 Jun 2004 06:29 GMT | 7 |
I am experimenting with managed code in C++. But shortly into my exploration, I've run into a Linker error which I cannot diagnose. (I have searched MS knowledgebase, MSDN newsgroups, and Google, with no luck.) Seems that the error somehow involves my usage of a destructor (like
|
| What is 'scalar deleting destructor' ??? | 08 Jun 2004 06:12 GMT | 1 |
|
| C++ and C# interoperability | 08 Jun 2004 01:31 GMT | 7 |
Background: I have nearly two years of experience with C# and the .NET framework, as well as a fair amount of C experience from many years ago, but no C++ background (until about two months ago.) Now, I am helping a team develop an application with a UI based on C# and business ...
|
| MMX registers | 07 Jun 2004 18:02 GMT | 4 |
I am trying to get a C++ application to compile in Visual Studio .NET 2003, all is compiling okay but I am coming across issues when the linker starts. It doesn't seem to be able to find the MMX extensions, is there anything I need to do to enable the linker to find these?
|