Hi,
I'm trying to add a progress bar showing the progress of the installation of 3 files, anyone can help me?
This is the code to install the files, one by one:
result = File.Run("AutoPlay\\setup\\file1.msi", "", "", SW_SHOWNORMAL, true);
result = File.Run("AutoPlay\\setup\\file2.exe", "", "", SW_SHOWNORMAL, true);
result = File.Run("AutoPlay\\setup\\file3.exe", "", "", SW_SHOWNORMAL, false);
I'm trying to add a progress bar showing the progress of the installation of 3 files, anyone can help me?
This is the code to install the files, one by one:
result = File.Run("AutoPlay\\setup\\file1.msi", "", "", SW_SHOWNORMAL, true);
result = File.Run("AutoPlay\\setup\\file2.exe", "", "", SW_SHOWNORMAL, true);
result = File.Run("AutoPlay\\setup\\file3.exe", "", "", SW_SHOWNORMAL, false);
Comment