* Powerbuilder 10.5
디버거를 엽니다. (ctrl + D)
6. Breakpoints View
디버거 화면 우측하단 아래서 Breakpoints View 를 클릭합니다.
현재 지정되어 있는 모든 브레이크포인트(이하 브포) 목록이 나열됩니다.
Breakpoints View 에서 마우스 우클릭 합니다.
Clear All Breakpoints 는 모든 브포를 해제합니다.
지정해둔 브포를 모두 해제하고 싶다면 Clear All Breakpoints~
Clear All Breakpoints 를 이용해서 모든 브포를 해제합니다.
w_list.open 이벤트에서
ddlb_job.AddItem(dw_job_list.getItemString(i, 'job'))
부분에 브포를 설정합니다.
이 부분은 For 문에 의해서 반복적으로 실행됩니다.
디버거의 Breakpoints View 를 보면
w_list.open.16
이라고 표시되어 있습니다.
(여러분 소스에서는 16번째 라인이 아닐 수도 있습니다.)
Breakpoints View 에서 마우스 우클릭하면 열리는 팝업창에서
Breakpoints... 를 클릭하거나
Breakpoints View 에서
w_list.open.16
부분을 더블클릭합니다.
그럼 Edit Breakpoints 가 열립니다.
Edit Breakpoints 는 Occurrence, Condition, Variable 설정 기능을 제공합니다.
먼저 Occurrence와 Condition 에 대해 알아보겠습니다.
w_list.open.16 을 클릭합니다.
Occurrence 에 3 을 입력합니다.
Apply 클릭~
이렇게 표시됩니다.
이 글은 회원 전용입니다.
'파워빌더 기초강의1' 카테고리의 다른 글
파워빌더(PowerBuilder) 강의 - 71.DataWindow Column Edit Style : CheckBox (1) | 2014.04.04 |
---|---|
파워빌더(PowerBuilder) 강의 - 70.GetChild method (DataWindows) (4) | 2014.03.05 |
파워빌더(PowerBuilder) 강의 - 68.Debug & Debugger : Views 1 (1) | 2014.01.27 |
파워빌더(PowerBuilder) 강의 - 67.Debug & Debugger : 커서 이동 (2) | 2014.01.22 |
파워빌더(PowerBuilder) 강의 - 66.Debug & Debugger : Intro (1) | 2014.01.09 |