CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8
  1. #1
    Join Date
    Jul 2008
    Posts
    42

    Question How to make 3rd party Application's GUI Framework lie within the GUIFramework of mine

    Hello,
    I am working on automation project for a 3rd party Application. This application has given APIs for various automation tasks (like, Menu automation, toolbar automation, etc)

    My code is in VB.NET.

    Automation could be made in client-server mode, my code being client, this 3rd party App being server. When I create an instance of 3rd party App ( using CreateObject(<progID>), it brings up its own GUI Framework.

    I have my own GUI Framework with customised menu items as well as my some more automation code.

    At present, both the GUI frameworks are floating in a dis-jointed and independent manner. I would like to contain the 3rd party GUI Framework within my own GUI framework whenever it is moved around.

    Please give some guidance.

    Thanks in advance. Pl let me know if more details are required.

  2. #2
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: How to make 3rd party Application's GUI Framework lie within the GUIFramework of

    Ask the people that designed the Framework, to make sure that it can be used in the way that you want. Licensing and all.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  3. #3
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: How to make 3rd party Application's GUI Framework lie within the GUIFramework of

    Possible, but not easy. This can be done. You should have some sort of container object on your one form ( where you want to host this 3rd party app - a Picturebox might do ), then you could display the 3rd party app in there. I have done this in the past. So, if you find my solution interesting, give me a shout.

  4. #4
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: How to make 3rd party Application's GUI Framework lie within the GUIFramework of

    Like a game?
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  5. #5
    Join Date
    Jul 2008
    Posts
    42

    Re: How to make 3rd party Application's GUI Framework lie within the GUIFramework of

    Quote Originally Posted by HanneSThEGreaT View Post
    Possible, but not easy. This can be done. You should have some sort of container object on your one form ( where you want to host this 3rd party app - a Picturebox might do ), then you could display the 3rd party app in there. I have done this in the past. So, if you find my solution interesting, give me a shout.
    Yes, please. Please give some guidelines on how to achieve the same.

  6. #6
    Join Date
    May 2002
    Location
    Boston
    Posts
    67

    Re: How to make 3rd party Application's GUI Framework lie within the GUIFramework of


  7. #7
    Join Date
    Jul 2008
    Posts
    42

    Re: How to make 3rd party Application's GUI Framework lie within the GUIFramework of

    Thanks, curt. I will try it, and will update the forum.

  8. #8
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: How to make 3rd party Application's GUI Framework lie within the GUIFramework of

    Sorry for the delay in replying.

    Have a look at this article :

    Customising Your Desktop with Visual Basic.NET 2005
    http://www.codeguru.com/vb/gen/vb_mi...le.php/c14319/

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

Featured