=====* unimarc *=====

- 주문처 관리 -
마크관리 / 장비관리 Grid 정비중.
ㄴ> 현재 값이 입력되면 자동으로 날짜출력하는 기능 추가중

- 마크탭 전체 재정비중 -

기타 소스코드 함수 정리
This commit is contained in:
SeungHo Yang
2021-10-08 18:45:17 +09:00
parent a01a14d34e
commit 74108e9d1b
25 changed files with 785 additions and 230 deletions

View File

@@ -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);