Click here to Skip to main content
15,902,032 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Casting a pointer to an unmanaged const void* Pin
Ilkka Pitkänen6-May-06 21:43
Ilkka Pitkänen6-May-06 21:43 
Questiona question regarding CString Pin
namaskaaram6-May-06 0:22
namaskaaram6-May-06 0:22 
AnswerRe: a question regarding CString Pin
Mahesh Kulkarni6-May-06 0:50
Mahesh Kulkarni6-May-06 0:50 
AnswerRe: a question regarding CString Pin
ThatsAlok6-May-06 23:07
ThatsAlok6-May-06 23:07 
QuestionHTML Interface Pin
kk.tvm5-May-06 23:38
kk.tvm5-May-06 23:38 
AnswerRe: HTML Interface Pin
Hamid_RT6-May-06 0:24
Hamid_RT6-May-06 0:24 
AnswerRe: HTML Interface Pin
ThatsAlok6-May-06 23:08
ThatsAlok6-May-06 23:08 
QuestionImportant:Sinking to HTML element events in IE Pin
rana745-May-06 23:34
rana745-May-06 23:34 
TO understand we create a sink to html element events and 'advise' it as follows:
bool Cembrowsersink::ConnectEvents(IHTMLElement* pElem)
{
HRESULT hr;
USES_CONVERSION;
IConnectionPointContainer* pCPC = NULL;
IConnectionPoint* pCP = NULL;
DWORD dwCookie;
IUnknown* pUnk =NULL;

// Check that this is a connectable object.
AtlTrace(_T("\nCheck that this is a connectable object."));
hr = pElem->QueryInterface(IID_IConnectionPointContainer, (void**)&pCPC);

if (SUCCEEDED(hr))
{
//AtlTrace(_T("Find the connection point."));
hr = pCPC->FindConnectionPoint(DIID_HTMLElementEvents2, &pCP);

if (SUCCEEDED(hr))
{
//AtlTrace(_T("create the instance of the element sink."));
hr=m_selem->QueryInterface(IID_IUnknown,(void**)&pUnk);
if(SUCCEEDED(hr))
{
//AtlTrace(_T("Advise the connection point."));
hr = pCP->Advise(pUnk, &m_dwCookie);

if (SUCCEEDED(hr))
{
AtlTrace(_T("Successfully advised"));
}
}
pCP->Release();
}

pCPC->Release();
}

return false;
}

When we run it against the htlml element collection on GOOGLE home page ,we find that there are certain HTML elements aganst which the sink could be hooked (HTML,HEAD,TITLE,,META,,CENTER,,TBODY) while others against which no connection point interface is found like STYLE,SCRIPT,BODY,TABLE,TR,FORM,INPUT.

What's the reason?
If I want to subscribe only to the events of the 'INPUT' html elements ,how do then i do it?

AnswerRe: Important:Sinking to HTML element events in IE Pin
Stephen Hewitt5-May-06 23:39
Stephen Hewitt5-May-06 23:39 
GeneralRe: Important:Sinking to HTML element events in IE Pin
rana745-May-06 23:41
rana745-May-06 23:41 
GeneralRe: Important:Sinking to HTML element events in IE Pin
Stephen Hewitt6-May-06 0:00
Stephen Hewitt6-May-06 0:00 
Questionhow to save all frames from a video file as a jpeg image Pin
sunita ramesh5-May-06 23:26
sunita ramesh5-May-06 23:26 
AnswerRe: how to save all frames from a video file as a jpeg image Pin
kk.tvm5-May-06 23:45
kk.tvm5-May-06 23:45 
AnswerRe: how to save all frames from a video file as a jpeg image Pin
Phil C6-May-06 20:24
Phil C6-May-06 20:24 
QuestionOutput of Simple C Program ? Pin
Andy Rama5-May-06 23:05
Andy Rama5-May-06 23:05 
AnswerRe: Output of Simple C Program ? Pin
Nibu babu thomas5-May-06 23:11
Nibu babu thomas5-May-06 23:11 
GeneralRe: Output of Simple C Program ? Pin
Andy Rama5-May-06 23:49
Andy Rama5-May-06 23:49 
AnswerRe: Output of Simple C Program ? Pin
Hamid_RT6-May-06 0:38
Hamid_RT6-May-06 0:38 
GeneralRe: Output of Simple C Program ? Pin
Andy Rama6-May-06 18:26
Andy Rama6-May-06 18:26 
GeneralRe: Output of Simple C Program ? Pin
Phil C6-May-06 20:33
Phil C6-May-06 20:33 
AnswerRe: Output of Simple C Program ? Pin
ludao5186-May-06 1:53
ludao5186-May-06 1:53 
QuestionApplying xslt (to xml) from c++ Pin
mohanrajh5-May-06 21:30
mohanrajh5-May-06 21:30 
AnswerRe: Applying xslt (to xml) from c++ Pin
Stephen Hewitt5-May-06 23:23
Stephen Hewitt5-May-06 23:23 
QuestionHow to use IMpeg2Data & IMpeg2PsiParser Intefaces Pin
Andy Rama5-May-06 21:12
Andy Rama5-May-06 21:12 
AnswerRe: How to use IMpeg2Data & IMpeg2PsiParser Intefaces Pin
Nibu babu thomas5-May-06 21:16
Nibu babu thomas5-May-06 21:16 

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.