| Thread | Last Post | Replies |
|
| VC = wrong language for windows forms? | 26 Feb 2004 16:01 GMT | 3 |
I've googled this a bit and suppose I know the answer, but I'd appreciate any input: I'd like to write windows forms apps in C++, but it seems almost as if that is discouraged. As an example, practically all the books, etc. are written
|
| int32 to native int | 26 Feb 2004 15:40 GMT | 18 |
Can this be done? Is there a way to "de-alias" the int datatype so I can pass an int into a C method?? Paul
|
| how can i catch the packet | 26 Feb 2004 15:36 GMT | 2 |
hi,who can help me ?i came into a problem that how can i get a packet which was send in the LAN.in a word ,how the sniffer works. I once used the rawsocket in win2000 or xp,and it do catch.
|
| VC7.1: Compiler Error if include any STL headers (iostream, fstream, string, etc.) | 26 Feb 2004 02:51 GMT | 1 |
I've just installed VS.NET 2003 on my Athlon XP 1800+. However I couldn't get any project with STL includes to compile even if I create a new empty project (and added #include <string>). It gave me a bunch of "missing ;" errors. I did reinstall the whole thing a few times but it ...
|
| Template - Version - Edition problem - Microsoft Press | 26 Feb 2004 01:15 GMT | 3 |
I am currently going through the C++ step by step microsoft press book. I have VS.NET 2003 loaded. In the examples it asks me to choose "Managed C++ Application", "Generic C++ Class wizard" . I do not have these templates!!! The book comes with standard edition visual c++. I think I ...
|
| Further to child windows... | 25 Feb 2004 23:38 GMT | 4 |
Further to my last post, I have managed to get a child window to display. But its messages are routed to the same WNDPROC that the main window's messages are routed to - what is the way of identifying from the lParam or wParam whether the message came from a child window or the ...
|
| DLL With Static Library Initialization Conflict | 25 Feb 2004 20:50 GMT | 8 |
I have an application that requires a DLL and an executable that uses the DLL, both of which were implemented in Visual C++ using unmanged code. Both the executable and the DLL are linked with functions that are stored in a static library. During initialization of the executable, ...
|
| BinaryReader.ReadBytes issue | 25 Feb 2004 19:20 GMT | 29 |
I am trying to optimize the reading of a huge binary file into a byte[]... I am doing the following.. byte[] ba = new byte[br.BaseStream.Length]; ba = br.ReadBytes((int)br.BaseStream.Length);
|
| Serializaion and CRunTimeClass problems in VC7.1 | 25 Feb 2004 17:09 GMT | 1 |
Howdy, I am trying to convert my project to Visual C++ 7.1 and have the following severe problem (my previous compiler was VC 6.0 which seems to work just fine).
|
| How to set file properties (not SetFileAttributes) | 25 Feb 2004 17:06 GMT | 4 |
I'am developing under Win 2000 with MS Visual Studio 6 My question What are the API functions for setting file properties? I'am talking about the proberties you can set, when you
|
| Mixed mode assembly wrapper | 25 Feb 2004 13:25 GMT | 3 |
I am making a wrapper class so I can call unmanaged classes from C#, I have these structs that I want to pass and get back from the unmanaged classes, do I... 1) Create a copy of these structs for the managed world like
|
| gc classes and destructors | 25 Feb 2004 11:29 GMT | 4 |
Below is a smal test program which create two objects deriving from DataTable. When running the 3 lines of code marked as Ex1 the destructor of DataTableEx is never called,- why?
|
| Serialization issue | 25 Feb 2004 02:11 GMT | 1 |
I was trying to serialize a type that has a SortedList in it and I get the following innerexception. {"The type System.Collections.SortedList is not supported because it implements IDictionary." }
|
| compiling on vc.net | 25 Feb 2004 01:11 GMT | 2 |
I am a beginner for VC++ .NET but I used VC++ 6.0 before. I wonder where the "run program" button has gone. Do we need to run it on command line everytime? Also when I try to run a program on command prompt I got the "cannot open include file error". How can I set the path to ...
|
| Missing SQLDMO.h in VC7 | 24 Feb 2004 22:20 GMT | 2 |
I'm converting a project written in VC6 to VS.NET 2003. When I built the solution that was generated automatically from VC6 workspace (.dsw), some errors occurred. "sqlole.h", "sqloledb.h", "sqldmo.h" and "sqldmoid.h" are included in the source code, but I cannot find them in VS ...
|