'Continue' 다음에는 'Do', 'For' 또는 'While'이 와야 합니다.
업데이트: 2007년 11월
'Continue' must be followed by 'Do', 'For' or 'While'
Continue 문이 Do...Loop 루프, For...Next 루프 또는 While...End While 루프 사이에 오는지에 따라 Continue 문 뒤에는 Do, For 또는 While이 와야 합니다.
오류 ID: BC30781
이 오류를 해결하려면
Continue 문이 Do...Loop 루프에 있으면 문을 Continue Do로 변경합니다.
Continue 문이 For...Next 루프에 있으면 문을 Continue For로 변경합니다.
Continue 문이 While...End While 루프에 있으면 문을 Continue While로 변경합니다.
그렇지 않으면 Continue 문을 제거합니다.