| Thread | Last Post | Replies |
|
| VC++.Net DialogBox | 06 Mar 2005 10:33 GMT | 1 |
I am trying out DialogBox, and I have been trying to press the OK Button on the dialogbox hoping I can receive the OK DialogResult to Main Form. Below is my OK button click event handler code on AboutBox Dialogbox:
|
| Newbie Question, How do I Run Quickstart Tutorials | 06 Mar 2005 09:24 GMT | 2 |
I am trying to run the quickstart tutorials but without much luck. When I click the run button initially I get taken to the screen where you are invited to enter the location on your local hard disk C:\Program Files\Microsoft Visual Studio...... etc is the default.
|
| String* to char[] | 05 Mar 2005 21:10 GMT | 20 |
How the heck does one convert a String* to char[]? Specifically: String* my_string = "HELLO" ; char m_char_array[32+1] ; m_char_array = my_string ; // error
|
| rank beginner in VC++.net | 05 Mar 2005 03:48 GMT | 3 |
I am brand new to VC++.net. I am a programmer.I have successfully compiled the sample managed code 'hello world...' program. How do I execute it within Visual Studio.net or Visual C++.net. It is a console app and I am groping. I want to understand this framework. I
|
| istream::good() in a dll | 05 Mar 2005 00:52 GMT | 3 |
we are trying to port a fairly large c++ library to windows using Visual Studio.net 2003, and are running into some unexpected problems with the stream handling. Since our development is more or less Unix-based, I am afraid I am quite a novice to all Windows - specific
|
| Help -> floating bar is not being displayed correctly | 05 Mar 2005 00:03 GMT | 1 |
I have this: CSize sz; sz.cx = dwOutX1; sz.cy = dwOutY1;
|
| Boost bind() function freezes VC.NET 7.1 | 04 Mar 2005 19:46 GMT | 7 |
I'm using visual c++ .net 7.1 and so I'm taking advantage of the some of the classes in the boost library, like bind.hpp and function.hpp The problem is that this particular header will occasionally freeze visual studio, causing me to force it to shut down and lose whatever ...
|
| keydown event | 04 Mar 2005 18:25 GMT | 3 |
I have function : System::Void Form1_KeyDown(Object* sender, KeyEventArgs* e) but this: this->KeyDown += new KeyEventHandler(this, Form1_KeyDown);
|
| XAML | 04 Mar 2005 18:21 GMT | 11 |
Will XAML be mandatory in VS "Orcas"?
 Signature Ioannis Vranos
|
| Overload operator= | 04 Mar 2005 18:13 GMT | 4 |
What's the syntax to overload the operator= under Microsoft Visual C++ .NET 2005 in a managed class. I tried : static Myclass^ op_Assign (Myclass^, Myclass^){} but it doesn't work.
|
| Open a file in a managed class | 04 Mar 2005 17:12 GMT | 2 |
Hi NG! In a managed C++ class, I have a function that expects a System::String argument that specifies a file name. Now I want to use that filename for CreateFile, but I don't know how to convert a System::String to a
|
| Preventing usage of .NET features in VS .NET 2003 | 04 Mar 2005 16:40 GMT | 8 |
We are in the process of migrating from VS 6.0 to VS .NET 2003. Our code base in VS 6.0 is mainly C++. As a first step we do _not_ want to use the .NET framework features, but just continue to use unmanaged C++ code. We are only looking to use the more
|
| Help - P2P connection in .Net - like Yahoo does for IM | 04 Mar 2005 15:58 GMT | 1 |
I want to develop p2p (peer-to-peer) communication connection for chat in .Net (Lang: c# - preferable) NOTE: if two LAN are behind their own router then also it should work as yahoo, msn messenger works.
|
| Pointer to memberfunction for managed code? | 04 Mar 2005 15:53 GMT | 2 |
I have the following code: #include "stdafx.h" #using <mscorlib.dll> using namespace std;
|
| How to suppress warning in VC++ | 04 Mar 2005 14:14 GMT | 4 |
I posted this question earlier but on the wrong usenet. I have a warning below that I need to suppress *warning C4018: '<' : signed/unsigned mismatch I searched google, Microsoft help and MSDN for an answer but no luck.
|