INTERACT FORUM

Windows => Plug-in Development => Topic started by: KingSparta on May 10, 2003, 02:46:05 pm

Title: Resize MJ9 Window
Post by: KingSparta on May 10, 2003, 02:46:05 pm
Is There A Way To Resize MJ9's Window To Wrap Around The Plug-In

Also On The Same Note

Is There Away To Detect The Size Of MJ9 Winow To Allow The Resize Of The Plug-in?
Title: Re: Resize MJ9 Window
Post by: RhinoBanga on May 11, 2003, 09:49:23 pm
King,

You use the resize event of your usercontrol to resize your controls.

Here's what I did in the VB version of AV:


Private Sub UserControl_Resize()
Dim lLoop1          As Long
Dim lTop            As Long

#If INC_DEBUG = True Then
g_Debug.Push UserControl.Name & "::UserControl_Resize"
#End If

   On Error Resume Next

   '  Set the smartui
   suiMenu.width = UserControl.width
   suiToolbar.width = UserControl.width
   
   lTop = suiToolbar.Top + suiToolbar.Height
   
   '  Set the containers?
   If g_bCalledInit Then
       For lLoop1 = ViewContainer.LBound To ViewContainer.UBound
           With ViewContainer(lLoop1)
               .Move 0, lTop, UserControl.width, UserControl.Height - lTop
               .Refresh
           End With
       Next
   End If

   '  Refresh
'    OutputDebugString "redraw"
'    tools_Control_RedrawWindowEx UserControl.hWnd

#If INC_DEBUG = True Then
g_Debug.Pop , "UserControl_Resize"
#End If
End Sub

Title: Re: Resize MJ9 Window
Post by: KingSparta on May 12, 2003, 02:03:40 am
Ok, thanks.

I think i will play with that