Advertisement

900 organizations, including eBay, Ericsson and Lockheed Martin, now work smarter with Corporate Accounts. Save up to 42%!

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Top Windows MFC Solutions: 1 - 25 of 157
 
This Security update for SQL Server 2005 Service Pack 2 will not update. In the system event log it is error 0x80070643 and event ID 20. There is also a Security update for >NET Framework 2.0 ...
I am trying to develop an application using Visual Studio 2008. I am writing it in C++, and I chose a Windows Forms solution to develop it. Windows Forms apps use managed code, so I am unable ...
If I have a local variable of type CString and then assign to it using the concatenation operator, things work fine: CString StringFunction1() {   CString one;   one = "ONE";   return o...
Hi Experts, How can I fix this ?  I'm using Visual Studio 2008 C++ with MFC..... Thank you! Mike
Hi, I would lik to change my tab control tilte font color from default to any other color. If you give me sample program it will be helpful.
I've created an Owner-Draw CComboBox and derived a class from it. This works and my owner-draw processing works correctly (basically just displaying an abbreviated version of the text of each ...
I'm interested in learning if there is an MFC API for sending SMTP email messages from inside a C/C++ program. I don't want to use external (3rd party) libraries, as it would be inefficient...
How do I add a checkbox next to a menu item in MFC? I tried to use the Checked field but it doesn't work quite like expected.
Hi Experts, First of all, what exactly does a clean up do?  (does it remove all the automatically added files in your working copy?) And the real question - why is the clean up failing, ...
I need to put an icon on a button I have in a dialog, however the icon happens to be part of a toolbar already and I can't seem to find a way to load it from the toolbar. Is there a way to do ...
Hello I have a VS6 MFC project that i wrote some time ago. I would like to upgrade it to VS2008 MFC to take advantage of the new visual effects. When I open my old project in VS2008 I...
I am trying to add support for custom features to a piece of software. The code for these features is using a sdk from a third party driver (wacom driver for tablet devices). The software I am...
I know that Popup menus in MFC don't send ON_COMMAND messages right? I need to check the menu item whenever the user clicks on it still. How should I handle this?
I often declare/define an Empty() member function for my classes, to make sure it's in a known state with all held resources released. I call this Empty() member in my constructors and des...
HI -- I'm guessing that this is a easy question as I'm obviously doing something wrong. I've  have a dialog box which has a edit control in it which I want to display text into.   I've crea...
How do I add files to the "My Recent Documents" list from within an MFC Windows C++ program ? Whenever I Open/Save a file using the CFileDialog, it adds it OK. Whenever I open my applicatio...
I am finding myself in a situation where I have a main dialog with children dialogs , such as tabs pages etc, where there is some sort of variable in the main dialog in which the children dial...
I use CListCtrl with report style to list some text with grids. I would like to change the background color for some cells. For example, if the user push button A, the background for the cel...
Hi All, Greetings... I m new to visual c++. I have two different applications. once is MFC application and the other is win32 console application. i want to get the data from MFC application...
Hi everybody, when I create a new MDI application using extended features (especially 'menu bar') from MFC Feature Pack for VS 2008 I encounter following problem: When the view has set the ...
Hi, I am really having trouble understanding why the List changed functions of listbox and listctrl behave differently. In my application i have 2 controls, a listbox and a list control. fo...
I need some help with my ClistCtrl. I have created a new Class from ClistCtrl to change the cursor when I am over a text in column/row. Everything works just fine. The cursor changes over a...
Hi Experts, I'm using a library that is STL-only.  My stupid question is - why is DWORD (or BOOL) not recognized? Thank you, Mike
I'm trying to create a simple Windows app that will be pretty much running in kiosk mode - i.e. I don't want the user to be able to do anything on the PC except use my program until it's been ...
Hi everyone, In my dialog based MFC application I've got one button and three Edit Control boxes.These three Edit Control boxes should represent the three elements of my array.So each box for...