계좌 선택 기능 추가

This commit is contained in:
2016-12-20 09:16:28 +09:00
parent 034c061a1b
commit a93faf9eb5
7 changed files with 156 additions and 29 deletions

View File

@@ -25,7 +25,10 @@ namespace NewsCrawler
public void SetMessage(string strMsg, CodeList.CODE_VALUE Code)
{
m_Code = Code;
label1.Text = strMsg;
tbMsg.Text = "";
foreach(string strLine in strMsg.Split('\n'))
tbMsg.Text += strLine + Environment.NewLine;
}
private void btnYes_Click(object sender, EventArgs e)