| Thread | Last Post | Replies |
|
| Images from files shrink? | 30 Sep 2007 15:04 GMT | 1 |
I created a BMP file called 'map.bmp' that is 50x50 pixels in size. I then execute the following code: Image_List = gcnew ImageList() ; Image_List->Images->Add( Image::FromFile( "map.bmp" ) ) ;
|
| CALLBACK procedure (invalid calling convention '__stdcall ' for function compiled with /clr:pure or /clr:safe) | 30 Sep 2007 09:06 GMT | 11 |
I try to figure out how to use Callback procedure in a C++ form project The following code *work* perfectly on a console project #include "Windows.h"
|
| Generic IDictionary confusion | 29 Sep 2007 17:23 GMT | 7 |
trying to design an effiecient interface, where I can pass an IDictionary<int,string^> to a method. int is some id and string^ is some value that is initialized to null by a caller.
|
| About error C2248 | 29 Sep 2007 16:44 GMT | 1 |
I defined a class(CMyView1) based on CView from class wizard in VC2005, and there're following code in .h file: ... ...
|
| How to remove a class from project | 29 Sep 2007 10:18 GMT | 1 |
Hello! I'm using VC2005, I wonder to know how to remove a class from my current project.
|
| Maximum number of Hyperlinks? | 28 Sep 2007 21:11 GMT | 3 |
I am using PowerPoint 2000 with a very large presentation with many Hyperlinks, mostly to other slides but many also to Internet links. Recently, some of them are not working. I correct them on the live presentation and get them to work then, when saved and re-loaded the same
|
| How do I create a Generic.List? | 28 Sep 2007 21:06 GMT | 3 |
I'm realizing how little I know about C++ today as I try to convert some functionality from VB.Net to C++. I have a procedure that I need to pass a List of objects to, and cannot see how to do this using C++. It's easy in VB.Net, so I'm
|
| Button missing BorderColor and BorderStyle? | 28 Sep 2007 21:05 GMT | 4 |
I'm writing a program using MS VC++ 2005 Express [managed (CLI)], and I use the Button class. For the most part, this is working fine. I can set BackColor, ForeColor, Width, Height, etc. But if I try to us either 'BorderColor' or 'BorderStyle'
|
| Photoshop, JPG, and transparent color | 28 Sep 2007 17:23 GMT | 3 |
I'm trying to create 'sprites', which are graphic objects with shapes other than just rectangles. As such, I need to be able to establish a transparent color. So, I create images using Photoshop, make the area I want transparent black.
|
| Unlock the drive | 27 Sep 2007 18:26 GMT | 1 |
I want to unlock the drive programmatically ? is there an api function related to it. For instance, when i run chkdsk with /F parameter, i get "drive in use" error . I want to unlock drive programmatically
|
| Set selected item in combo box | 27 Sep 2007 16:57 GMT | 2 |
How do I programmatically select an time in a combo box? I can set the text but it does not automatically set the selected property. There is a SetCurSel() method but I don't know what the index of the item I want to select(or how to find it).
|
| Set text of an edit control (newbie) | 27 Sep 2007 16:46 GMT | 4 |
How do I programmatically set the text of an edit control? Thanks.
|
| Getting Beta Software on a DVD | 27 Sep 2007 15:41 GMT | 2 |
I wanted to get the Visual Studio 2008 Pro (Beta 2) software, at lease the C++ subsystem. The Microsoft web site has it as a free download. The problem I'm having is that it is to large to download by dial-up. Its over 3 GBs. I was wondering, due Microsoft have supporters that ...
|
| MSVCR80.DLL version conflict | 27 Sep 2007 08:01 GMT | 4 |
I have a C++ ActiveX control that is used by JavaScript code in Internet Explorer. Recently, a customer installed Acrobat Reader 8.1 and reported that the ActiveX control wasn't working. In the event viewer, there's a error from SideBySide: "Generate Activation Context
|
| C++/CLI DateTime method argument | 26 Sep 2007 20:00 GMT | 3 |
I'm writing a .NET wrapper class for a native C++ library and decided to do it in C++/CLI. One of the problems I ran in to is the following. In C++ I have the following public ref class MyClass
|