Delphi/꿀팁
실행중인 프로그램 목록과 아이콘 가져오기
1. 폼위에 ListView, Button, ImageList를 올려놓습니다. 2. 폼의 OnCreate 이벤트에서 초기 설정을 해줍니다. procedure TForm1.FormCreate(Sender: TObject);begin ImageList1.BkColor := ListView1.Color; ListView1.ViewStyle := vsReport; ListView1.SmallImages := ImageList1; ListView1.Columns.Add; ListView1.Columns[0].Caption :='실행중인 프로그램'; ListView1.Columns[0].Width := ListView1.Width;end;3. 프로그램 목록을 가져오는 전역 함수를 작성합니다.function Enum..