using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace FCM0000 { public partial class fCustoms : FCOMMON.fBase { public fCustoms() { InitializeComponent(); } private void __Load(object sender, EventArgs e) { refreshData(); } void refreshData() { // TODO: 이 코드는 데이터를 'dsMSSQL.Customs' 테이블에 로드합니다. 필요한 경우 이 코드를 이동하거나 제거할 수 있습니다. this.ta.Fill(this.dsMSSQL.Customs); } private void customsBindingNavigatorSaveItem_Click(object sender, EventArgs e) { this.Validate(); this.bs.EndEdit(); this.tam.UpdateAll(this.dsMSSQL); } private void toolStripButton1_Click(object sender, EventArgs e) { refreshData(); } private void autoResizeColummsToolStripMenuItem_Click(object sender, EventArgs e) { this.dv1.AutoResizeColumns(); } } }