Making a process modal

Hi, hopefully a rather straight forward case: I have two programs that I wish to integrate such that the first one opens the second modally. How would I go about this I'm thinking there must be something you can do with handles, but I have no idea how to go about it and haven't been able to find any information to aid me. Any help would be much appreciated, thanks.

Hoopla



Answer this question

Making a process modal

  • ewitkows

    You can only make windows modal compared to other windows. If I remember correctly you cannot do this over process boundaries. Can you make you second form member of a class library, so that you can create an instance of that form in the same process

    --
    SvenC


  • bankit

    Of course! I didn't even think of that... Thanks very much ;)

  • Making a process modal