2013-05-18 5 views
0

COM을 사용하여 VSTO 2007 Outlook Addin을 만들고 있습니다. 그것은 전망에서 모든 우편물을 읽고 배달되지 않은 우편물을 표시합니다 (카테고리).VSTO 2007 outlook addin crashes

배달되지 않은 우편물을 배달되지 않은 것으로 표시하기 위해 아래 코드를 사용하고 있습니다. 때때로 읽기 컬러로 표시된 코드가 충돌합니다. 나에게 문제를 제안 해주세요.

HRESULT hrGetSelectedItem;

  LPDISPATCH spOlSelectedItem = NULL;     

      CComPtr<Outlook::_Explorer> spExplorer; 

      //Locating the selected item 

      CComPtr<Outlook::Selection> spOlSel; 

      if(m_spApp) 

      { 

          //Get the Currently Active Explorer on the top of Desktop 

          hrGetSelectedItem   = m_spApp->ActiveExplorer(&spExplorer); 

          if(SUCCEEDED(hrGetSelectedItem)) 

          { 

              hrGetSelectedItem = spExplorer->get_Selection(&spOlSel); 

              if(FAILED(hrGetSelectedItem)) 

              { 

          MessageBox(NULL,GetStringFromTable(IDS_SELECTITEM),MSGBOX_HEADER, MB_OK|MB_ICONINFORMATION); 

                  return ; 

              } 

              iMailIndex+=1; 

              VARIANT covIndex; 

              covIndex.vt = VT_I4; 

              covIndex.lVal = iMailIndex; 

              if(spOlSel) 

              { 

                  hrGetSelectedItem = spOlSel->Item(covIndex,&spOlSelectedItem); 

                  CComQIPtr <Outlook::_MailItem> spMailItem; 

                  if(spOlSelectedItem) 

                  { 

                      hrGetSelectedItem = spOlSelectedItem->QueryInterface(&spMailItem);//Get The selected item 

                      if(spMailItem) 

                      { 

                          spMailItem->put_Categories(L"Undelivered"); 

                          spMailItem->Save(); 

                      } 

                  } 

              } 

          } 

      }    LPDISPATCH spOlSelectedItem = NULL;     

      CComPtr<Outlook::_Explorer> spExplorer; 

      //Locating the selected item 

      CComPtr<Outlook::Selection> spOlSel; 

      if(m_spApp) 

      { 

          //Get the Currently Active Explorer on the top of Desktop 

          hrGetSelectedItem   = m_spApp->ActiveExplorer(&spExplorer); 

          if(SUCCEEDED(hrGetSelectedItem)) 

          { 

              hrGetSelectedItem = spExplorer->get_Selection(&spOlSel); 

              if(FAILED(hrGetSelectedItem)) 

              { 

                  MessageBox(NULL,GetStringFromTable(IDS_SELECTITEM),MSGBOX_HEADER, MB_OK|MB_ICONINFORMATION); 

                  return ; 

              } 

              iMailIndex+=1; 

              VARIANT covIndex; 

              covIndex.vt = VT_I4; 

              covIndex.lVal = iMailIndex; 

              if(spOlSel) 

              { 

                  hrGetSelectedItem = spOlSel->Item(covIndex,&spOlSelectedItem); 

                  CComQIPtr <Outlook::_MailItem> spMailItem; 

                  if(spOlSelectedItem) 

                  { 

                      hrGetSelectedItem = spOlSelectedItem->QueryInterface(&spMailItem);//Get The selected item 

                      if(spMailItem) 

                      { 

                          spMailItem->put_Categories(L"Undelivered"); 

                          spMailItem->Save(); 

                      } 

                  } 

              } 

          } 

      } 

미리 감사드립니다.

+0

색상으로 표시된 코드는 무엇입니까? 도움이 필요하면 서식을 지정하십시오. 또한 스마트 포인터를 표준 포인터와 왜 혼합합니까? LPDISPATCH를 CComPtr 으로 변경해야합니다. 그렇지 않으면 릴리스 호출이 누락됩니다. –

답변

0

spExplorer가 null이 아닌지 확인해야합니다. 탐색기없이 Outlook을 열 수 있습니다.

+0

spExplorer가 null이 아니더라도 hrGetSelectedItem = spExplorer-> get_Selection (& spOlSel); 이 충돌합니다. 폴더에서 모든 메일 항목을 선택하면이 함수 호출 만 충돌합니다. – user369287

+0

OutlookSpy에서 선택 항목에 액세스 할 수 있습니까? OutlookSpy 도구 모음에서 탐색기 단추를 클릭하고 선택 속성을 선택하고 찾아보기를 클릭합니다. –