레이아우슾로토 적용

This commit is contained in:
chi
2021-05-22 14:04:34 +09:00
parent 478896089f
commit e1dce272bb
24 changed files with 1991 additions and 775 deletions

View File

@@ -15,13 +15,15 @@ namespace FCM0000
public int Index { get; set; }
string keyword = string.Empty;
public fLovProject(string search_)
string keyword2 = string.Empty;
public fLovProject(string search_,string stat_="")
{
InitializeComponent();
Title = string.Empty;
Index = -1;
this.keyword = search_;
this.keyword2 = stat_;
this.KeyPreview = true;
this.KeyDown += (s1, e1) => {
if (e1.KeyCode == Keys.Escape) this.Close();
@@ -33,7 +35,10 @@ namespace FCM0000
{
//search data
// var dt = this.ta.GetSearch(this.keyword);
this.ta.FillSearch(this.dsMSSQL.Projects,"%" + this.keyword + "%",FCOMMON.info.Login.gcode);
this.ta.FillSearch(this.dsMSSQL.Projects,
"%" + this.keyword + "%",
FCOMMON.info.Login.gcode,
"%" + this.keyword2 + "%");
}
private void bs_CurrentChanged(object sender, EventArgs e)