This commit is contained in:
chikyun.kim
2018-09-28 10:24:41 +09:00
parent 78f316bc3a
commit 128c089816
377 changed files with 23606 additions and 2107 deletions

View File

@@ -0,0 +1,38 @@
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 fMailform : FCOMMON.fBase
{
public fMailform()
{
InitializeComponent();
}
private void fMailform_Load(object sender, EventArgs e)
{
try
{
ta.Fill(this.dsMSSQL.MailForm);
}catch (Exception ex)
{
FCOMMON.Util.MsgE(ex.Message);
}
}
private void mailFormBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.bs.EndEdit();
this.tam.UpdateAll(this.dsMSSQL);
}
}
}