Dim fileDialog As New SaveFileDialog()
If fileDialog.ShowDialog(Me) = DialogResult.OK Then
DirectCast(m_pScenes, IMPersist).PersistSaveToFile("", fileDialog.FileName, "separate-files=true")
End If
SaveFileDialog fileDialog = new SaveFileDialog();
if (fileDialog.ShowDialog(this) == DialogResult.OK)
{
((IMPersist)m_pScenes).PersistSaveToFile("", fileDialog.FileName, "separate-files=true");
}
myMixer:= CreateComObject(CLASS_MMixer) as MMixer;
myPersist:= myMixer as IMPersist;
myPersist.PersistSaveToFile('', 'c:\myConfig.xml', eparate-files=true');