1 Answers
A:
Here are a few practical strategies you can use in VB6:
Show a "Please Wait" Form with Animation or Progress Bar
Since you can't predict exact progress during Inventor startup, use a marquee-style progress bar or animation to show that something is happening.
Example: VB6 Form with ProgressBar
' In your main form or startup module
Sub LaunchInventor()
frmWait.Show
frmWait.Refresh
Dim invApp As Object
Set invApp = CreateObject("Inventor.Application")
frmWait.Hide
MsgBox "Inventor launched successfully!"
End Sub
Use Windows API to Show Hourglass Cursor
Screen.MousePointer = vbHourglass
Set invApp = CreateObject("Inventor.Application")
Screen.MousePointer = vbDefault
This gives a subtle but familiar cue that something is loading.
Autodesk Inventor
AutodeskHelp the community
Be the First to Answer these questions
Disclaimer
Techjockey’s software industry experts offer advice for educational and informational purposes only. A category or product query or issue posted, created, or compiled by Techjockey is not meant to replace your independent judgment.
20,000+ Software Listed
Best
Price Guaranteed
Free Expert
Consultation
2M+
Happy Customers