Display Problem adding forms with hwnd |
Post Reply |
Author | |
bruce8250
Newbie Joined: 19 July 2005 Status: Offline Points: 1 |
Post Options
Thanks(0)
Posted: 19 July 2005 at 6:22am |
Hi, VB6: I'm using the DockingPane to create an Outlook type app. Depending on the Shortcut selected I insert a new form into a Pane. frmMainFrame.DockingPaneManager(PANE_1).Handle = frmMainIssues.hWnd or frmMainFrame.DockingPaneManager(PANE_1).Handle = frmMainTasks.hWnd Problem is that the app flicks to previosly added forms before the new form is displayed. How can I stop the flick??? Delete all loaded forms in Pane - but I can't find the methods to do this. Many thanks |
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Hide thiw window using API: Private Declare Function ShowWindow Lib "user32" Alias "ShowWindow" _ (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long ShowWindow frmMainIssues.hWnd, 0 ' Hide Window
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |