Opens a BrainVoyager project file. Project files constitute the three basic document types in BrainVoyager: FMR, VMR, and AMR. All other data files (i.e. VTC, GLM) can be used only if one of the basic document types has been loaded or created.
objDocument objBrainVoyager.OpenDocument(strProjectFileName)
If successful, the object document objDocument is returned. Use this object to access document methods. If the load operation fails, the return value is ?.
' VBScript
Set BrainVoyager = CreateObject("BrainVoyager.1")
Set doc = BrainVoyager.OpenDocument("subject.vmr")
// JScript
BrainVoyager = new ActiveXObject("BrainVoyager.1");
doc = BrainVoyager.OpenDocument("subject.vmr");
#
PerlScript
$BrainVoyager = Win32::OLE->new("BrainVoyager.1");
$doc = $BrainVoyager->OpenDocument("subject.vmr");