You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
67 lines
1.9 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using System.Data;
|
||
|
using System.Drawing;
|
||
|
using System.Text;
|
||
|
using System.Windows.Forms;
|
||
|
using Stone.Common;
|
||
|
|
||
|
namespace Stone.WinModule.BasicData
|
||
|
{
|
||
|
public partial class frmLocationDetail : Stone.WinModule.BasicData.frmBaseMainDetail
|
||
|
{
|
||
|
public frmLocationDetail()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
private void frmColorDetail_Load(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override bool GetData()
|
||
|
{
|
||
|
if (!MyValidator.IsEmpty(this.txtCode, "")) return false;
|
||
|
if (!MyValidator.IsEmpty(this.txtAddress1, "")) return false;
|
||
|
if (!MyValidator.IsEmpty(this.txtAddress2, "")) return false;
|
||
|
if (!MyValidator.IsEmpty(this.txtAddress3, "")) return false;
|
||
|
|
||
|
base.GetData();
|
||
|
drData["Code"] = MyStrings.GetString(this.txtCode.Text.Trim());
|
||
|
drData["Address1"] = MyStrings.GetString(this.txtAddress1.Text.Trim());
|
||
|
drData["Address2"] = MyStrings.GetString(this.txtAddress2.Text.Trim());
|
||
|
drData["Address3"] = MyStrings.GetString(this.txtAddress3.Text.Trim());
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public override bool SetData()
|
||
|
{
|
||
|
|
||
|
if (base.SetData())
|
||
|
{
|
||
|
this.txtCode.Text = drData["Code"].ToString();
|
||
|
this.txtAddress1.Text = drData["Address1"].ToString();
|
||
|
this.txtAddress2.Text = drData["Address2"].ToString();
|
||
|
this.txtAddress3.Text = drData["Address3"].ToString();
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public override void Clear()
|
||
|
{
|
||
|
base.Clear();
|
||
|
this.txtCode.Text = "";
|
||
|
this.txtAddress1.Text = "";
|
||
|
this.txtAddress2.Text = "";
|
||
|
this.txtAddress3.Text = "";
|
||
|
|
||
|
this.txtCode.Focus();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|