Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 클라우드 보안 취약성
- 제한된 이식성
- 수평적 확장
- 클라우드 자원 관리자
- 온디맨드식
- 정수형 데이터타입
- Community Cloud
- VMWare View Connection Serve
- 커뮤니티 클라우드
- Error 1720
- 자원 풀링
- 이 컴퓨터는 도메인의 구성원이 아닙니다.
- 고정 IP주소를 가진 네트워크 어댑터를 검색할 수 없습니다.
- 멀티테넌시
- dhcp
- View Connection
- 운영관리제어의 축소
- 가상 프라이빗 클라우드
- 클라우드 소비자
- VMWare vSphere
- 수직적 확장
- DHCP 설정
- Virtual Private Cloud
- 클라우드 서비스 소유자
- DHCP 설치
- IT 자원
- 온 프레미스
- VMware
- 클라우드 제공자
- 도메인 사용자 또는 그룹을 확인할 수 없습니다.
Archives
- Today
- Total
한 걸음씩..
AfxMessageBox 와 While문을 이용하여 특정 함수 에러 시 재시도 함수 본문
반응형
UINT Replay_Func ()
{
HRESULT hr;
int result = FALSE;
int RetryCancel = 0;
int Replay = 5; // 특정 함수를 호출할 횟수
CString errMsg;
while(!result)
{
hr = ... /*특정함수 호출.....*/
if( FAILED(hr))
{
errMsg.Format(_T("Error RePlay Count : %d\n"),Replay);
errMsg += errMsg.format( _T("Error Code : 0x%x"),GetLastError( hr ));
RetryCancel = AfxMessageBox( errMsg, MB_RETRYCANCEL );
if( RetryCancel == IDCANCEL )
break;
}
else
{
result = TRUE;
}
Wait(1000);
if(--Replay == 0)
return hr;
}
return hr;
}
반응형
'프로그래밍' 카테고리의 다른 글
Toaster enum Error (0) | 2013.07.15 |
---|---|
Device 인식 기본적인 함수 (0) | 2013.07.15 |
Create_Directory / Directory_Copy / File_Remove (0) | 2013.07.15 |
WideCharToMultiByte (0) | 2013.07.15 |
File Dialog / Folder Dialog (0) | 2013.07.15 |