Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method SetUserPath ( 
 | 
  Boolean isexcel 
 | 
) id:Method_DialogEDIImportExport_SetUserPath 
 | 
{ 
 | 
  #keys: '[132680.1.1605005931]' 
 | 
  Body: 
 | 
  [* 
 | 
    // if isexcel set to user last import/ xport path 
 | 
    if ( isexcel ) 
 | 
    { 
 | 
      importpath :=''; 
 | 
      usersetting := ScenarioManager.GetUserSetting(); 
 | 
     
 | 
      if ( not isnull( usersetting ) ) 
 | 
      { 
 | 
        importpath := usersetting.ImportExportPath(); 
 | 
      } 
 | 
       
 | 
      EditorImportExportPath.Text( importpath ) 
 | 
    } 
 | 
  *] 
 | 
} 
 |