| Thread | Last Post | Replies |
|
| destructors not permitted for __value types. | 19 Feb 2004 09:19 GMT | 5 |
Personally, I like to use simple abstractions to wrap resources For example consider a class that wraps a resource - say an IntPtr which is allocated in the constructor and deallocated in the destructor. In the managed world I find that I can not use this because destructors (and ...
|
| compiler error | 19 Feb 2004 08:58 GMT | 1 |
I'm currently reading Microsoft Visual C++ .Net and I'm trying to compile a Dialog box form that I've just created however I'm getting the following errors. Output Window
|
| Is C++/CLI available in some form now? Whence Whidbey Beta 1? | 19 Feb 2004 03:03 GMT | 2 |
The recent questions about C++/CLI in this group made me wonder if some folks had their hands on it.... Is it available someplace? How is the calendar shaping up for Whidbey Beta 1?
|
| C++/CLI and parameters | 18 Feb 2004 22:53 GMT | 3 |
Does C++/CLI support default values or is it like C# where we have to use overloading only? I have some unmanaged methods with default values (I may not need them thoough) I need to implement in my managed proxy class.
|
| Data marshalling in C++/CLI <-> C++ | 18 Feb 2004 22:47 GMT | 1 |
Is there any good links for datatype interop? I need to pass some structure pointers into an unmanaged method and return char* etc but having some problems in my C++/CLI proxy class. I have a methods with signitures like the following...
|
| XML Commenting | 18 Feb 2004 19:55 GMT | 9 |
Does C++/CLI have XML style commenting like C#?? If i do /// I dont get the completion like C#
|
| Breakpoint checkboxe | 18 Feb 2004 17:01 GMT | 1 |
Hi all, although I'm not new to news group, it's my first post in here. Had to go through the web interface since I couldn't find an direct access to the Microsoft NNTP server and my provider (sympatico.ca) doesn't publish this particular newsgroup :-( and not sure if I have the ...
|
| cannot step into MFC code | 18 Feb 2004 15:34 GMT | 5 |
Some how I cannot step into MFC code, it used to worked till last week. What is the reason? What is the solution ? 10x, J.
|
| CollectionBase derived class not saving design time items | 18 Feb 2004 10:17 GMT | 3 |
On a form ive added my custom component (MyComponent) which has a property (IDs in the expample code) exposing a collection of int16. I see this property in the PropertyGrid and I dont have trouble adding items to the collection at design time (using standard CollectionEditor class) ...
|
| my windows.h has GONE | 18 Feb 2004 10:11 GMT | 4 |
my windows.h file (and probably lots of other headers) has suddenly DISAPPEARED. Reinstalling the SDK didn't fix it. what could have happened to it?
|
| NoStepInto on .NET 7.1 | 18 Feb 2004 09:02 GMT | 12 |
The NoStepInto feature seems not to work under the latest VS.NET 7.1. I even used regmon and there was no access to 7.1\NativeDE registry key. Does it work for you? Regards, Jan
|
| How to put 48 X 48 - 32 bit icons in the interface... | 18 Feb 2004 08:17 GMT | 2 |
Hye, I am Jigar Mehta, I want to ask how can we put our own 48 X 48 - 32 bit icons in the interface like near password field, I want to put Password Icon. The icons are created with Alpha support (that of Windows XP icons)...
|
| Create more columns from datagrid Control 6.0 ??? | 18 Feb 2004 03:39 GMT | 1 |
I work with C++ for my final test , I use DataGrid Control 6.0 (OLEDB) to store the data , but the default column properties is only 2 , i can create more
|
| Import a "C" function that returns a struct... | 18 Feb 2004 01:41 GMT | 1 |
I have a .dll with "C" functions that I need to call. One of the functions returns a simple struct(2 doubles) If I try to use DllImport like this: [ DllImport("somedll.dll]
|
| Maybe dumb question... but really appreciate for help. | 17 Feb 2004 19:14 GMT | 1 |
I'm currently using the following statements inside "Do.. While" loop cout << "Please enter the file name: "; cin.getline(FileName, 19, '\n') On the first execution, everything works ok, but when the 'while' condition is met and it goes back to the ...
|