本文整理自网络,侵删。
var D: TOpenTextFileDialog; S: TStringList;begin D := TOpenTextFileDialog.Create(nil); try D.Title := 'Import from File'; D.Filter := 'Text File|*.txt|All Files|*';
if D.Execute then begin S := TStringList.Create; try S.LoadFromFile(D.FileName, D.Encodings.Objects[D.EncodingIndex] as TEncoding);
M.SelText := S.Text; finally S.Free; end; end;
finally D.Free; end;
相关阅读 >>
decodedatetime:将一个tdatetime变量拆分成它的日期/时间 部分
Delphi adoquery连接数据库的查询、插入、删除、修改
Delphixe4 版本中,已针对移动平台 引入了 arc 模型
更多相关阅读请进入《Delphi》频道 >>