using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Data;
|
using System.Drawing;
|
using System.Text;
|
using System.Windows.Forms;
|
|
namespace HuanXin.ERP
|
{
|
public partial class Pay_PayMentBillListDlg : Form
|
{
|
public Pay_PayMentBillListDlg()
|
{
|
InitializeComponent();
|
}
|
|
public int IsOK;
|
|
|
|
private void cmdOK_Click(object sender, EventArgs e)
|
{
|
IsOK = 1;
|
this.Visible = false;
|
}
|
|
private void cmdCancel_Click(object sender, EventArgs e)
|
{
|
IsOK = 2;
|
this.Visible = false;
|
}
|
private void Pay_PayMentBillListDlg_Activated(object sender, EventArgs e)
|
{
|
IsOK = 0;
|
}
|
|
private void Pay_PayMentBillListDlg_Load(object sender, EventArgs e)
|
{
|
txtHPayRemark.Text = "";
|
}
|
}
|
}
|