black-goat-me
2023-04-24 a759f9bf2a09b7c4ba10b8afa4e421a8abf511b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
 
namespace WorkM
{
    public partial class Sc_ShowProQty : Form
    {
 
        public SQLHelper.ClsCN oCn = new SQLHelper.ClsCN();
        public string HProcExchBillNo;
        public Sc_ShowProQty()
        {
            InitializeComponent();
      
 
        }
        public Sc_ShowProQty(string HProcExchBillNo)
        {
            InitializeComponent();
            init( HProcExchBillNo);
 
        }
        public void init(string HProcExchBillNo)
        {
            DataSet ds;
            
            ds = oCn.RunProcReturn(" exec p_h_ShowOverRE '" + HProcExchBillNo + "' ", "p_h_ShowOverRE");
            grdShow.DataSource = ds.Tables[0];
        }  
    }
}