I am making an video streaming application as mine final year project and need a help to know that in MFC we have a function Create() with these following definition:-
_AFXWIN_INLINE BOOL CDialog::Create(UINT nIDTemplate, CWnd* pParentWnd)
{ return CDialog::Create(ATL_MAKEINTRESOURCE(nIDTemplate), pParentWnd); }
i have written my own class like:-
class CDialog : public CWnd
{
public:
CDialog();
void Initialize();
NOW I DON"t want to use the MFC and implementing my program as a service with a gui build in win32 or c sharp and want to know HOW can i display preview window now?