Does anyone know why I'm getting an error:
"The method or operation is not implemented" when I try to call the following macro?
public void Macro1()
{
string strPicName = string.Empty;
for (int i = 0; i < this.ActiveDocument.DynPictures().Count; i++)
{
strPicName = this.ActiveDocument.DynPictures().Item(i).Name;
MessageBox.Show(strPicName);
}
}
This is a migrated post! Originally posted on 09.11.2012 by user conradsmith. Please be aware that information can be outdated.