Hi! Is there a way to load()... the baseline of a Module without opening it's current? I.e. like with read(modulString,false) i know i can open the current with the String "modulString". Ie: Can i open a baselined module of Version 6.2. with the name "moduleString" without opening it's current?
I am searching an Example for this: Module b=load(modulString, baseline(6,2), false);
With best regards, Bjoern_Karpenstein - Wed Feb 03 04:17:01 EST 2016 |
Re: Load Baseline (by name as string) without current module Reference? It's all in the DXL manual string mName = "Test Module" Baseline b = baseline(1,0,"") Module mb = load(moduleVersion(module(mName), b), true)
|