I found out what this bug is..
It's so strange, but this bug comes if you declare any new menu items before you declare the activex control.
So if you do this
[code]
Me
.MainMenu1 = New System.Windows.Forms.MainMenu
Me.MI_File = New System.Windows.Forms.MenuItem
Me
.tbDoc1 = New System.Windows.Forms.TabPage
Me.axFramer1 = New AxDSOFramer.AxFramerControl
[/code]
you will get the inactive message , but if you do this
[code]
Me.tbDoc1 = New System.Windows.Forms.TabPage
Me.axFramer1 = New AxDSOFramer.AxFramerControl
Me.MainMenu1 = New System.Windows.Forms.MainMenu
Me.MI_File = New System.Windows.Forms.MenuItem
[/code]
you wont. Very strange....... It took me a good hour to pinpoint it too.