This commit is contained in:
atvstdla
2025-09-23 17:17:49 +09:00
parent 1d2bc49365
commit 7f18759004
17 changed files with 2407 additions and 2524 deletions

View File

@@ -129,7 +129,7 @@ namespace Project
var chTable = PUB.userList.GetChanges();
if (chTable != null)
{
string fn = AppDomain.CurrentDomain.BaseDirectory + "users.xml";
string fn = UTIL.MakePath("Data", "users.xml");
PUB.userList.WriteXml(fn, true);
PUB.userList.AcceptChanges();
}
@@ -352,7 +352,7 @@ namespace Project
var fi = new System.IO.FileInfo( UTIL.MakePath("data","zpl.txt"));
if (fi.Exists == false)
{
System.IO.File.WriteAllText(fi.FullName, Properties.Settings.Default.ZPL7, System.Text.Encoding.Default);
//System.IO.File.WriteAllText(fi.FullName, Properties.Settings.Default.ZPL7, System.Text.Encoding.Default);
UTIL.MsgI("New ZPL file has been created\n" + fi.FullName);
}
using (var f = new Dialog.fZPLEditor(fi.FullName))