I am working on a MFC C++ application, but I met problems while trying to open another dialog in my project.
See in this small video I recorder: click here (Youtube)
Some of my code:
CFindWindow window;
window.DoModal();
This is the FindWindow.h file:
#pragma once
// CFindWindow dialog
class CFindWindow : public CDialogEx
{
DECLARE_DYNAMIC(CFindWindow)
public:
CFindWindow(CWnd* pParent = NULL); // standard constructor
virtual ~CFindWindow();
// Dialog Data
enum { IDD = IDD_FINDWINDOW_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
};
I am not sure what do you need in order to help me with this, just tell me, and I will provide you anything you need.
Thanks in advance!
Sometimes the Resource Compiler doesn’t detect changes. Rebuilding the solution can help mitigate this.