CXPOIMan poiman = ctrlman.GetPOIMan();
CXPOIGroup group = poiman.FindGroup(100);
if (group.m_lpDispatch == NULL)
AfxMessageBox(_T("¾ÆÀÌÅÛ ¾øÀ½"));
else {
long count = poiman.GetGroupCount();
CString msg;
msg.Format(_T("POI Group Count(%d)\n"),count);
AfxMessageBox(msg);
}