CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2013
    Posts
    14

    Execute programs in more documnts simultaneously?

    I have MDIForm1 and Form1 as child in vb6
    If I open two documents and click on the buttons to execute the program in one and in the other, the program is executed in active form1 and the other waits. If another form1 Set Active then it continues to execute in the first standing.
    Can the software be run simultaneously in both form1?
    In fact I saw in other programs that may or may not know how

  2. #2
    Join Date
    Dec 2001
    Posts
    6,332

    Re: Execute programs in more documnts simultaneously?

    You'd need to launch a new thread, which isn't very straight-forward in VB6. Or, create a separate executable, and launch that. You may also be able to put the window inside your MDI.
    Please remember to rate the posts and threads that you find useful.
    How can something be both new and improved at the same time?

Tags for this Thread

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