| Thread | Last Post | Replies |
|
| "syntax error: identifier" instantiating another class within same namespace? | 10 Mar 2005 22:49 GMT | 4 |
I've got 2 classes in 2 seperate header files, but within the same namespace. If I use a line like: // This code is inside Class2's header file Class1 *newitem = new Class1(param1, param2);
|
| licensing | 10 Mar 2005 19:39 GMT | 4 |
I was having a really annoying problem getting some components I bought from ComponentOne to work. I found this posting in their knowledge base which seems to fix the problem. Is there a better workaround from Microsoft though ? It's a pain to keep adding these custom build steps ...
|
| problem using mixed code dlls with asp.net | 10 Mar 2005 17:49 GMT | 1 |
I have a c# application that calls a mixed code dll which in turn calls an unmanaged dll that has an inline template class constructor. The c# application runs fine until I use it on IIS The problem only occurs the first time you run it in a debugger.
|
| When I compile a VC++6.0 project in vc++.net ,error C2365 occurred . What's wrong with me ? | 10 Mar 2005 17:30 GMT | 3 |
I used vc++.net (visual studio .net ) to open a project which can work well in vc++6.0. I succeeded in compiling the project in vc++.net in release mode . But when I tried to compile the project in debug mode, the following errors
|
| VC6 and VC7 applications and DLLs coexistence | 10 Mar 2005 14:38 GMT | 11 |
Hi Friends, I'm facing a situation as follows, need help on identifying possible issues. There is an MFC application developed in VC6.0, say ABCVC6.exe and another developed in VC.NET, say DEFVCNET.exe. There are a few DLLs that are to be
|
| .NET dialog communication | 10 Mar 2005 14:34 GMT | 1 |
I have written an app with a main window and a dialog window. I would like to be able to have an event from the dialog window update some information in the main window. So, Visual Studio creates two .h files with two classes for each of the Forms (Main Window and Dialog Window).
|
| High Resolution Callback Timer (microseconds) | 10 Mar 2005 11:47 GMT | 2 |
Anyone, I'm looking for a way to setup a callback function in our VC++ .ne 2003 7.1 console application using a higher resolution timer. Th multimedia timer is too low resolution at 1 millisecond. We nee
|
| VC++ 2005 Express Beta February 2005 CTP | 10 Mar 2005 05:30 GMT | 1 |
I downloaded and installed VC++ 2005 Express Beta February 2005 CTP. I just created a Windows Forms application but in the Toolbox I see no UI components. Am I missing something? :-)
|
| Problem porting from VC6 to VS.net | 10 Mar 2005 03:07 GMT | 3 |
My VS6 version used #include <fstream.h> which for VS.net I had to change to #include <fstream>
|
| LPVOID : Philosophy lesson needed : Can you offer a small history lesson for an aspiring C++ programmer? | 09 Mar 2005 20:47 GMT | 7 |
I have been doing some C++ Interop using the new VS2005 (June Beta). I am exposing these methods to .NET clients. I ran into some WinAPI methods which use LPVOID types, and I don't understand the philosophy behind this type.
|
| marshalling connection point callback | 09 Mar 2005 20:41 GMT | 1 |
I really need to know how to marshal my connection point interface (visual studio 2003 ATL singleton service) so that I can broadcast new events that have been received to applications that have expressed interest via the connection point. The broadcast needs to take place in a ...
|
| managed enumerated type and ++ operator | 09 Mar 2005 20:18 GMT | 2 |
I have an enumerated type like this: public __value enum MyType{ ABC = 1, DEF = 2,
|
| Pausing Sound | 09 Mar 2005 19:11 GMT | 1 |
I use the function PlaySound(FileName, NULL, SND_FILENAME | SND_ASYNC | SND_NODEFAULT) to play a .WAV sound file in my program. How do I pause it? Is there such function as PauseSound in Visual C++? Thank you,
|
| macro - how to open/close application file | 09 Mar 2005 18:07 GMT | 1 |
I have just begun to to learn how to write macros in VC++. For learning purposes, I would like to implement a macro that accesses all files in a 'test' project and makes a series of changes to these files. I am able to identify each file in my project and then open the file. ...
|
| Win32 DLL | 09 Mar 2005 16:58 GMT | 3 |
I have good experience with COM ATL object, but recently I needed to deal with Win32 DLLs. I have some question relating to their model of work. In COM objects every client of the com server will have a special instance that may
|