Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to get a clear understanding of possibilities and limitations of BalloonTip object.
I've found minimal working sample of BalloonTip-related code here, but for some reason Inventor ignores my attempt to consequently show two BalloonTips (it just shows the first one).
My iLogic-code is:
Option Explicit On
Dim invApp As Inventor.Application = ThisApplication
Dim uiMgr As UserInterfaceManager = invApp.UserInterfaceManager
Dim blnTips As BalloonTips= uiMgr.BalloonTips
Dim myBlnIntName, myBlnTitle As String
myBlnIntName = Now.ToString("ss")
myBlnTitle = myBlnIntName
Dim myBlnTip As BalloonTip
Try
myBlnTip = blnTips(myBlnIntName)
Catch
myBlnTip = blnTips.Add(myBlnIntName, myBlnTitle, "1-True")
End Try
myBlnTip.Display()
myBlnTip.Delete
' Threading.Thread.Sleep(9999)
myBlnTip = blnTips.Add(myBlnIntName, myBlnTitle, "2-False")
myBlnTip.Display()
myBlnTip.Delete
Dear @MjDeck could you, please clarify what I'm missing?
Please vote for Inventor-Idea Text Search within Option Names
Solved! Go to Solution.