Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
A simple question, in here I'd like to show a message box...
public void Activate(Inventor.ApplicationAddInSite addInSiteObject, bool firstTime)
{
// This method is called by Inventor when it loads the addin.
// The AddInSiteObject provides access to the Inventor Application object.
// The FirstTime flag indicates if the addin is loaded for the first time.
// Initialize AddIn members.
m_inventorApplication = addInSiteObject.Application;
// ********************************
// how to put a message box here?
// ********************************
}
...I've tried using the normal Forms.MessageBox.Show stuff but it does not exist in this context. Is there a native Inventor message box function?
Solved! Go to Solution.