Bladeren bron

Change the save path of the granularity table to an absolute path

cxs 1 maand geleden
bovenliggende
commit
f52c5f9ac3
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      OTSIncAReportApp/1-UI/OTSMgrInfo/frmPartSizeEditorNew.cs

+ 1 - 1
OTSIncAReportApp/1-UI/OTSMgrInfo/frmPartSizeEditorNew.cs

@@ -379,7 +379,7 @@ namespace OTSIncAReportApp
             //另存,新建文件
             SaveFileDialog savePath = new SaveFileDialog();
             savePath.RestoreDirectory = true;
-            savePath.InitialDirectory = mPartSizeFilePath;
+            savePath.InitialDirectory = Application.StartupPath+ "\\Config\\ProData\\";
             savePath.Title = "Save file";
             savePath.Filter = "psf File(*.psf)|*.psf";
             savePath.RestoreDirectory = false;