| Thread | Last Post | Replies |
|
| Select | 23 Sep 2006 23:05 GMT | 2 |
I have just a problem with the Select timeout parameter. The MSDN tells us: microSeconds The time-out value, in microseconds. A -1 value indicates an infinite
|
| c/C++ prog. | 23 Sep 2006 21:22 GMT | 1 |
I've already sent such a messege, hopping to be answered shortly this time. I am practicing c/c++ programming using microsoft visual c++ express 2005 express edition. Anyway, unlike other compilers there is no option to actually run the prog. (Ctrl+f5,f7 in vs). What I meen is ...
|
| Re: Debug Assertion Failed! msvcr80d.dll!__loctotime64_t | 23 Sep 2006 01:23 GMT | 2 |
> Date: Thu, 23 Mar 2006 08:12:32 +0100 > From: "Jochen Kalmbach [MVP]" <nospam-Jochen.Kalmb...@holzma.de> > Subject: Re: Debug Assertion Failed! msvcr80d.dll!__loctotime64_t Expression: > (((long)(yr-1900) >= _BASE_YEAR) && ((long)(yr - 1900) <= |
| Windows Forms apps not "ending" when you close the form window | 22 Sep 2006 20:56 GMT | 10 |
I've been having a problem with C++ Windows Forms apps not "ending" when you close the form window. I've searched about this problem all over the place and most searches have lead me to believe that this has to do with unreleased form component events or event handlers.
|
| Visual C++ 2005 upgrade problems | 22 Sep 2006 06:53 GMT | 1 |
Currently, I am working on converting C++ applications written with C++ 6.0 to C++ 2005. I can compile the applications fine after slight modifications but when I run applications, I am getting two different types of errors. 1 - The application failed to initialize properly ...
|
| math.h / complex - issue porting 2002 app to 2003 | 22 Sep 2006 00:19 GMT | 1 |
I noticed when migrating a 2002 application to 2003 that the system changed to a different usage for pow(2,-15). In 2002, it used double pow(double,double). In 2003, it is using double pow(int,int).
|
| flexible array in a struct, or something similar | 21 Sep 2006 20:07 GMT | 3 |
In C++ I want to statically create an array that contains variable arrays inside of it. Or something similar. Essentially I want to do something like this: {
|
| Managed C++ calling unmanaged C++ DLL - unresolved external symbol error | 21 Sep 2006 19:03 GMT | 6 |
I have a managed C++ code which calls some methods in unmanaged C++ DLL. In my unmanaged DLL, I have a PROTECTED virutal function in a base class and derived class has a PRIVATE function which overrides the
|
| How to get list of subfolders within one folder | 21 Sep 2006 18:41 GMT | 1 |
How can I retrieve list of all subfolder within one folder? I want retrieve this list using path of input folder. I want to achieve this in windows form application using VC++. Regards,
|
| C++/CLI C++ Interop and FxCop/Code-Analysis warning CA2122 | 21 Sep 2006 18:24 GMT | 5 |
I've purposely been ignoring a CA2122 warning in some C++ interop code I've been working on for quite some time. I've just recently had the cycles to investigate the warning. The warning message is as follows Warning CA2122 : Microsoft.Security : MyClass.Method():Void calls into ...
|
| A level 4 warning shown only in release mode, not in debug mode | 21 Sep 2006 17:49 GMT | 5 |
We just recently move to code from VC++6 to VC++.NET 2005 and upgrade the warning level from 3 to 4. In debug mode, we compile the application with no warning no error, but when I build it in release mode, there are quite few C4701 warnings and some C2679 errors. Note
|
| finding handle of child window | 21 Sep 2006 10:49 GMT | 4 |
how do I find the handle of a child window and get a screenshot of that in a hbitmap at present i tried the below method but am getting the screenshot of the desktop. the Egyptian Addiction is the name of the game and the mozillacontentwindowclass is the handle i need who's ...
|
| LPCTSTR to std::string | 20 Sep 2006 22:51 GMT | 10 |
Anyone knows how to convert a LPCTSTR to an STL striung?. Can't seem to finda nyting (that dosen't blab on for several pages) on the net about how to do this
|
| Passing HWND for C++ wrapper | 20 Sep 2006 16:59 GMT | 1 |
I am writing a Managed C++ wrapper for some unmanaged code to be used from C#. A lot of the C++ methods expect HWND parameters - what is the best way of passing these from C#? At the moment I am taking an IntPtr in my wrapped methods and casting to HWND from the IntPtr.ToPointer()
|
| How to call Invoke in C++/CLI????????????????????????? | 20 Sep 2006 16:58 GMT | 2 |
I have a brain dead simple question: how in the heck do I call invoke in C++/CLI? I am simply doing a check to see if invoke needs to be called, but then I cannot for the world figure out how to actual call Invoke. Nor am I finding an examples anywhere. I know they are out
|