码迷,mamicode.com
首页 > 其他好文 > 详细

20160115学习日志

时间:2016-01-15 17:42:24      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

1.关于:InputBox,由于Android不支持showmadle. FMX.Dialogs中的很多窗口函数就不能直接使用。要修改成通过存储过程作为方法传递

比如:

InputBox(‘新建单元‘, ‘单元名称‘, ‘‘,
  procedure(const AResult: TModalResult; const AValue: string)
  begin
    strName := AValue;
    // 增加一个单元
    if strName <> ‘‘ then
    begin

      if TDirectory.Exists(FdyPath + TPath.DirectorySeparatorChar + strName)
      then
        ShowMessage(‘单元[‘ + strName + ‘]已经存在,请删除后再创建!‘)
      else
      begin
        TDirectory.CreateDirectory(FdyPath + TPath.DirectorySeparatorChar
          + strName);
        ReadDy;
      end;
    end;
  end);

2.关于路径,貌似创建系统无法创建根目录下的文件,可能是权限问题,有待处理。

20160115学习日志

标签:

原文地址:http://www.cnblogs.com/barryhong/p/5133851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!