The Microsoft Foundation Class Library (MFC) is a C++ framework for Windows GUI programming.
1
vote
0answers
27 views
Setting the color of the higlighted item in list when it has no input focus by means of CMFCVisualManager Class
Brief introduction:
In order to set custom look for control elements of my Win application I use CMFCVVisualManagerOffice2007 which has the set of mapping: color->element of control, and implements ...
0
votes
1answer
31 views
ERROR_SEM_IS_SET - What does this error code mean?
I get this error message when I try to disconnect a named pipe which is created in a different thread. Any help please.
0
votes
0answers
19 views
How to get the “my document” directory path of current account? [duplicate]
Usually,we could get the my document's path by read the reg's value by the path:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Personal.
But if I login in a normal ...
0
votes
0answers
44 views
CDatabase.OpenEX Connection String issue
I want to open Access database without displaying any dialog box ( incase of an error )
The code that I use is
CDatabase DB;
CString conString;
CString dbPath = _T("c:\TestDB.mdb");
...
0
votes
0answers
50 views
How can I know that threads of my application are working or hovered?
I need to write application that collect information about processes in windows. I can read number of threads and thread's id, memory that used by process. But i dont know how i can check working or ...
0
votes
1answer
53 views
Getting dock area where an MFC CDockablePane was docked
I am working on a project that totally does not want to use the built-in window/dock state and position saving of MFC. This means that in my main frame, I set EnableLoadDockState(FALSE). As much as I ...
0
votes
1answer
79 views
C++ MFC MDI how to change what class view displays based on active document
I'm working on an MDI application that has an object browser (CClassView) that has to change what it displays based on what "document" is active.
PS: None of my searches have worked.
0
votes
1answer
46 views
MFC Send the object in message
Can i send the message with object?
Something like:
myClass *myObj = new myClass();
pDlg->SendMessage(MyEvent, NULL, (LPARAM)&myObj); // Sends without any errors
...
afx_msg LRESULT ...
0
votes
1answer
78 views
Porting C++ w/ MFC to a Touch Screen
Looking for a GUI framework to use with C++ to "modernize" an existing interface for touchscreen.
I'm a novice programmer with a background in C++/Java that was just assigned a project that involves ...
0
votes
2answers
66 views
MFC C++ LNK 2019 ERROR
I am trying to a "File Save As" programming code inside MFC Application.
in my TestDlg.h header file i have got
public:
BOOL SaveFile (LPCTSTR pszFile);
CString m_strPathName;
And in my ...
0
votes
0answers
42 views
how to enable/disable checkbox on cgridctrl in mfc
I am using MFC Grid control 2.27 (http://www.codeproject.com/Articles/8/MFC-Grid-control-2-27) in my project.I would like to enable/disable checkbox on cgridctrl. I'm not able to find the direct ...
0
votes
1answer
99 views
MFC create modeless popup window in modal dialog
I managed to create and show a modeless window in a property page's message handler:
m_pListCtrl = new CListCtrl();
m_pParent->ScreenToClient(rtList);
m_pListCtrl->CreateEx(WS_EX_TOPMOST, ...
0
votes
0answers
58 views
resize an image to fit cbutton's size
I did it successfully by an uncommon way,
load CImage resource
StretchBit by DC (resize from the original size 200 by 200 to 100 by 100)
save new image into file as a tmp resource
load it and works
...
0
votes
1answer
81 views
How to display opencv frames in MFC?
I'm writing an opencv code, and want to use MFC to show frames on GUI.
The question is I don't know how.
In the OnInitDialog()
If I tried to embed the cvWindow to the MFC Form, and this could work.
...
0
votes
1answer
75 views
Display Text on MFC Based Application
I'm a little new to using MFC and VC++ as such, but I'm doing this as part of a Course and i Have to stick to VC++.
http://www.cprogramming.com/tutorial/game_programming/same_game_part1.html
This is ...
0
votes
3answers
52 views
MFC Timer One-time Execute
I'm programming in c++ using MFC.
I want to make a piece of code execute after the UI has fully loaded, so I put it in a OnTimer callback and called SetTimer in the OnInitDialog. The problem is how ...
0
votes
0answers
9 views
CHtmlEditCtrl - Overriding printer dialog and use with modeless dialogs [duplicate]
Reference:
Printing In MFC Application
Question #1:
I have a Dialog based app using sample code taken above. App runs fine.
I want to avoid having the popup printer selection window appear once the ...
0
votes
0answers
37 views
Create docx with older msword8.h using Office 2010
When using Office Automation with MFC we have an old application written in Visual C++ that uses the headers from msword8.h of Word97, were are changing our systems to use Office 2010 i would like to ...
0
votes
2answers
42 views
How to zoom in and out on CScrollView Surface
in mfc dialog based, CDispView is drived from CScrollView. Need to zoom in to a point when left clicked on and zoom out when right clicked on. The following works partially. any way to make it work ...
0
votes
1answer
46 views
Can I programmatically use the OneNote printer driver?
I have a system service that handles print requests, and given a printer name from the user, attaches a DC to that printer. It starts a document, ends it, and detatches.
m_PrinterDC.CreateDC ...
0
votes
1answer
106 views
SHBrowseForFolder “Make New Folder” behavior in Windows XP
I am using SHBrowseForFolder with the new dialog style which gives you an 'Make New Folder' button on
I am getting some problems with this in Windows XP.
The behavior is like this:
1) First when I ...
0
votes
1answer
47 views
C2664 conversion error
I am a beginner in programming language and need your help.
I have got codes from C language which is needed to be written into C++ MFC.
In C language I have codes like int32 float64 and when I put ...
0
votes
2answers
38 views
wxDC printing a text on screen while typing
I am trying to show a string on the screen while the user still types it. Normally wxDC's DrawText function is used for a string where the contents of the string is already known.
void DrawText(const ...
0
votes
1answer
61 views
MFC query reading order (RTL) from loaded dll resource?
We have an old MFC app that we localized to multiple languages. We have a language menu that allows the user to select the language (restart of app is required). When an RTL language such as Arabic ...
0
votes
1answer
63 views
MFC Device Context SelectObject Drawing to Bitmap
I'm working on a project translating old Windows 95 MFC code into C++11 using Cairo. Since I'm not familiar with MFC, I'm getting confused about the different coordinate spaces for drawing in the ...
0
votes
2answers
38 views
How to close tab in CMFCTabCtrl
I have used CMFCTabCtrl in my MFC application and I have enabled the active tab close button.
m_TabControl.EnableActiveTabCloseButton();
But when I click close button, the tab is not closed. How ...
0
votes
1answer
39 views
CMFCTabCtrl not visible in CDialog
I've added a CMFCTabCtrl in a CDialog. But my problem is that it is not visible. This is the code I've used to create the CMFCTabCtrl .
m_TabControl.Create (CMFCTabCtrl::STYLE_3D, rectTab, this, 1, ...
0
votes
1answer
63 views
MFC CTabCtrl how to add a close button for a tab
I'm using a CTabCtrl in my MFC Dialog Based application. The problem I'm having is that I'm adding tabs in runtime and I can't add a close button for the tabs to close. How can I achieve this? Can't I ...
0
votes
2answers
69 views
CFileDialog's current directory inconsistent in .exe and .dll
Normally, when you use CFileDialog to open a file multiple times, current directory is maintained. I.e., each time the dialog opens at the directory where previous dialog ended (if it was not ...
0
votes
2answers
45 views
VS2010 MFC LNK 2019 unresolved external symbol
Hi guys I hope that this problem could be solved asap.
I get this problem when I tried to convert ANSI C code to MFC.
library file is linked and header file is included. I don't know how or what this ...
4
votes
1answer
112 views
How does Windows know what program to open a file with?
I just noticed that when I view the .sln files on my computer, that some have a v7.1 icon, some have a v9 icon, and some have a v10 icon (depending on what version of Visual Studio created them). It ...
0
votes
0answers
96 views
OLE initialization failed - MFC Visual Studio 2010 Windows 7
I have a Visual Studio 2010 solution for an MFC application that used to run just fine on my Windows 7 machine. Today when I tried to run it, although it still compiles successfully, it gives me the ...
0
votes
1answer
70 views
C++ mfc create a mail sending button?
is it possible to create a button in C++ MFS dialog based document so that after pressing that it sends some data to your email?
0
votes
1answer
22 views
Prevent mainframe in CWinAppEx derived application from opening on LoadFrame()
I a MFC SDI application that is derived from CWinAppEx. In its InitInstance() method, the mainframe object is created manually like this:
auto mainframe = new CMainFrame();
...
0
votes
0answers
32 views
CustomDraw remains in PrePaint drawstage
I am facing some troubles when processing the NM_CUSTOMDRAW message on 64 bit machines. We have an CListCtrl derived class with a CHeaderCtrl derived header (linked via PreSubclassWindow).
In the ...
0
votes
0answers
26 views
MFC Em-dash and En-dash in CJK resource files
I have a MFC application that has translation to several languages, and I want to use the characters:
em-dash (—; Windows: Alt+0151; Unicode:\u2014)
en-dash (–; Windows: Alt+0150; Unicode:\u2013)
...
1
vote
2answers
93 views
Advantage of named pipes over anonymous pipes c++
What are the advantages of using a named pipe over an anonymous pipe. How a named pipe can be used to communicate to a remote machine.
0
votes
2answers
75 views
[MFC]how to make disable an Item in combobox?
I'm using Visual Studio 2012 with mfc standard library.
I want to make one Item is not able to be selected but Item can see in the list.
How can i do that? I'm a novice in MFC. plz help me
Though ...
0
votes
0answers
14 views
MFC Find Menu Not Working
This is weird! In the Release build of my MFC application (but not debug) the find menu doesn't open the find dialog if I go through the menu itself. But the Ctrl+F accelerator does work. It's like ...
0
votes
0answers
25 views
Adding items to contextmenu of cdockablepane MFC
I plan to add copy and paste to the property window (CDockablePane) of a default MFC project in Visual Studio. I would like to add copy and paste to the built in context menu of CDockablePane. However ...
0
votes
0answers
98 views
build successful but no exe file - Install Magick on Visual studio 2010 - MFC
I want to use ImageMagick in a MFC program. I have downloaded the ImageMagick and followed the instruction to install it on my system. However I encountered a problem at the first step. I opened and ...
0
votes
1answer
20 views
Creating winsock client through MFC doc/view architecture
I have a game TicTacToe which was created in MFC with document/view architecture and I have server (standart console application) witn winsockets. Where I should initialize socket in client to connect ...
0
votes
1answer
49 views
VS 2008 MFC Feature Pack - How do I
I have an application I'm writing using the MFC Feature pack. It uses Document/View. Since these classes are derived from "normal" MFC classes, these questions may not be Feature Pack specific.
When ...
0
votes
0answers
79 views
c++ heap corruption detected in local CString assignment
I am writing a multithread program:
I created a thread to take image from a camera and update the picture element in user interface. I then created a CString to set image file name and then save it to ...
1
vote
1answer
94 views
CDialog - EndDialog from a MODELESS dialog?
The MS documentation (and others) "clearly" states:
... Because the normal OnOk and OnCancel member functions of a CDialog
object would call EndDialog, make sure your modeless dialog box does
...
0
votes
1answer
82 views
MFC Dialog Combo Box in a List Control
I'm trying to create a dialog window with a List Control (report view) that displays a column of text. I'm trying to add another column that displays a combo box that will hold a list of possible ...
1
vote
4answers
138 views
C++ “cannot add two pointers”, adding a hardcoded string to a CString
I get this error quite often when I try to do something like this
CString filePath = theApp->GetSystemPath() + "test.bmp";
The compiler tells me
error C2110: '+' : cannot add two pointers
But ...
1
vote
0answers
68 views
application that is created with MFC Visual Studio 2010 on Windows XP 32 bits, crashes?
I created application with MFC Visual Studio 2010 on Windows XP 32 bits. Also, I created an installer, the installer installs the application on different Windows OS (window 7 with 64 bits and ...
1
vote
0answers
40 views
MFC Ribbon Combo Box - Suggest on keyboard input
I have a CMFCRibbonCombobox in my application. I would like it to suggest the most appropriate item in the combo box on keyboard entry :
Eg: if I have the items
Apple
Banana
Band
...
0
votes
0answers
21 views
MFC onPiant button
how do you assign a bitmap in onPiant a button? can you use dcMemory to call it somewhere else? CPaintDC dc(this);
CBitmap bmp, *poldbmp;
CDC Refinery;
//load the bitmap resouce
...


