| Thread | Last Post | Replies |
|
| MIDL2139 Error | 09 Feb 2005 17:47 GMT | 1 |
Hi, I get the following error when I try to compile my c++ code which has a segment like: __interface IObject1 : IDispatch {
|
| makefile for visualC++6.0 | 09 Feb 2005 17:22 GMT | 1 |
i just to install vc++6.0 and i'd like to compile a code. Could someone explain me how i could use a makefile with VC++ for the compilation ? i found some things on google but not really clear for me...
|
| Menu visible in design but not when running ... | 09 Feb 2005 14:41 GMT | 1 |
I have a form with a menu that is visible in design mode but when I'm running the application, it doesn't appear. Moreover, if I close Visual Studio, the menu is deselected from the menu properties of the form . Any, ideas?
|
| Adding new form and loading it | 09 Feb 2005 14:34 GMT | 1 |
I need advice or code sample on how to load a new form from my main form in a Managed C++ project. Hugo
|
| annoying ghost window in .NET IDE... | 09 Feb 2005 01:18 GMT | 4 |
has anyone else noticed the annoying ghost window that pops up in the bottom right hand corner of the desktop when using the vs .NET 2003 IDE? anyone know of a patch or a fix?
|
| Getting image as unsigned char array | 08 Feb 2005 13:21 GMT | 2 |
I'm developing a form with .Net, in C++. I have to display a choosen image on a pic-box and then I have to do some elaborations on it. I need to get the Image (which I open from a dialog) as an unsigned char array, some sort of:
|
| function pointer to delegate | 08 Feb 2005 11:44 GMT | 3 |
I'm making a windows forms app in vs.net 2k3. I added a new "generic c++" (unmanaged class) class to the project which contains some code to access the win32api. Now at a certain point in my unmanaged class I want to call the managed method of the Form1. So I thought I could somehow ...
|
| Error: Cannot open temp file | 08 Feb 2005 08:57 GMT | 1 |
I am getting following linker error : LINK : fatal error LNK1104: cannot open file "TEMPFILE" I havent yet written any code by myself and just tried to run the auto generated code. It is giving this errorwith all the files that I am creating
|
| lame problem :/ | 07 Feb 2005 22:58 GMT | 2 |
Im too new to work out how to do this. i have try { Bitmap *logopic = new Bitmap(S"logopic.bmp");
|
| Force Minimize to taskbar | 07 Feb 2005 20:29 GMT | 6 |
My VC++ application does not have a titlebar (and therefore no System menu, no minimize, no maximize and no close button). We have a custom button for minimize and close. When the app is in normal/maximized view, clickinng on the taskbar entry
|
| File sizes and TCP/IP | 07 Feb 2005 20:15 GMT | 2 |
Hey all, I've been beating my head against the wall for a couple of days now on a problem. I want to use ReadBlock to read in some data from a text file. I cannot for the life of me figure out what sort of char array
|
| How to select specfic txt file... if more then one is opened! | 07 Feb 2005 16:52 GMT | 2 |
Hi! If more than one notepad is opened in desktop.. then its work for "top" notepad only Want to ... write a data in specfic .txt file. for example abc.txt, but if
|
| Inconsistent dll linkage?? | 07 Feb 2005 15:24 GMT | 2 |
I've created an unmanaged C++ DLL and when I compile it I get numerous errors of the form xyz.cpp(nnn): warning C4273: '<somefunction>' : inconsistent dll linkage I have other DLLs that have been created using the same basic pattern. I
|
| OK in Visual C++6.0 but not in Visual C++ .NET 2003? | 07 Feb 2005 14:59 GMT | 9 |
I had a template library, the library was successfully compiled on versrion 6.0 but when I tried to upgrade it in .NET version, compilation had failed with the message like: error C2248 'MyPLib::Basic2DArray<T>::m' : cannot access protected member
|
| How to remove small rectangle in text file(notpad) & "\n" not work | 07 Feb 2005 07:44 GMT | 1 |
writing a data to open (.txt) notepad file in desktop from vc++... then small rectangle are coming in the file [and] "\n" is also not working int iLength = (int)::SendMessage(hEdit, WM_GETTEXTLENGTH, 0, 0);
::SendMessage(hEdit, WM_GETTEXT, iLength+1, (LPARAM)textData); |