The Microsoft Foundation Class Library (MFC) is a C++ framework for Windows GUI programming.
0
votes
3answers
22 views
How to replace only first occurrence of character in CString?
I have a CString st= $/Abc/cda/($/dba/abc)/. I want to replace only first occurrence of $ with c:\.
I have tried to replace as
st.Replace("$","c:\");
But it replaced all occurrence of $.
Could ...
0
votes
0answers
19 views
How to make hidden CDialog visible at runtime?
I have this CDialog in CWnd, in which I have propertysheets.During runtime at a particular condition I have MessageBox poping up.This makes my CDialog invisble, removing it's WS_VISIBLE flag.
I tried ...
0
votes
2answers
23 views
C++ MFC CTabCtrl items Debug Assertion Failure winocc.cpp SetWindowPos after insertion succeeded
The method called in OnInitDialog:
void ChookDlg::add_tab_items()
{
tab_item_ptrs.push_back( tab_item_ptr( new CTabSLSensor ) );
tab_item_ptrs.push_back( tab_item_ptr(new ...
0
votes
0answers
24 views
Subdialog's hWnd resets to NULL after the dialog is initialized
I have stuck with the following problem. I have a main dialog that has some controls. It also displays several subdialogs (as subcontrols) that are set as a pointer members with their IDs. I create ...
0
votes
1answer
37 views
Convert double[,] to Variant*
In my application Im trying to call a function of ATL COM class from my WPF application. ATL COM class's fucntion's parameters are like this.
[id(5)] HRESULT GetFormationZPoints([in] BSTR sLyrName, ...
0
votes
0answers
14 views
MFC Dialog flickering in windows startup screen
I've written an mfc dialog to show the progress of an update (bat in the background -> logfile)
The CListBox in the dialog is 'animated' (adding a dot every seconds to the last line) but it flickers ...
4
votes
2answers
35 views
What is the relationship of CloseWindow and WM_CLOSE
I'm a bit confused currently: Are WM_CLOSE and ::CloseWindow in any way "related" or are for completely different things?
The docs for Closing Windows don't mention the API function CloseWindow at ...
0
votes
0answers
25 views
How do I programmatically disable the “Use Printer Offline” menu option in the print spooler?
In the print spooler dialog for any installed printer, there is a menu option to use the printer offline. Enabling this option means that all documents will be queued until the said printer comes ...
0
votes
1answer
34 views
How can I change the language in AfxMessageBox?
I have an MFC app that uses AfxMessageBox to display message boxes. The app itself lets an end-user to change the user interface language. On the inside it does so by loading resources using LCIDs (or ...
0
votes
2answers
23 views
Allow user to draw a drag rectangle in CStatic C++ MFC App
I have a MFC application where I have a Picture Control in the dialog. Eventually, I want to allow a user to draw a resizeable rectangle via mouse drag in the picture control over an image that I ...
0
votes
0answers
43 views
MFC: Delay when using GetContextMenuManager()->ShowPopup with Office2007 visuals
I'm having a problem when trying to show a context menu (resource) on a right-click at the systray.
I've detected that this line:
CMenu menu;
menu.LoadMenu(IDR_MENU1);
HMENU hMenu2 = ...
-1
votes
5answers
116 views
There's no memory leak in my code(rather sure), then how to find out those codes who eat up my memory? [closed]
Now, I have a VC++ project which will occupy 1.5 G memory(the peak value), and then it will give back memory in 5 minutes. But, I want to optimize the memory usage, because 1.5 G is too huge. Besides, ...
0
votes
1answer
31 views
Hide window in MFC C++ [duplicate]
I have an MFC C++ app, I need my app to run in background, to do run some functions.
So I want to disable the dialog window .In other words I am trying to hide/make it invisible to the user.
How ...
0
votes
2answers
80 views
Convert char to double
I am writing a code for data acquisition for my hardware.
However, I need to find the average of the data that I have collected.
Here's the problem, the acquired data is in unsigned char format and ...
0
votes
3answers
50 views
How to define a pattern in macro in C++?
I have a file having too many section like
[Section]
[Section.Ia32]
[Section.x64].... so more
so, I need to define single macro to when parsing the file we can get the section using one ...
0
votes
0answers
7 views
CDhtmlDialog: How to capture event from iframe?
I have a CHtmlDialog with an iframe in it. I can capture onClick event from the button placed in the top level HTML with DHTML_EVENT_ONCLICK macro. But the same method doesn't work with the event ...
1
vote
2answers
83 views
Is my logging-module thread safe?
Guys, I am a beginner in threading and logging.
Btw, I am not a native English speaker, so pardon me if there is any mistake in my English.
I have created a multiple-thread software, where each ...
0
votes
0answers
22 views
Caption bar not being repainted in MFC
Alright, I'm using VS2012 with MFC in Windows 8 and I'm having a problem.
Let's say I have a very simple dialog in my application. When I click on a different window (for example on the Taskbar), the ...
0
votes
1answer
16 views
MFC edit control update
I try to update an edit control's text, using it's added variable, which is a CString but i'm failing it.
m_sNrAuto = "some text";
UpdateData(TRUE);
I also tried using UpdateWindow(), but the ...
1
vote
3answers
34 views
VS2008: “Resource file opened in another editor”
But it's lie!
Good day to all!
I have the following problem: when I trying open resource file PriceCalculationUI.rc Visual Studio 2008 tell me that file opened in another editor (in vs2008 I have ...
-1
votes
0answers
32 views
c++ mfc: After change the background color through system,how to get the background color
I change the window color through right-click on the desktop,select property->
appearance->advance to RGB(109,120,205). But when i use
GetSysColor(COLOR_WINDOW)
or
CDC::GetBkColor()
I still get ...
-2
votes
1answer
40 views
How to store current time in registry?
Is there a way I can store time in registry? I am using MFC and working with CTime objects (which allows me to use CTimeSpan to calculate time difference) but any c++ solution would be great.
0
votes
0answers
33 views
Convert ICON to HBITMAP to be displayed in popup menu?
I'm trying to add bitmaps to a popup menu.
The problem I have is that I create my bitmaps from ICONs dynamically, and I have problems for 24bit color icons vs 24+alpha (32bit) color icons.
It seems ...
0
votes
1answer
31 views
how to map an mfc toolbar button event with a class method?
I'm using an MFC application with a toolbar.
I need to use a button of this toolbar in some class.
But, i don't find how to map the toolbar button events to methods of my class.
I saw in the ...
0
votes
2answers
90 views
+50
SetTimer from non-static function
I write code that detects key press when window not in focus:
// MainHamsterDlg.cpp : implementation file
#include "stdafx.h"
#include "MainHamsterDlg.h"
// MainHamsterDlg dialog
...
-1
votes
0answers
10 views
hosting winforms application on MFC
It is possible to host a WinForms application (not usercontrol) on MFC?
I found a solution that moves the parent of the main window but does not always work
-1
votes
1answer
12 views
MFC | EditControl | on Run time [closed]
I am new to MFC. I need to know how to change the properties of editcontrol box in run time.
Like If I want to change the EditControl Box to readonly mode on run time.
Thanks,
Ani
0
votes
1answer
34 views
How do I correctly convert an ICON to a BITMAP using MFC?
I'm loading an ICON of another application via
HICON ico = ExtractIcon(NULL, L"path\\to\\OtherApp.exe", 0);
How can I create a CBitmap object from this icon?
Specifically (not really answered in ...
0
votes
1answer
20 views
Adding controls at runtime in from derived class in MFC
I have two classes.
class DialogBase is inherited from CDialog
class DialogDerived is inherited from DialogBase.
BOOL DialodDervied::OnInitDialog()
{
CDialogBase::OnInitDialog();
//Add ...
0
votes
0answers
17 views
TCP communication between console and MFC
I want to implement TCP communication between win32 console application and MFC application, I made console application as client and MFC application as server, but the server cannot accpet the ...
0
votes
1answer
19 views
Animating a CImage to fade in on creation
I currently have a CView which consists of a single centralized CImage which displays upon immediate loading of my application.
I want to prettify it a little by making the CImage fade in on startup ...
0
votes
1answer
29 views
Save & Load scroll bar state in a dialog based MFC application using serialization.
I am working on a dialog based MFC application that consists of check boxes, scroll bars, buttons, edit control etc. I am trying to save the application's current state into a .txt file and then load ...
1
vote
0answers
15 views
Determine if glyph exists in a font on WinCE
The generic Windows API provides the GetGlyphIndices() function which determines if a particular glyph in a given font is renderable. However, this function is not available within the WinCE 6.0 API ...
0
votes
0answers
34 views
Getting errors on project build when a class is added to the mfc dialog
I have already an existing project in mfc working in visual studio 2010. The project is a combination of multiple projects of which one develops output of executable(.exe) type while the others ...
0
votes
1answer
39 views
can't change mfc controls order
I have a dialog box with a list box,slider and a button.
I tried to change the background color but I couldn't managed to change that, so i thought that if I add a "picture control" as a bitmap and ...
0
votes
1answer
20 views
CToolTipCtrl with TTF_TRACK Flag won't disappear, SetDelayTime doesn't work?
I found if set TTF_TRACK flag to CTooltipCtrl, SetDelayTime doesn't work anymore, so the tooltip won't disappear automatically. I want to show the tooltip just below specified control, and expect it ...
-1
votes
1answer
22 views
How to write data into same file in MFC?
I have created a worker thread.
One thread prints the natural numbers by creating one .txt file and my intention is to open the same file and print even numbers.
I am able to print in different files ...
2
votes
2answers
69 views
Conversion from Multi-Byte encoding to Unicode
I am working on a project, this contains a mix of C++, MFC and C# projects which are in need of conversion from MultiByte encoding to Unicode.
The project is too huge to do it manually.
Is there any ...
-1
votes
1answer
38 views
error LNK2019: unresolved external symbol , tried the answers of the previous , but failed
I am writing a opengl app using mfc, but a link problem happened with glm.h
error LNK2019: unresoled..... "void __cdecl glmDelete(struct GLMmodel *)" (?glmDelete@@YAXPAUGLMmodel@@@Z)
which is ...
-1
votes
1answer
35 views
change the background color of a dialog box mfc
I'm trying to change the background color of a dialog box (win 7, vs2010,c++).
I tried to catch WM_CTLCOLOR ,WM_ERASEBKGND and change the color.
I manged to change in this way the backgroung color, ...
0
votes
1answer
41 views
Crashing while executing GetParent(). Closing of a modeless dialog box
I am creating a modeless dialog box. The dialog box is called from the menu item of main frame window.
MainFrm.h
CModeless* modeless;
bool modelessDlgOpen;
MainFrm.cpp
void ...
0
votes
0answers
22 views
MFC CRichEditView/CRichEditCtrl change backgound color of every other line
I'm wondering if it's possible to set the background color of "independent" lines in a CRichEditView.
I want to be able to distinguish between lines in a log window where each line is a received ...
0
votes
1answer
36 views
How to specify the icon to be displayed by the shell in my application
I have a standard MFC application with its own icon, and when viewing the application file through explorer, the icon displays fine. I have to add a library however that also includes icons for its ...
0
votes
1answer
34 views
Progress bar in multiple dialogs with thread
My application has to keep track of time and alert user at different stages to allow or not allow certain actions. Because the user will be waiting, I want to show a progress to show wait time. For ...
0
votes
1answer
35 views
MFC Global keyboard hook
How make application detect Kay press when application not in focus? [Solved]
I need start timer on Insert key press and stop on press again when the application window not focused.
can anyone show me ...
-1
votes
0answers
57 views
Select object with mouse and move it [closed]
I've got a C++ program which adds a text into a workfield.
I need to select that text and then move it around by holding the mouse button and then drag it around the workfield.
So what the program ...
0
votes
1answer
28 views
CScrollBar/MFC: flickering while move the thumb slider
I implemented a MFC application which displays a chart. There are data points (e.g. 2000) where a subset of them will be displayed in the chart. This subset must be changed with a scroll bar. So I ...
-1
votes
0answers
27 views
Application not works in Win xp but works in Win 7 [closed]
Recently I migrated my project from VS2005 to VS2010 .Net framework 4.0.My application is on MFC.
Post migration one of my application fails to launch on WIN xp machine but works fine in WIN 7 ...
0
votes
1answer
34 views
How to prevent the Overwrite Prompt while saving in custome IFileDialoge - VC++
I don't want to display any overwrite prompt while user enter the file name which is already exist in my custom IFileDialog.
I have already gone throw IFileDialog::SetOptions method but it dint ...
0
votes
2answers
44 views
How to divert a thread to post messages to a new window
I have a thread that I pass an HWND of a window where it post messages and updates a progress bar. The user can however go to another window (modal) where I would also like to show the progress of ...





