lazhen
2025-01-09 8afe90b633046db39042aada36b88193062f8cff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Quintiq file version 2.0
#parent: #root
Method LoadDatasetNewClient (
  internal[MDSObjectInfo] datasetinfo
) id:Method_FormBTS_LoadDatasetNewClient
{
  #keys: '[145592.0.249101831]'
  Body:
  [*
    if( not isnull( datasetinfo ) )
    {
      mdsid := datasetinfo.MDSID();   
      if( not datasetinfo.IsLoaded() )
      {
        ExternalMDSEditor::Editor().LoadMDS( mdsid, MDSInterface::StandAloneStorageState() ); 
      }
      Process::Execute( 'cmd',
                        '/C',
                        '"' + OS::BinDir() + 'QThinClient.exe"',
                        '/startup.autostart=false', // Start the client and present the login dialog.
                        //'/startup.project='
                        // The documentation gives the following warning:
                        // "This element is part of internal infrastructure and must not be used in models."
                        // We use this attribute anyway, because there don't seem to be any good workarounds.                    
                       // + Application.ApplicationScope().Project().Name(),
                        '/startup.selectdataset=' 
                        + datasetinfo.Kind()
                        + ':'
                        + datasetinfo.Path()
                        + '/'
                        + datasetinfo.Name()//,
                        // The ViewManager().CurrentView() relation is forbidden Quill (not an officially supported relation) 
                        //"'/startup.view=" + ApplicationScope.ViewManager().CurrentView().Name() + "'" 
                        );
    }
  *]
}