=====* unimarc *=====
- 주문처 관리 - 마크관리 / 장비관리 Grid 정비중. ㄴ> 현재 값이 입력되면 자동으로 날짜출력하는 기능 추가중 - 마크탭 전체 재정비중 - 기타 소스코드 함수 정리
This commit is contained in:
@@ -53,7 +53,6 @@ namespace WindowsFormsApp1.Mac
|
||||
Symbol sb = new Symbol();
|
||||
|
||||
string res = tb_author.Text;
|
||||
string author = tb_author.Text;
|
||||
string book = tb_book.Text;
|
||||
|
||||
if (tb_author.Text == "")
|
||||
@@ -78,18 +77,13 @@ namespace WindowsFormsApp1.Mac
|
||||
return;
|
||||
}
|
||||
}
|
||||
char aut, rauto;
|
||||
char aut;
|
||||
if (tb_author.Text.Length <= 1)
|
||||
{
|
||||
rauto = tb_author.Text[0];
|
||||
aut = tb_author.Text[0];
|
||||
}
|
||||
else
|
||||
{
|
||||
rauto = tb_author.Text[0];
|
||||
aut = tb_author.Text[1];
|
||||
}
|
||||
string rb1 = sb.Author_Fillter(rauto, rb_author1);
|
||||
|
||||
string rb1 = sb.Author_Fillter(tb_author.Text[0], rb_author1.Checked);
|
||||
|
||||
#region 콤보박스 선택
|
||||
if (cb_symbol.SelectedIndex == 0) // 이재철 1표
|
||||
@@ -126,8 +120,8 @@ namespace WindowsFormsApp1.Mac
|
||||
#endregion
|
||||
res = res.Replace("|", "");
|
||||
|
||||
res = sb.Moum_Fillter(res, rb_moum1);
|
||||
string rb2 = sb.Book_Fillter(book, rb_book1);
|
||||
res = sb.Moum_Fillter(res, rb_moum1.Checked);
|
||||
string rb2 = sb.Book_Fillter(book, rb_book1.Checked);
|
||||
|
||||
string result = string.Format("{0}{1}{2}", rb1, res, rb2);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user