| Thread | Last Post | Replies |
|
| Referencing a Form(.NET)? | 24 Sep 2004 04:57 GMT | 1 |
Hi, I created a Form and need a pointer to it so that I can reuse it again and again instead of recreating it all the time.. something like this... Form1.h // .... snipped for brevity
|
| Managed exception filter | 24 Sep 2004 04:07 GMT | 2 |
The .NET Framework developer's guide claims that one can filter managed exceptions in C++. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cp conusinguser-filteredexceptions.asp However, I don't see how I get access to the managed exception object.
|
| atof really puzzles me | 24 Sep 2004 03:27 GMT | 10 |
Can anyone explain to me that why the flowling code printf("%f\n", atof("12345678901234567890")); produces this result: 12345678901234567000.000000
|
| will a VC 7.1 project build directly without errors in VC 6.0 ?? | 24 Sep 2004 02:13 GMT | 2 |
i am working on WMA SDK. i got the SDK from Microsoft under source development agreement . The SDK has the project of WMA 9.1 built in VC 7.1 As i dont have VC 7 i found a tool to convert the project to VC 6.
|
| Newb w/ simple wrapping ? | 23 Sep 2004 21:58 GMT | 2 |
Just trying to work through some examples I have seen on the web.... I'm getting an unresolved external linker error for operator new and delete. Here is the code, VERY simple. #pragma once
|
| Problem with debug IDE displaying value of __int64 | 23 Sep 2004 21:30 GMT | 1 |
I get odd behavior in the debugger with the following code. The output of the program itself is correct, but when I add the g_bad_int64_max and g_bad_int64_min to the watch window they show values of -1 and 0 repsectively. This only happens when initializing a const __int64 in ...
|
| Visual Studio Problem | 23 Sep 2004 19:04 GMT | 3 |
For a project containing help; set the resource.hm file attributes to include read only. Uncheck Tools->Options->Environment->Documents->Edit read only files. Open Project
|
| C++ v1.5 compiler | 23 Sep 2004 18:47 GMT | 1 |
I am in need of finding Visual C++ 1.5 16 bit compiler to compile an application for handhelds running DOS. Where can I find this compiler at this time? Thanks
|
| DataRowVersion | 22 Sep 2004 17:11 GMT | 2 |
I'm attempting to retrieve specific versions of a row's column in C++ (this works fine in C# - apart from the syntax) // by column number row->Item[2, DataRowVersion::Original]->ToString();
|
| LNK2001 Unresolved external symbol | 22 Sep 2004 12:41 GMT | 2 |
Help, I am trying to nail a linking problem, to avoid having to lose about 2 weeks work. I have a backup of my project that compiles and links OK however changes I made sometime since then have resulted in the
|
| Forward Declarations in Managed C++ | 22 Sep 2004 03:33 GMT | 3 |
Hi again, Maybe I missed something, but I cannot do a forward declaration in managed C++. By doing:
|
| Which button? | 22 Sep 2004 01:31 GMT | 5 |
Hi, I cannot get this code to work. All I want to do is to fetch 'which' toolbar button was clicked, so I can act on it... private: System::Void toolBar1_Click(System::Object * sender, System::EventArgs * e)
|
| Problem with /clr switch in Whidbey | 21 Sep 2004 14:39 GMT | 1 |
I'm trying to compile the program with Whidbey but I got the following problem: ------- cut here ----------- c:\h>cl h.cpp /clr
|
| newbie question | 21 Sep 2004 06:07 GMT | 1 |
#using <mscorlib.dll> What is this actually doing in my code? Is this like including mscorlib.h and linking with mscorlib.lib?
|
| istringstream | 21 Sep 2004 06:06 GMT | 1 |
I can't seem to get this to compile... (Perhaps I'm missing a header file) std::string htmlMsg; std::istringstream iss(htmlMsg);
|