A
A
andwin2016-06-26 11:15:10
C++ / C#
andwin, 2016-06-26 11:15:10

How can I make a copy of the program open when I click on the button?

How to make it so that when you click on the button, another window opens with the same program?172cc1fd0283490bb3addf124b655596.png

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Andrew Kondratiuk, 2016-06-26
@romanbel

The easiest option is to just create 1 more instance of your form and call the Show().
For example, suppose your form class is named WBrowser, you can execute the following code in your click handler:

var wnd = new WBrowser();
wnd.Show();

S
Sasha Pleshakov, 2016-06-26
@mnepoh

You can use TabControl. How to do it is written here .

A
ar4ebaldello, 2016-06-27
@ar4ebaldello

using System.Diagnostics;
...
string exePath = Process.GetCurrentProcess().MainModule.FileName;
string arguments = "";
Process.Start(exePath, arguments);

L
LiptonOlolo, 2016-06-28
@LiptonOlolo

new Form().Show();

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question