Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit c40ad45

Browse files
committed
Allow selecting multiple VMs
Feature request from issue #50 implemented for some VM operations Made messagebox descriptions more specific by including VM name in them Kill option is now always available, so it can be used in case of VM status mismatch Added an error message if shortcut creation fails
1 parent 2454e40 commit c40ad45

File tree

4 files changed

+223
-179
lines changed

4 files changed

+223
-179
lines changed

86BoxManager/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ static void Main()
8787
Process[] pname = Process.GetProcessesByName("86box");
8888
if (pname.Length > 0)
8989
{
90-
DialogResult result = MessageBox.Show("At least one instance of 86box is already running. It's not recommended that you run 86Box.exe directly outside of Manager. Do you want to continue at your own risk?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
90+
DialogResult result = MessageBox.Show("At least one instance of 86Box.exe is already running. It's not recommended that you run 86Box.exe directly outside of Manager. Do you want to continue at your own risk?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
9191
if (result == DialogResult.No)
9292
{
9393
return;

86BoxManager/frmMain.Designer.cs

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)