| Thread | Last Post | Replies |
|
| New Managed class syntax | 04 Mar 2005 13:31 GMT | 2 |
First of all, i want to use the new managed class syntax and STL.NET under Microsoft Visual (C++) Studio 2005 Beta. I read in a Microsoft article(http://msdn.microsoft.com/VISUALC/default.aspx?pull=/library/en-us/dnvs05/html/s tl-netprimer.asp)
|
| Passing a C# object to MC++ | 04 Mar 2005 09:26 GMT | 1 |
I am trying to pass C# object to MC++ as one of the method Parameter. I am getting following Fatal error. fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'msc1.cpp', line 2701)
|
| static managed member in unmanaged code | 04 Mar 2005 08:58 GMT | 3 |
Is it possible to declare a static managed member in managed code? gcroot<MyClass*> instance works, but
|
| NullReferenceException in calling C native method | 03 Mar 2005 23:44 GMT | 2 |
I get the following error during runtime: Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object. at SXInit(Int32 ) The SXInit method is a native C function I am calling from Managed C++ and the method is expecting a number of ...
|
| Changing NT-Style Services and the Registry | 03 Mar 2005 19:55 GMT | 1 |
I'm currently writing a simple, unmanaged, VC++ 2003 unmanaged app without .NET libraries (for project specific reasons). My current stumbling block is how to delete a service. The only method I know of by hand is to go into the registry, navigate to
|
| Deploying Visual Studio Applications | 03 Mar 2005 17:55 GMT | 4 |
I've written some simple games and now I want to create installers for them. I've added the thrid party dlls that I use (fmod, libsdl..) but my games also need certain Visual Studio .NET dlls. 1. How do I supply the Visual Studio .NET dlls to the end user? (Ship the
|
| Press any key to continue | 03 Mar 2005 16:43 GMT | 6 |
I have an unmanaged console app written in C++. I can't figure out how to get C++ to do the standard issue "press any key to continue" thing: cout << "Press any key to continue: "; cin >> <your code goes here>;
|
| how convert a buffer into a C# class | 03 Mar 2005 13:05 GMT | 1 |
If I have a program wroten in C,and defined a struct like this: typedef struct data { int m_i;
|
| Fatal error C1083. Please help if know | 03 Mar 2005 10:59 GMT | 2 |
I am running some code in c++ and giving me the following error --------------------Configuration: Project_C_Calculator - Win32 Debug-------------------- Compiling...
|
| Vector<E> -> E __gc[] | 03 Mar 2005 10:44 GMT | 3 |
I'm trying to create a template function to convert from a vector of Es, to a managed array of Es. I want this to work with std::vector, or any other type that implements the call requirements of this function. I get the following error on this code:
|
| Binary to Decimal | 03 Mar 2005 01:48 GMT | 1 |
Should the following algorithm produce the binary equivalent of an inputed decimal value? ---------- cout << "Decimal value: ";
|
| ActiveX Dead? Alternatives? | 02 Mar 2005 17:08 GMT | 21 |
I'm a die hard c# developer, developing win32 and web based enterprise apps for last few years. The development team I'm on is going down a path I feel is wrong. I scoping out the web to knock their solution but of course, an alternative
|
| Wrong resource language | 02 Mar 2005 12:27 GMT | 2 |
When I created my C++ project I mistakenly used Chinese. Now all the labels on the buttons cannot show Swedish characters, which I would like it to do. Can I change this setting somewhere or do I have to create my project allover again?
|
| Serial Comm Problem | 02 Mar 2005 03:51 GMT | 7 |
I wrote a program that communicate with SerialComm. In every 300 milliseconds, my program continuously send & receive data via the serial port once the program starts. My program is once in a while, the serial port seems corrupted because when
|
| ListBox Item Objects: what is displayed? | 01 Mar 2005 22:21 GMT | 2 |
I'm going to be using a ListBox in my managed C++ application, and have a question. Why are the Items you Add to a ListBox in the form of generic Object*'s? I believe a ListBox displays a table of selectable options via multiple lines (or columns) of TEXT, so why doesn't Add ...
|