This commit is contained in:
chikyun.kim
2018-10-02 08:24:16 +09:00
parent 7b86ca98d9
commit 327adb3779
19 changed files with 973 additions and 491 deletions

View File

@@ -38,8 +38,8 @@ namespace FBS0000
var f = new FCM0000.fLovProject("");
if(f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
this.tbPrj.Text = f.Project.ToString();
this.tbPrjName.Text = f.ProjectName;
this.tbPrj.Text = f.Index.ToString();
this.tbPrjName.Text = f.Title;
placeTextBox.Focus();
}
}
@@ -58,8 +58,8 @@ namespace FBS0000
var f = new FCM0000.fLovProject("%" + search + "%");
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
this.tbPrj.Text = f.Project.ToString();
this.tbPrjName.Text = f.ProjectName;
this.tbPrj.Text = f.Index.ToString();
this.tbPrjName.Text = f.Title;
SendKeys.Send("{TAB}");
}
}