Google Delphi/꿀팁 [E-Mail] 첨부파일 다운로드 하기 - 5 TEmailInfo = record Index: Integer; UID: string; PartNumber: string; TransferEncoding: string; FileName: string; end; PEmailInfo = ^TEmailInfo; TAttachInfo = record Index: Integer; end; PAttachInfo = ^TAttachInfo; TForm1 = Class(TForm) .. lstMailBox: TListBox; lstMailList: TListView; lstAttachList: TListView; private public SelectMsg: TIdMessage; end; //lstAttachList의 OnDblClick 이벤트를 추가합니다. proc.. Delphi/꿀팁 [E-Mail] 메일 및 첨부파일 내용 가져오기 - 4 TEmailInfo = record Index: Integer; UID: string; PartNumber: string; TransferEncoding: string; FileName: string; end; PEmailInfo = ^TEmailInfo; TAttachInfo = record Index: Integer; end; PAttachInfo = ^TAttachInfo; TForm1 = Class(TForm) .. lstMailBox: TListBox; lstMailList: TListView; lstAttachList: TListView; private public SelectMsg: TIdMessage; end; //lstMailList의 OnSelectItem 이벤트를 추가합니다. proc.. Delphi/꿀팁 [E-Mail] 메일함의 메일 리스트 불러오기 - 3 TEmailInfo = record Index: Integer; UID: string; PartNumber: string; TransferEncoding: string; FileName: string; end; PEmailInfo = ^TEmailInfo; TForm1 = Class(TForm) .. lstMailBox: TListBox; lstMailList: TListView; private public end; Procedure getMailBoxList; var Msg: TIdMessage; EmailInfo: PEmailInfo; Item: TListItem; begin //메일함 명 입력 IdIMAP4.SelectMailBox(lstMailBox.Items[lstMailBox.ItemIndex.. 이전 1 2 다음