C chshanghai Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #3 先保存工作路径 调用opendialog 恢复工作路径 ok
S sword_liu Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #4 ExtractFilePath(Application.ExeName)
Z zhangkan Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #5 procedure TForm1.changeDir; var sPath:string; begin ; sPath:=GetCurrentDir;//得到当前目录 ; if opendialog1.Execute then ; ; ShowMessage(OpenDialog1.FileName+#13#10+sPath); ; SetCurrentDir(sPath);//指定当前目录 end; 你也可以用ExtractFilePath(Application.ExeName)的方法
procedure TForm1.changeDir; var sPath:string; begin ; sPath:=GetCurrentDir;//得到当前目录 ; if opendialog1.Execute then ; ; ShowMessage(OpenDialog1.FileName+#13#10+sPath); ; SetCurrentDir(sPath);//指定当前目录 end; 你也可以用ExtractFilePath(Application.ExeName)的方法