Someone asked from our beta forum the following:
Is there a command to change the data source file path for all Mbooks in a specific folder?
I put the answer here so future search can find it.
string newpath$="c:\test\";
doc -ef M {
string fpath$=wks.dc.source$;
string fname$=fpath.GetFileName()$;
wks.dc.source$=newpath$ + fname$;
}
CP