Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion VisualME7Logger/SettingsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ public SettingsForm()
MessageBox.Show(this, "VisualME7Logger detected that it is not running with administrative privileges. You may have problems using this software.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
#endif

if (!File.Exists(Path.Combine(Program.ME7LoggerDirectory, "bin", "ME7Logger.exe")))
{
MessageBox.Show(this, "Ensure VisualME7Logger is in the main directory of ME7Logger, otherwise you will not be able to start logging.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}

void SetupGrid()
Expand Down Expand Up @@ -1202,4 +1207,4 @@ public override string ToString()
return string.Format("{0}, Name: {1}", this.Variable, this.Name);
}
}
}
}