Tagged Questions

8
votes
7answers
1k views

MFC resources / links

I am about to reenter the MFC world after years away for a new job. What resources to people recommend for refreshing the memory? I have been doing mainly C# recently. Also any MFC centric websites ...
7
votes
1answer
172 views

Memory leak while using emoticons on CRichEditCtrl

I'm developing a text editor class (for a chat application) based on CRichEditCtrl (MFC) with emoticon support. After I load the emoticon's bitmap, I use the function OleCreateStaticFromData to ...
5
votes
1answer
134 views

How to set Administrative right Icon on MFC Dialog Button?

I am creating an application in MFC using Visual Studio 2008 in windows 7. My application starts and stops a service which requires administrative access. When application starts it don't have ...
4
votes
2answers
148 views

How to insert colored text int a ListView?

I have a listview with 3 coloumns. The first two columns has values and the third one is empty yet. I want to know, how can i insert a colored text later into the third column? I don't want to color ...
3
votes
2answers
298 views

What does _stscanf_s do?

I saw this function in some code and I can't find documentation on google about it. Can someone explain what it does and are there any alternatives to this ? Thanks.
3
votes
4answers
2k views

Screen Pixel Resolution in mm

Is it possible to get the screen pixel resolution in mm using Win32 APIs ? I have an application which is showing 0.3472222222222222 as the value for this on my 1280x1024 monitor with 96 dpi . But I ...
2
votes
1answer
103 views

CRichEditCtrl loads Unicode text incorrectly

I use CRichEditCtrl in my dialog, but when I pasted in it copied Vietnamese text, the text doesn't display correct text; odd characters are displayed where the 2 byte encoded characters are shown. ...
2
votes
1answer
37 views

RichEditCtrl and its text content

I copy all formatted rich edit text into clipboard as m_edit.setsel(0,-1); m_edit.copy(); But when I call GetClipboardData, I obtain text without format. Someone could explain to me something ...
2
votes
1answer
812 views

How to execute child console programs without showing the console window from the Win32 GUI program?

(I've searched SO answers and found no clear solution to this problem.) I'm working on a MFC GUI program. This program runs various child programs including console program and shell command ...
2
votes
4answers
281 views

Can I hook return value of “Ctrl+Alt+Del”?

On windows, windows security screen(including log off, sutdown, taskmgr and so on) is appeared when we push ctrl+alt+del. But I want to make show up my application(MFC) when we hit ctrl+alt+del. So ...
2
votes
2answers
699 views

How to use CMenu in an MFC application?

I made an MFC application, and now i want to turn off the window's close button during i do my copy operations. I did it successfull with this code: BOOL bEnable = FALSE; // To disable UINT menuf ...
1
vote
3answers
259 views

How to Use Timer in MFC Dialog based Application?

I am developing MFC Dialog based application in Visual Studio 2008. I want to use timer that start on start of the application and continue to run and calls a function that performs my task? How can I ...
1
vote
1answer
335 views

How can I assign RGB color codes to a WORD?

I am assigning the color values to the display frame buffer, and that buffer pointer return type is BYTE. But i am not able to assign the RGB color value into it. This i am doing to set the pixel ...
1
vote
2answers
526 views

C++ LPTSTR to int (but memory overwrite problem using atoi)

I have the following code, m_edit is a MFC CEdit (I know I would never use MFC but project demanded it). It's a simple loop, that gets the text from a text edit, converts it to integer after getting ...
1
vote
1answer
585 views

How to use correctly CopyFileEx and CopyProgressRoutine functions?

I made an application which copies files, usually large files. I want to show the progress of the copying, but i can't it bring to work. Can someone tell me what i am doing wrong? Now it works very ...
1
vote
2answers
174 views

Why does my application freeze when I copy a large file?

I have an MFC application. It is basically just copying files from one drive to another. When I'm copying large files (more than 1 Gb) and I click on my window, my application freezes, but the copying ...
1
vote
1answer
80 views

How to retrieve data from a ListControl(ListView)?

I have a listcontrol with three columns. I want to read what text is in the third column. I need this, because i want color this column according to that what text is in it. Can anyone tell me, how to ...
1
vote
2answers
79 views

After casting pParam, why do I get random characters back?

This is the first time that i want to use threads, so i don't understand them fully for now. I have two structures: struct ddata //difference content { char *filename; char *size; }; ...
1
vote
1answer
206 views

Manual alternative to message map?

I am trying to create a GUI to display information read from a file. So I will need some number of pushbuttons, text fields, and radio buttons - but I won't know how many I need until run-time. I am ...
1
vote
3answers
598 views

Destruction of singleton in DLL

I’m trying to create a simple Win32 DLL. As interface between DLL and EXE I use C functions, but inside of DLL i use C++ singleton object. Following is an example of my DLL implementation: // ...
1
vote
1answer
705 views

How to find the menu item (if any) which opens a given HMENU when activated?

I'd like to implement a function with the prototype /* Locates the menu item of the application which caused the given menu 'mnu' to * show up. * @return true if the given menu 'mnu' was opened by ...
0
votes
2answers
70 views

Windows CE 6 remote debugging. No call stack when pause program

I am using Visual Studio 2008 for a remote debugging session with WindowsCE 6.0. When I click 'Pause' I cannot see the program call stack. Instead of a call stack with any functions of my program I ...
0
votes
0answers
65 views

I need a JSON parser library wich supports both byte character and wide character so that I can switch between char and wchar_t

I need a JSON parser library that supports both byte character and wide character so that I can switch between char and wchar_t. I've googled it, and I just found jsoncpp. jsoncpp is good, but it only ...
0
votes
1answer
89 views

Redrawwindow of a cstatic control within a running thread

I have a CStatic control that I would like to set its text at runtime (computing a Fibonacci number) Class TXT:public CStatic { private: CString m_str; public: SetText(const CString& ...
0
votes
0answers
75 views

Use MFC library without MFC

I'm using pure C with Windows SDK in my projects, but now I need to deal with DVR's camera, which the driver was made in MFC 6.0. I can switch to C++ at any time (I'm already using it in some ...
0
votes
3answers
159 views

How to put a close button in main window menu?

I'm looking to add a 'close' button to my main window's menu. An example can be found in the picture here: http://ifyoucodeittheywill.com/img/crimson-editor.png (So, there's the normal close button ...
0
votes
1answer
233 views

CPP + Regular Expression to Validate URL

I want to build a regular expression in c++{MFC} which validates the URL. The regular expression must satisfy following conditions. Valid URL:- ...
0
votes
1answer
444 views

'CObject::CObject' : cannot access private member declared in class 'CObject'd:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxcoll.h

This error happens while trying to send the instance of CTypedPointerList in the function parameter from one class to another class. How to solve this issue? Here is my code ObjectList.h #pragma ...
0
votes
3answers
101 views

How to optimize my query in c++?

In My Application , I saved thousands of records in list of objects(i.e.,object array).I like to retrieve the data on the basis of particular scenario like date , name ., etc in record. My idea is ...
0
votes
6answers
325 views

How to limit the log size in c++?

In my application i am creating log file of size 5kb .If i exceeds 5 kb of file size , I have to overwrite the old contents with the help of new contents. If you have any ideas just share with me. I ...
0
votes
1answer
133 views

How to open the file in class in mfc?

While trying to open the file in Class in function oninitdialog(),It throws exception.If I open the file globally , it works. How to overcome this? why the fopen command is behaving like these? ...
0
votes
1answer
168 views

How to create Common log file for multi threaded application in mfc?

Is there any library file to log the details in the file and check for size limit of the file and compress the file?
0
votes
2answers
179 views

how to determine if a POINT is inside the area of a button

how to determine if a POINT is inside the area of a button? the POINT is in screen coordinates , and I have the handle of the window in which the button is and the handle of the button. I tried ...
0
votes
2answers
249 views

How to solve this TabStop style Issue

I know that using isDialogMessage() function we can able to switch the focus from one control to another. My doubt is is it possible to override that the control should focus from first button to ...
0
votes
2answers
311 views

Tab control like in FireFox in native windows app

I would like to enable tabbing for my application. And so far it seems I could use a tab control. The problem with it is, though, that it creates a border around the client area. What I want, is more ...
0
votes
1answer
82 views

how to use CDialog in win 32 application?

I did the following steps to use the CDialog in win 32 application: Changed the use of MFC to "use mfc shared DLL". Added a dialog resource and added a class for the dialog. Included the dialog ...
0
votes
3answers
151 views

How to avoid using a button in an MFC application?

This is my first my MFC application, and unfortunately i don't understand, how it works. I found a simple MFC application, which gets the file list of a given path. I modifyed this code for my needs, ...
0
votes
0answers
231 views

How to check if a HMENU is visible

I'm developing a Windows program in C using MFC and need to find out if a given menu (identified by a HMENU as returned by the GetMenu() function) is visible. Does anybody know how to do this? One ...
0
votes
1answer
633 views

How to know if a MFC message loop is already running?

Is there any way to know whether a MFC message loop is already running? EDIT: Context: A library (with event handling) needs to know whether its event filtering has to attach to an existing MFC ...