[컴활1급] Excel : 강사정보조회 프로시저 [엑셀 프로시저 기출문제 7회]
·
◈ 자격증 공부/컴퓨터활용능력 1급📼
- Excel : 강사정보조회 프로시저 [엑셀 프로시저 기출문제 7회] ' 강사검색 단추 클릭 Private Sub cmd강사검색_Click() 강사정보검색.Show End Sub ' 폼 초기화 Private Sub UserForm_Initialize() cmb강사코드.RowSource = "A3:A26" End Sub ' 검색 단추 클릭 Private Sub cmd검색_Click() 참조행 = cmb강사코드.ListIndex + 3 txt강사명.Value = Cells(참조행, 2) txt수업과목.Value = Cells(참조행, 3) txt성별.Value = Cells(참조행, 4) txt수강인원.Value = Cells(참조행, 5) txt근무시간.Value = Cells(참조행, 6) txt근무일..