Google Chrome and IE8 implement multi-process support for each tab. How would I implement something like that using c# and vs2008?
Google Chrome and IE8 implement multi-process support for each tab. How would I implement
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Umm… look up Inter-process communication. Then make your processes communcate with each other (e.g. passing data structures, commands, etc.). You will probably need a rendering process and a main process as well (or combine these two into a single rendering/commanding process).