From the save data I passed message to the parent Dialog
GetParent()->SendMessage(WM_USER + 558);
And in parent Dialog I caught that message and handle that
ON_MESSAGE(WM_USER+558, OnStudentAdd)
LRESULT CDialogControlDlg::OnStudentAdd(WPARAM wparam, LPARAM lparam)
{
_tcscpy(niData.szInfoTitle,L"New Record Inserted!");
_tcscpy(niData.szInfo,L"New Student Added.....");
niData.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP |NIF_INFO;
niData.uTimeout=500;
Shell_NotifyIcon(NIM_MODIFY, &niData);
return 0;
}