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;
using System.Data.SqlClient;
using MasterStock;
namespace MasterStock
{
public partial class Form2 : Form
{
DB db = new DB();
public int rcd;
public Boolean bl = true;
SqlDataAdapter MasterAdapter = new SqlDataAdapter();
SqlCommand MasterCmd = new SqlCommand();
DataTable MasterDt = new DataTable();
SqlCommandBuilder MasterCbd;
SqlTransaction Sqltran;
DataRow DR;
public int state;
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; using System.Data.SqlClient; using MasterStock; namespace MasterSt