| Thread | Last Post | Replies |
|
| C++/CLI quirk passing properties as reference parameters | 20 Feb 2007 09:32 GMT | 7 |
The following example illustrates something that's taken me a while to suss out (debugging someone else's code :( )... The crux is that the code compiles cleanly at W4, and the issue is that I'm passing a property by reference to a function that's trying
|
| register contorl (dll) ? | 20 Feb 2007 08:57 GMT | 2 |
I have a shell extension in VS 6. I am porting the code to VS 2005. After porting, how can I register the dll from IDE? In VS 6, there is a option to register control from tools menu but I could not find the similar option in VS 2005. I am very new to this.
|
| STL & C++ CLI | 20 Feb 2007 00:59 GMT | 1 |
i need the fast power of STL and the connection to .NET and C#. I want to use my C++ library in a C# Application. Does someone has the same problem? And or has solved this Problem ? If i use a non managed code i get an error, that i cand used a mixed type.
|
| Exception Catching difference between VC++ and C# | 19 Feb 2007 22:34 GMT | 2 |
Exception Catching difference between VC++ and C# In C# I have this: try {
|
| Registry key permissions... | 19 Feb 2007 22:14 GMT | 2 |
I'm looking for a way to obtain the ACL for a specific registry key. For example if I want the permissions of HKLM\SOFTWARE\Microsoft I would get something like Administrators Full Control
|
| Windows and Forms | 19 Feb 2007 22:02 GMT | 1 |
I need your help. I have MS Visual Studio .NET 2003. I noticed that if I added a context menu to a form. It will not work, unless you add the line: This ->ContextMenu = this->contextMenu;
|
| C++\CLI static const System::String^ not supported? | 19 Feb 2007 21:59 GMT | 6 |
I'm converting MC++ to C++/CLI and for some reason it's not cool with static const System::String^ How am I supposed to have static constant strings then?
|
| From native to managed | 19 Feb 2007 18:50 GMT | 2 |
I'm working on a project where all the current code is written in standard compliant C++ with no dependencies on any external libraries except the standard library. The application is used to perform simulations of thermal radiation and is highly performance sensitive
|
| Wierd mixed c++ assembly problem. | 19 Feb 2007 17:58 GMT | 2 |
We are having an issue where .NET assemblies are inconsistently being found/not found. On some runs, everything runs fine. On other runs, we get exceptions saying that one of our assemblies was not found. Also, if we were to do a Search using Windows Explorer, sometimes the ...
|
| linker error in template instance | 18 Feb 2007 16:33 GMT | 1 |
When I add to my code this line vcg::tri::io::Importer<CMesh>::Open(mesh,"mesh.ply"); I get a linker error. Please help me.
|
| converting a console application to a dll | 18 Feb 2007 10:44 GMT | 1 |
I want to convert a vc++ console application having UI forms to a dynamic library or a static libray in .Net, where can i find such procedure for converting.
|
| The effect of "^" | 18 Feb 2007 07:13 GMT | 2 |
Hi, All! What is the effect of using ^ with the managed type? I'm trying to create a class library in managed c++. There is a class: public ref class MyClass
|
| help Recording with Microphone | 18 Feb 2007 02:50 GMT | 2 |
Hi I have Windows XP Media Edition, would like to learn how to record my granddaugter singing onto a CD, or if I have to download first onto the hard drive. Either way need help as to the steps to do either of these.
|
| /clr:pure & GetLastError | 17 Feb 2007 11:48 GMT | 2 |
The MSDN documentation says that the GetLastError function can give undefined behavior when compiling with /clr:pure switch. Does this statement apply to both C++ interop and P/Invoke? If yes, does it mean that we have to use Marshal::GetLastWin32Error to check the last error ...
|
| Why 32 bit arithmatic | 17 Feb 2007 01:18 GMT | 3 |
I'm very puzzled by the code that VC++ 2005 generated for a simple statement: unsigned short *a, b; b += *a;
|