mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Enable old format and rename
This commit is contained in:
@@ -124,7 +124,16 @@ ORDER BY sources.name COLLATE NOCASE";
|
||||
sources += (sources == "" ? id : "," + id);
|
||||
}
|
||||
|
||||
Process.Start("DATabase.exe", "-l -g" + (systems != "" ? " system=" + systems : "") + (sources != "" ? " source=" + sources : ""));
|
||||
bool old = this.oldCheckBox.Checked;
|
||||
bool norename = !this.renameCheckBox.Checked;
|
||||
|
||||
string args = "-l -g" +
|
||||
(old ? " -old" : "") +
|
||||
(norename ? " -nr" : "") +
|
||||
(systems != "" ? " system=" + systems : "") +
|
||||
(sources != "" ? " source=" + sources : "");
|
||||
|
||||
Process.Start("DATabase.exe", args);
|
||||
}
|
||||
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user