我有多对多的关系,我应该可以将一个切换到另一个。
我实施的方式是
With OutMail ' outlook message details
.To = CreateObject("Outlook.Application").GetNamespace("MAPI") _
.CurrentUser.AddressEntry.GetExchangeUser.Manager
.Subject = "Sales report - " & Format(Date, "dd-mm-yyyy")
.Body = "Here comes the full sales report from " & Format(Date, "dd-mm-yyyy")
.Attachments.Add ActiveWorkbook.FullName 'attachment File
.Display
' .Send
End With
让我们说分离成功但同步失败了 然后我会丢失原始数据..我该如何处理? 有什么好办法可以防止这种情况吗?