| Thread | Last Post | Replies |
|
| Generate tlh/tli from a tlb? | 26 Oct 2007 15:28 GMT | 1 |
Long story short: I've been able to load a C# dll in C++ by having the C# project generating a type library (tlb) and #importing that in C+ +. The #import directive looks like a compiler shortcut that generates a tlh and tli locally. Now what I want to be able to do is
|
| derived class can not access base class protected member? | 26 Oct 2007 10:23 GMT | 15 |
I met with a strange issue that derived class function can not access base class's protected member. Do you know why? Here is the error message and code. [Code]
|
| video card drivers | 26 Oct 2007 04:03 GMT | 3 |
I have Vista Home edition I have downloaded Second Life and get the mesasage "Second Life is unable to run because video card drivers are out of date or unsupported" I have NVIDIA GeFoirce 61000nForce 405 and am told by support that this is
|
| nullptr for VS2005 but what about VS2003? | 25 Oct 2007 23:32 GMT | 2 |
I'm using delegates to execute a group of methods using the BeginInvoke, that works fine; I'm waiting for the asynch thread to return the response using the EndInvoke, that works fine also. The point is, I didn't find the way to pass a null value to the BeginInvoke method for ...
|
| Simple question! | 25 Oct 2007 15:56 GMT | 3 |
What is the diffrence between C++, C#, VC++ and .NET? And what is this CLR that everyone is talking about? So if I want to use the .NET frameworks, do I have to learn C#. And how does Visual studio tie into all this?
|
| vcproj translated into Makefile | 25 Oct 2007 10:40 GMT | 3 |
Hello, guys, Here I have a VC project. I used to build it in VS.Net IDE. But because of cross platform requiremment, it need to be ported into Linux.
|
| Printf %d and %ld | 25 Oct 2007 09:54 GMT | 4 |
I think printf %d works fine with signed, unsigned and negative integer values, and the same as %ld for long. Is that correct? If not, do we need to special conversion? thanks in advance,
|
| Assemblies in VS 2005 | 24 Oct 2007 20:15 GMT | 2 |
I'm confused about C++/CLI assemblies in Visual Studio 2005. I want to create a C++/CLI assembly in Visual Studio 2005. I know, that I can get one by using the command line compiler. I don't know, how to get one with the VS2005 IDE:
|
| Launching one CWinFormsDialog from another | 24 Oct 2007 13:46 GMT | 3 |
What I'm basically trying to do is show one form from another when an event occurs. This is obviously straightforward in c#, but I'm struggling in c++ where each is wrapped in a CWinFormsDialog.
|
| message localization | 24 Oct 2007 06:20 GMT | 4 |
I want to print out and log localized message according to current locale of machine. For example, if I am always use MESSAGE_ERROR macro in my program, and I want to replace it with "Error" when the locale is en_US and be replaced with French if the locale if Fr.
|
| arrays | 23 Oct 2007 23:36 GMT | 1 |
I am building a .net control in C++/CLI, and it will be hosted by a C# form. The form will load some data from file and pass it to the control (an array of bytes): byte[] data = new byte[length];
|
| Form size differs in different OS's? | 23 Oct 2007 21:35 GMT | 2 |
I'm developing a program at home on a Windows Vista computer. In it I create a form with a few buttons on it that fill up the form's visible area. So, I took the application to work, where I use a Windows XP PRO computer. When I ran my program, the form visible area is different! ...
|
| .NET Framework versions | 23 Oct 2007 18:43 GMT | 4 |
If I tell the compiler to target .NET Framework 3.0 (one of the References options in VC++ 2008 Express), does it still work if they only have a higher version (say 3.5) of .NET Framework installed? Or does it look for and only work with the specific version? The various various ...
|
| Need some advice! | 23 Oct 2007 17:09 GMT | 7 |
Okay, after a few searches on Google such as, "what is .NET" and "what is C#" I am now starting to see what all this means... C++ is a language, and so is C#. You can get these languages in Visual Studio. We can somehow program in C# and when we require the power of C++, we
|
| fatal error C1001: An internal error has occurred in the compiler | 23 Oct 2007 16:52 GMT | 1 |
My code has suddenly stopped compiling after some refactoring I carried out last week. I am using VC8 on W2K professional I get the following cryptic error: Error 77 fatal error C1001: An internal error has occurred in the
|