| Thread | Last Post | Replies |
|
| Getting handle to calling dll/exe | 07 Mar 2006 16:49 GMT | 2 |
I'm using a library called fyba. This library reads and writes files in a format called sosi. fyba uses the following code to determine if the calling process has own methods to handle errors, messages, etc: // If this parameter is NULL,
|
| error with _HAS_ITERATOR_DEBUGGING | 07 Mar 2006 16:38 GMT | 1 |
I have made a C++ project with _HAS_ITERATOR_DEBUGGING set to 0 and _DEBUG 1 but then I get a link error error LNK2001: unresolved external symbol "public: void __thiscall std::basic_string<char,struct std::char_traits<char>,class
|
| How do I create a dynamic collection @ run-time using C (struct data Type) : C++/CLI Interop | 07 Mar 2006 07:40 GMT | 1 |
Sorry about the Cross-Post, I posted my question in the wrong group. Hello, What is the simplest way to create a dynamic collection (during run-time), using basic C (Struct data types). Since I am doing C++/CLI interop I wish
|
| Microsoft C/C++ 7.0 compatibility | 07 Mar 2006 04:32 GMT | 1 |
I need to edit an old dos program that was written with Microsoft C/C++ 7.0 (circa 1991?). I have the orig. MS floppies, but no MS 3.1 OS nearby. Can I install this package on a machine with Windows 2000? I have no other developer package by MS. Thanks.
|
| Compiling NET 1.1 on VS 2005 | 06 Mar 2006 19:45 GMT | 1 |
I have a .NET 1.1 project that I'd like to compile on Visual Studio 2005 Pro. In VS2003 I created a form and dragged the WebBrowser control onto it. This created the following code: private: AxInterop::SHDocVw::AxWebBrowser * axWebBrowser;
|
| Serialization and default construction | 06 Mar 2006 15:56 GMT | 2 |
My default constructors do not seem to be being called when deserializing using .NET. Consequently some of my objects that are marked [NonSerialized] are not in a initialised state?
|
| std::string to char * | 06 Mar 2006 14:54 GMT | 5 |
how do I convert std::string to char * ? regards, -Ab.
|
| Path of my executeable | 05 Mar 2006 10:44 GMT | 2 |
I'm using WTL, and I want to know the path of my exe. How do i do that? Regards, Ab.
|
| [VS.NET]I cannot debug ! | 04 Mar 2006 12:28 GMT | 3 |
I put a breakpoint on a line of code, it became (during the execution) empty with an exclamation point. I obtained the message "No executable code is associated with this line" when I point with the mouse on this exclamation point.
|
| emit helpstring attribute to idl for enum elements | 03 Mar 2006 23:24 GMT | 1 |
I'm trying to mark up an enum in a .h file such that when it is emitted to the .idl file the elements of the enum can be marked up with helpstring attributes. Microsoft has a published sample from the ODL help:
|
| BUG: pin_ptr causes compiler crash | 03 Mar 2006 20:15 GMT | 3 |
I posted this bug to MS, but was wondering if someone else could try inserting the following into a C++/cli project and seeing if it causes the compiler to barf: array<float,2>^ fMatrix = gcnew array<float,2>(4,4);
|
| Mixed mode | 03 Mar 2006 20:05 GMT | 3 |
I have dll which is written in vc6.0 Now I am writing a exe in C++/CLI and want to use this dll. So I first opened the VC6 dll in Visual Studio 2005 and the conversion was done. Now I added a windows form project to the solution and made this as
|
| Performance Question C++/CLI | 03 Mar 2006 18:23 GMT | 2 |
Lets say I have this class written in standard C++. I want to expose it to C# programs. So lets say I create a ref class to "wrap" around the standard C++ class. What are the performance implications of doing so? For the sake of clarity, the class is currently written in C#. ...
|
| VS 2005 C++ Win32 project does not link DLL file -- newbie question | 03 Mar 2006 16:31 GMT | 3 |
I admit I'm a newbie to C++, so this is probably just a basic problem. I'm trying to create a standard, simple, win32 DLL with external functions. I'm using VisualStudio.NET 2005. I create a new project in VS using
|
| MC++ equivalent to CType in VB | 03 Mar 2006 13:59 GMT | 2 |
I was following the tutorial given at: http://msdn.microsoft.com/netframework/programming/winforms/?pull=/library/en-us /dndotnet/html/mdiappsmenus.asp except writing Managed C++ instead of VB.NET. In particular, under "Using Menu Groups", they have this code to implement ...
|