Generated files saves and registers
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user