-3
I am creating an installation menu with Checkbox, in this menu will have software for installation in each Checkbox, after selecting the Checkbox, will have a button that will run all the checkbox selected. Each Checkbox will perform the installation of a software, but all selected run at once, how do I get it to do one installation at a time? My code:
if (CheckBox2.Checked)
Process.Start(@"\Index\Menu de Instalacao\Softwares\Utilitarios\PROGRAMA1.EXE");
if (CheckBox3.Checked)
Process.Start(@"\Index\Menu de Instalacao\Softwares\");
Reformulated the question and in more detail. Thank you
– Felipe