personal inventory : 날짜 선택하도록 lov 추가
This commit is contained in:
@@ -14,6 +14,13 @@ namespace Project._Management
|
||||
public fLineCode()
|
||||
{
|
||||
InitializeComponent();
|
||||
this.FormClosed += fLineCode_FormClosed;
|
||||
}
|
||||
|
||||
void fLineCode_FormClosed(object sender, FormClosedEventArgs e)
|
||||
{
|
||||
var form = this as Form;
|
||||
FCOMMON.Util.SetFormStatus(ref form, this.Name, false);
|
||||
}
|
||||
|
||||
private void lineCodeBindingNavigatorSaveItem_Click(object sender, EventArgs e)
|
||||
@@ -26,10 +33,17 @@ namespace Project._Management
|
||||
|
||||
private void fLineCode_Load(object sender, EventArgs e)
|
||||
{
|
||||
// TODO: 이 코드는 데이터를 'dsMSSQL.LineCode' 테이블에 로드합니다. 필요한 경우 이 코드를 이동하거나 제거할 수 있습니다.
|
||||
var form = this as Form;
|
||||
FCOMMON.Util.SetFormStatus(ref form, this.Name, true);
|
||||
this.Show();
|
||||
Application.DoEvents();
|
||||
|
||||
|
||||
this.ta.Fill(this.dsMSSQL.LineCode);
|
||||
this.dsMSSQL.LineCode.TableNewRow += LineCode_TableNewRow;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
void LineCode_TableNewRow(object sender, DataTableNewRowEventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user