Results 1 to 3 of 3

Thread: Docking outside app window or forcing it to appear on top.

  1. #1

    Thread Starter
    Hyperactive Member scuzymoto's Avatar
    Join Date
    Aug 1999
    Location
    Washington State
    Posts
    316

    Docking outside app window or forcing it to appear on top.

    I am writing an application that displays the video feed from a security camera. Would like to write it in .NET. A simple little application came with the camera that will handle all the remote control functions like panning, zooming etc. Does anyone know a way to dock an outside application onto the same form as my monitoring application. I would like it to appear that the remote control buttons are part of my application so that it doesn't get lost behind the screen. Just having the application always appear ontop of mine would also work. Thanks for the help.
    SCUZ

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    I think you have to use SetWindow API . Search for some example ...

  3. #3
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    This one :
    VB Code:
    1. Public Declare Function SetWindowPos Lib "user32" Alias "SetWindowPos" (ByVal hwnd As Long, ByVal
    2. hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
    Last edited by Pirate; Sep 25th, 2003 at 01:43 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width