Click here to Skip to main content
15,878,809 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
SuggestionRe: Creating Non-Rectangular Forms Pin
David Crow6-Jan-13 17:25
David Crow6-Jan-13 17:25 
AnswerRe: Creating Non-Rectangular Forms Pin
«_Superman_»6-Jan-13 17:56
professional«_Superman_»6-Jan-13 17:56 
AnswerRe: Creating Non-Rectangular Forms Pin
Richard MacCutchan6-Jan-13 22:13
mveRichard MacCutchan6-Jan-13 22:13 
GeneralRe: Creating Non-Rectangular Forms Pin
Luca D'Amico7-Jan-13 13:05
Luca D'Amico7-Jan-13 13:05 
Questionstd::vector problem Pin
Super Lloyd6-Jan-13 1:21
Super Lloyd6-Jan-13 1:21 
AnswerRe: std::vector problem Pin
CPallini6-Jan-13 7:14
mveCPallini6-Jan-13 7:14 
GeneralRe: std::vector problem Pin
Super Lloyd6-Jan-13 11:53
Super Lloyd6-Jan-13 11:53 
QuestionStatic link to ATL alwayas fail Pin
Falconapollo4-Jan-13 23:19
Falconapollo4-Jan-13 23:19 
I use some ATL functions to create a Media control. But, it seems that I can only use Dynamic link to ATL option, when I switch to Static link to ATL. I just can't create the control successfully.

I'm so confused. Anyone can help me?

C++
//related headers
#include <wmp.h>
#include <atlbase.h>
#include <atlcom.h>
#include <atlhost.h>
#include <atlctl.h>

//related vars
CAxWindow  m_wndView;  // ActiveX host window class.    CComPtr<IWMPPlayer>  
m_spWMPPlayer;  // Smart pointer to IWMPPlayer interface.

//related function code:
CComPtr<IAxWinHostWindow>  spHost;
HRESULT  hr;
m_wndView.Create(m_hWnd, rect, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN, WS_EX_CLIENTEDGE);
hr = m_wndView.QueryHost(&spHost);
/*
when I switch to "Static Link to ATL" option, I will fail here
E_FAIL == hr;//the failure flag
*/
if(!SUCCEEDED(hr)) return FALSE;

hr = spHost->CreateControl(CComBSTR(_T("{6BF52A52-394A-11d3-B153-00C04F79FAA6}")), m_wndView, 0);
if(!SUCCEEDED(hr)) return FALSE;

hr = m_wndView.QueryControl(&m_spWMPPlayer);
if(!SUCCEEDED(hr)) return FALSE;

AnswerRe: Static link to ATL alwayas fail Pin
Richard MacCutchan5-Jan-13 1:28
mveRichard MacCutchan5-Jan-13 1:28 
Questionhow to use a work thread write file and the main thread show a carton Pin
haha_c4-Jan-13 22:12
haha_c4-Jan-13 22:12 
SuggestionRe: how to use a work thread write file and the main thread show a carton Pin
David Crow5-Jan-13 11:41
David Crow5-Jan-13 11:41 
AnswerRe: how to use a work thread write file and the main thread show a carton Pin
Albert Holguin6-Jan-13 6:14
professionalAlbert Holguin6-Jan-13 6:14 
GeneralRe: how to use a work thread write file and the main thread show a carton Pin
haha_c6-Jan-13 14:58
haha_c6-Jan-13 14:58 
AnswerRe: how to use a work thread write file and the main thread show a carton Pin
Randor 6-Jan-13 17:39
professional Randor 6-Jan-13 17:39 
QuestioncapDriverConnect displays captured frame in CView Pin
Vaclav_4-Jan-13 16:15
Vaclav_4-Jan-13 16:15 
QuestionWhat is the merit to rewrite memcpy? Pin
econy4-Jan-13 7:31
econy4-Jan-13 7:31 
AnswerRe: What is the merit to rewrite memcpy? Pin
Richard MacCutchan4-Jan-13 9:19
mveRichard MacCutchan4-Jan-13 9:19 
GeneralRe: What is the merit to rewrite memcpy? Pin
econy4-Jan-13 10:31
econy4-Jan-13 10:31 
GeneralRe: What is the merit to rewrite memcpy? Pin
jeron14-Jan-13 10:49
jeron14-Jan-13 10:49 
GeneralRe: What is the merit to rewrite memcpy? Pin
Richard MacCutchan5-Jan-13 1:20
mveRichard MacCutchan5-Jan-13 1:20 
AnswerRe: What is the merit to rewrite memcpy? Pin
jschell6-Jan-13 5:02
jschell6-Jan-13 5:02 
AnswerRe: What is the merit to rewrite memcpy? Pin
Joe Woodbury7-Jan-13 10:15
professionalJoe Woodbury7-Jan-13 10:15 
QuestionWhat is the benefit using duplicate loop statement [solved] Pin
econy4-Jan-13 4:53
econy4-Jan-13 4:53 
AnswerRe: What is the benefit using duplicate loop statement Pin
jeron14-Jan-13 5:29
jeron14-Jan-13 5:29 
GeneralRe: What is the benefit using duplicate loop statement Pin
econy4-Jan-13 6:37
econy4-Jan-13 6:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.