Generated files saves and registers

This commit is contained in:
2015-07-17 15:19:11 +02:00
parent 83237693df
commit 691cbf23e3
9 changed files with 487 additions and 14 deletions

View File

@ -24,6 +24,8 @@ namespace CobXmlSupport
string oldTxt;
bool bSynch;
public savedFile SavedFile { get; set; }
public ShowCode()
{
InitializeComponent();
@ -328,5 +330,13 @@ namespace CobXmlSupport
this.CodeShower.Text = " InPath = " + Cc.PathId + "\r\n InFile = " + Cc.FileId + "\r\n codeFile = " + Cc.CcFileOutId + "\r\n codePath = " + Cc.PathId + Cc.CcFileOutId + "\r\n -------------- \r\n" + this.CodeShower.Text;
}
private void btnSaveAktualText_Click(object sender, EventArgs e)
{
SaveRegCopyFile saveWin = new SaveRegCopyFile();
saveWin.SavedFile = this.SavedFile;
saveWin.FileData = this.txtCode.Text;
saveWin.ShowDialog();
}
}
}