public OpnameList(PVCOpnameReport parent, int pvcID, string pvcName, int input, decimal pvcPerPack, string pvcTypeUnit)
        {
            this.pvcID       = pvcID;
            this.parent      = parent;
            this.pvcName     = pvcName;
            this.input       = input;
            this.pvcPerPack  = pvcPerPack;
            this.pvcTypeUnit = pvcTypeUnit;

            InitializeComponent();
        }
예제 #2
0
 public void opnameSetNull()
 {
     opname = null;
 }
예제 #3
0
 private void btnOpnameAkhir_Click(object sender, EventArgs e)
 {
     opname = new PVCOpnameReport(main, this, awal, akhir);
     opname.Show();
     opname.BringToFront();
 }