The Microsoft Foundation Class Library (MFC) is a C++ framework for Windows GUI programming.
-3
votes
0answers
26 views
upload file to url - MFC VC++ [closed]
I am working on a VC++ application using MFC. I need to push an image file into a URL path . I could find some code pertaining to this at
http://support.microsoft.com/kb/165298
However, not sure ...
0
votes
0answers
23 views
How to load Ribbon resources from dll and merge it with main application Ribbon in MFC
I have an MFC application that uses the ms office 2007 Ribbon control. I can edit my ribbon panels, buttons... The problem is that my application load its plugins DLLs when it starts and it add menus ...
-1
votes
2answers
77 views
Play YouTube video in MFC
I am using C++ with MFC. I wonder if there is any way to play a youtube video on a control in MFC. Ideally, I just have the share link I get from the Youtube website and send the link to the control ...
0
votes
2answers
82 views
CTreeCtrl - changing its position without moving the whole area
Helloes and thank you for reading :)
I am writing an application in MFC/SDI. I split the window in two views. The one on the left is derived from CTreeView, the one on the right from CView. I also ...
0
votes
1answer
66 views
Creating a bitmap from char* buffer MFC
I'm working with an unsigned char *buffer that contains an image (16bit grayscale). I'm attempting to load this buffer into a HBITMAP so that I can use SetBitmap on a picture box control to show a ...
0
votes
1answer
22 views
How can I disable the document listing in the File menu, after my menu items?
I'm doing maintenance on a MFC MDI application and I need to remove child document window entries from the main window menu.
My File menu template has just an item, the Exit entry, but on execution ...
1
vote
2answers
102 views
fprintf not printing Unicode character [closed]
This morning I found a very weird problem and I can't find the solution. Please help me solve this problem with the code below (using Visual Studio C++ and MFC):
FILE *fp = NULL;
//fp = ...
0
votes
1answer
45 views
ExitInstance not called when exit(1) is used
With our MFC app a normal clean exit calls CWinApp::ExitInstance() and then CWinApp::~CWinApp. But if exit(1) is called, only CWinApp::~CWinApp fires, ExitInstance is skipped. I know exit(1) shouldn't ...
0
votes
0answers
33 views
Folder's context menu item “paste” and “paste shortcut” disabled
I am fetching folder's context menu using IShellView::GetItemObject (using flag: SVGIO_BACKGROUND).
Context menu is populating fine (same as window explorer populates for folder when we make a right ...
1
vote
1answer
53 views
Multibyte CString to Unicode MFC
I have 2 MFC projects.
A library project uses Multi-byte Character set.
An executable project uses Unicode Character set.
I only wrote the library project and have to use it in the executable.
...
0
votes
1answer
47 views
drawing coordinate system axes in corner of screen in direct3d
I have a direct3d environment in a MFC window and i would like to draw the coordinate system axes in the corner of the screen, as any 3d software has. I thought this would be no problem, but issues ...
-1
votes
0answers
44 views
CLIstCtrl InsertItem returns a unique index
In CLIstCtrl in MFC InsertItem function
http://msdn.microsoft.com/en-us/library/8b9s12fc%28v=vs.80%29.aspx
Does it return a unique index value. I have a list contains only one row and I want to ...
2
votes
0answers
25 views
Can't edit combo box value in CFiledialog in Windows XP SP3
The Custome FileDialog which I derived from CFiledialog.
In it's OnInitDialog() I updated it's layout to WS_EX_LAYOUTRTL (for arabic) then I set callback method SetChildLayout to Enumerate all child ...
2
votes
2answers
40 views
Changing data size of enumerated types C++
By default enumerated type variables take the size of integer i.e 4 bytes in memory. Is there any way to convert this to any other data type size.
Am not talking about type casting, but the memory ...
-1
votes
0answers
38 views
C++ MFC SDI - can't use GetMenu() [closed]
I'm trying to make dynamic menu in Visual Studio 2010, C++, MFC, SDI project.
I have this code:
void CMainFrame::AddSeparator(void)
{
CMenu *cm = GetMenu();
ASSERT(cm != NULL);
The variable ...
0
votes
0answers
67 views
error C2039: “SetDefaultDllDirectories”:is not a member of global namespace
xxx\vc\atlmfc\include\atlcore.h(638): error C2039: “SetDefaultDllDirectories”: is not a member of "global namespace"
#ifndef _USING_V110_SDK71_
// the LOAD_LIBRARY_SEARCH_SYSTEM32 flag for ...
0
votes
1answer
37 views
How to adjust the width of CListCtrl columns to fit the longest string in each column?
I am trying:
void MyListCtrl::UpdateWidthOfColumns( void )
{
int NofColumns = GetItemCount();
for (int i = 0; i < NofColumns - 1 ; ++i)
{
SetColumnWidth( i, LVSCW_AUTOSIZE_USEHEADER ...
0
votes
2answers
62 views
Is there any function that removes icon, using visual studio 6.0?
I couldn't find any function which removes a loaded icon. Please help me:))
Or is there any other function which makes an icon hidden such as setVisible(false), or delete?
if(GetDlgItem ...
0
votes
2answers
29 views
confirm quit when user presses X button
i'd like to ask the user "Are you sure that you want to quit the application?" question. If the user presses Yes, the application will terminate. If the user the presses No, the application will ...
0
votes
2answers
79 views
Can I suspend a process except one thread?
I'm going to suspend(or pause) a process except one thread.
I've tried to use SuspendThread(Api Function) and the result is process thread was became non-responsable status.
This is not what I ...
2
votes
2answers
58 views
Visual C++, CArchive Serialize
I learn Visual C++ with Visual Studio 2010.
I tried to use Serialize function of MFC CObject.
I can't load my object with Serialize function
My code:
#include <afxwin.h>
#include ...
0
votes
1answer
52 views
C++ MFC - Adding string to combo box prevents window from opening
void _LayersDialog::OnBnClickedRenameGroup()
{
LOG("CLICKED ON RENAME GROUP\n");
_LayersNameDialog name_dlg;
CComboBox* pComboBox = (CComboBox*)name_dlg.GetDlgItem(IDC_LAYERRENAME_COMBO);
...
0
votes
1answer
39 views
incorrect value in coledatetime
I'm fighting a few days with COleDateTime in MFC.
I have CTime with correct values. Correct years, days, months, hours, minutes and seconds.
I tried a few ways to convert CTime to COleDateTime:
-1.I ...
0
votes
0answers
45 views
MFC. Class CListCtrl. How to determine max possible column width in symbols?
Does MFC provides interface for getting max possible width of a column of instance of the class CListCtrl?
If so what it is?
Thanks.
Update: small code snippet for that how I am going to use the ...
0
votes
0answers
25 views
Error CDialog “not a class or struct” in MFC/VS2010
I'm a new person in MFC.
I have a question as follow:
I have a project, when I build application, it is successful and application run OK
However, when I open file AdjustHorParameterDlg (this is a ...
0
votes
1answer
145 views
Can't get MFC worker thread to pass hWnd or MDI window pointer to thread
For some reason passing an hWnd or a pointer of a newly created MDI window cannot be recasted into its original value in the worker thread. I've tried creating the thread from the App class, ...
0
votes
1answer
60 views
API or SDK for generating an AVI from bitmaps
I have an C++ VS2010 Windows MFC/GDI application, and I'd like to be able generate an AVI to create an animation from a series of bitmaps. Any recommendations for an appropriate API or SDK?
edit: ...
-1
votes
2answers
50 views
error C2143:Syntax error: lack of “;” (in front of the “. ”)
I try to call HuffmanTree1.CreateHfmTree(char Str,int m,int n);in button function .when run it give me error C2143: Syntax error: lack of ";" (in front of the ". ").
it's translation of 语法错误 : ...
1
vote
3answers
40 views
How change edit control's text?
I have a button and taxt control in MFC dialog window, when i click on button, in edit control must be replaced for example "hello world".but if i write
edit="hello wordl"
it doesn't change, how ...
0
votes
1answer
26 views
CMFCStatusBar double click event
How to response to CMFCStatusBar double click event?
I have already called m_StatusBar.EnablePaneDoubleClick(TRUE);
1
vote
0answers
42 views
Why icon of an MFC ribbon galery button does not change?
I am trying to create an MFC ribbon galery button( similar to mspaint brushes button ) using visual studio 2010 ribbon wizard.
step1 I created a galery button, changed button mode to true, set ...
1
vote
0answers
64 views
MFC - Adding event handler for dialog button
I have a CView class and a dialog in it, and I want to get some data from the dialog object once the user clicks on its "Accept" button, so I have added an event for the button and its handler in the ...
0
votes
0answers
42 views
Not able to call exported virtual function
I have a MyApi.dll with exported class Base with a pure virtual function.Also I have
a derived class having implementation of the virtual function in the same dll.
Factory function returns a derived ...
0
votes
0answers
33 views
C++: Mute the flash sound
I have developed an MFC app which has a CWebBrowserControl to open a Url which contains flash games. There is an event that when the user closes the dialog window it not actually gets closed but gets ...
0
votes
1answer
44 views
Load Dll without execute dllmain function
I want to load special dll without execute dllmain function.
I think, set a breakpoint at dllmain can solve this problem.
But I don't know How can I do?
Also I want call dll's export function.
I ...
0
votes
0answers
66 views
MFC WinInet Post Parameters
I'm writing a program in MFC and using WinInet to post data over http, but I'm facing a problem when posting parameter, in the server side the http parameters are empty, here is my code:
[code]
...
0
votes
0answers
40 views
MFC C++: How to set CTreeCtrl item height on windows mobile
I need to change the height of all items of a CTreeCtrl. On mobile devices with high resolution the space between the items is to big. I found the method CTreeCtrl::SetItemHeight but it seems not to ...
-1
votes
2answers
98 views
WM_LBUTTONDOWN + WM_LBUTTONUP combination making drag view
I am using below code in my application's view on particular event to simulate a left mouse click.
SendMessage(WM_LBUTTONDOWN);
SendMessage(WM_LBUTTONUP);
Once this code executed a mouse drag view ...
-1
votes
0answers
45 views
USB speed shown different in USBView and WinUSB
Guys:
I am using WinUSB to talk to my device, it is a STM32 device ,working in FULL speed.
From USBView in WinDDK, it shows the device bus speed is FULL.
But when I open the device using WinUSB in ...
0
votes
2answers
33 views
MFC SHELLLIST does not paint
If I create a new MFC GUI using VS2010, create a dialog box, add an MFC SHELLLIST control to the dialog box, DoModal on the dialog box, the MFC SHELLLIST is filled with the various high level objects ...
1
vote
1answer
53 views
mouse_event click coordinates, seems I am lost in coordinate sets
It seems I am having difficulties specifying mouse coordinates for a call to mouse_event. No matter how I setup the call I cannot seem to get the mouse to move properly, and when it does it only goes ...
1
vote
2answers
57 views
MFC C++ Edit Windows Controls in Callback Function
I got stuck at this part of my project.
I have a Download dialog which when you double click listcontrol.
I create it dynamicly and its use a static pointer to a Class which handles Download/Upload ...
0
votes
1answer
89 views
C++ MFC MDI change child window variables on creation
I have an MDI application where a dialog is called when the OnFileNew() function (processed by the theApp object) is called. This dialog allows the user to set values to some variables that then need ...
0
votes
1answer
37 views
When i am clicking cancel button my app is getting closed??help me out
//When i am clicking cancel button my application is geting closed ??
void abcdialog::oncde()
{
AfxMessagebox("Quit",MB_OKCANCEL);
CDialog::OnOK();
abcdialog::oncancel(); ->giving the same result
...
0
votes
0answers
34 views
MFC: CWebBrowser Controller issues playing flash games
I am using the CWebBrowser control in my mfc dialog which opens a url containing flash games. I already have latest flash player plugins installed.
Problem is "sometimes" , the flash games fail to ...
0
votes
1answer
88 views
How to disable the CListCtrl select option
I don't know how to disable the CListCtrl select option. I want to override the CListCtrl class method or handle any window command ? Thanks.
0
votes
2answers
71 views
MFC Application font issues - dialogs look wrongon Win2k8
My legacy application that runs on win2k3 citrix is about to be migrated to win2k8 citrix.
While testing on win2k8 I noticed UI issues that are not apparent on 2k3 - buttons are not wide enough for ...
0
votes
0answers
25 views
scrollview issue on win7 environment
We are currently maintaining a Windows application (MFC). Which retrieves data
from an XML files.
The XML file contains large data to display the UI components which are
created dynamically in
the ...
0
votes
1answer
20 views
What are OLE Overridables in MFC?
What are "OLE Overridables" in MFC (as opposed to just Overridables)? What does OLE mean?
-3
votes
1answer
43 views
what will be the return value of GetCurSel [closed]
I have list of users in my application and I have selected two users. My doubt is, if I call GetCurSel after selecting two users, GetCurSel will be having two users or the last selected user?
please ...



