Recalling Item? What's it Id?

  • Thread starter Thread starter wizeguy
  • Start date Start date
W

wizeguy

Hello all, I need some assistance. I know enough vba to know I don't
know enough. Here's what I want to do:

I'd want to make a VBA Journal entry and save it from within AutoCAD. I
plan on saving the journal item's unique id(?) within AutoCAD so I can
recall the same entry later and modify it. I can create the entry with
the following and seems to work fine. I can do the AutoCAD side I just
don't know how to get this freshly created id and recall it. Thanks for
helping out the rookie. :)

Sage


Set MyOlApp = CreateObject("Outlook.Application")
Set MyOlItem = MyOlApp.CreateItem(olJournalItem)
MyOlItem.Subject = "Test"
MyOlItem.Save
 
Back
Top