Click here to Skip to main content
15,879,326 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: Please help me Pin
Rahul Vaishnav10-Mar-08 18:36
Rahul Vaishnav10-Mar-08 18:36 
GeneralProblem in getting data from server Pin
MANISH RASTOGI7-Mar-08 18:28
MANISH RASTOGI7-Mar-08 18:28 
GeneralRe: Problem in getting data from server Pin
Ernest Laurentin10-Mar-08 4:47
Ernest Laurentin10-Mar-08 4:47 
GeneralRe: Problem in getting data from server Pin
MANISH RASTOGI11-Mar-08 21:06
MANISH RASTOGI11-Mar-08 21:06 
GeneralEvent Map of an ActiveX control Pin
AbbyIndian6-Mar-08 6:58
AbbyIndian6-Mar-08 6:58 
GeneralError while creating object using CreateInstance() Pin
KASR16-Mar-08 0:31
KASR16-Mar-08 0:31 
GeneralRe: Error while creating object using CreateInstance() Pin
Nathan Holt at EMOM6-Mar-08 4:42
Nathan Holt at EMOM6-Mar-08 4:42 
GeneralBug in atlhost.h Pin
imagiro29-Feb-08 0:51
imagiro29-Feb-08 0:51 
I don't know where to report this bug, so may be this is the right place...
If you set an IDocHostUIHandlerDispatch-interface the FilterDataObject-Method of CAxHostWindow does NOT query the IDataObject-interface from the returned IUnknown, instead it calls QueryInterface on it self:
if (m_spIDocHostUIHandlerDispatch != NULL)
{
	CComPtr<iunknown> spUnk;
	hr = m_spIDocHostUIHandlerDispatch->FilterDataObject(pDO, &spUnk);
	if (spUnk)
		hr = QueryInterface(__uuidof(IDataObject), (void**)ppDORet);    // self!!
	if (FAILED(hr) || *ppDORet == NULL)
		hr = S_FALSE;
}
</iunknown>

So the line
hr = QueryInterface(__uuidof(IDataObject), (void**)ppDORet);

should be more like:
hr = spUnk->QueryInterface(__uuidof(IDataObject), (void**)ppDORet);


Does anyone know where to report this bug?

Greetings,
imagiro
GeneralRe: Bug in atlhost.h Pin
Michael Dunn29-Feb-08 9:29
sitebuilderMichael Dunn29-Feb-08 9:29 
GeneralReporting Bugs Pin
imagiro6-Mar-08 21:57
imagiro6-Mar-08 21:57 
GeneralGetting element id on click event from web browser in ATL Pin
ashish@indianic27-Feb-08 20:28
ashish@indianic27-Feb-08 20:28 
QuestionHow to use messagebox in ATL Pin
KASR126-Feb-08 21:41
KASR126-Feb-08 21:41 
AnswerRe: How to use messagebox in ATL Pin
ThatsAlok26-Feb-08 21:59
ThatsAlok26-Feb-08 21:59 
AnswerRe: How to use messagebox in ATL Pin
prasad_som5-Mar-08 4:57
prasad_som5-Mar-08 4:57 
AnswerRe: How to use messagebox in ATL Pin
dfz6-Mar-08 0:11
dfz6-Mar-08 0:11 
GeneralRe: How to use messagebox in ATL Pin
KASR16-Mar-08 0:14
KASR16-Mar-08 0:14 
AnswerRe: How to use messagebox in ATL Pin
Hamid_RT14-Apr-08 21:53
Hamid_RT14-Apr-08 21:53 
QuestionHow to handle strings in ATL. Pin
KASR126-Feb-08 19:23
KASR126-Feb-08 19:23 
AnswerRe: How to handle strings in ATL. Pin
MANISH RASTOGI26-Feb-08 21:09
MANISH RASTOGI26-Feb-08 21:09 
AnswerRe: How to handle strings in ATL. Pin
ThatsAlok26-Feb-08 21:58
ThatsAlok26-Feb-08 21:58 
GeneralRe: How to handle strings in ATL. Pin
KASR12-Mar-08 19:02
KASR12-Mar-08 19:02 
GeneralRe: How to handle strings in ATL. Pin
ThatsAlok2-Mar-08 19:26
ThatsAlok2-Mar-08 19:26 
GeneralRe: How to handle strings in ATL. Pin
Nemanja Trifunovic5-Mar-08 3:50
Nemanja Trifunovic5-Mar-08 3:50 
GeneralRe: How to handle strings in ATL. Pin
ThatsAlok5-Mar-08 4:55
ThatsAlok5-Mar-08 4:55 
GeneralWTL::CHyperLink and WM_CTLCOLORSTATIC Pin
siavan26-Feb-08 2:06
siavan26-Feb-08 2:06 

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.