不同的容器里实现 RadioButton的单选

请教一个各位牛人一个问题,如图:    (问题解决,见后面的解决方案~~)


怎么在不同的winform容器(GroupBox)里实现 RadioButton (如图中两个“详细照会”)的单选,请各位牛人给出实现的思路,不甚感谢。

GroupBox() 送り状情報1,送り状情報2......是动态生成的。

以下是具体的生成代码:

 

    Private Sub InitProcess()

        
If (m_DataVale Is NothingThen
            
Me.Visible = False
            
Return
        
End If
        
If m_DataVale.Rows.Count < 1 Then
            
Me.Visible = False
            
Return
        
End If

        
Dim intDataCount As Integer = m_DataVale.Rows.Count

        
Dim intGroupX As Integer = 8
        
Dim intGroupY As Integer = 5
        
Dim intGroupHeight As Integer = 170
        
Dim intGroupWidth As Integer = GroupBox1.Width - 17
        
Dim group(intDataCount) As System.Windows.Forms.GroupBox

        
'詳細照会
        Dim RB_INFO(intDataCount) As System.Windows.Forms.RadioButton
        
'送付先変更
        Dim LB_ARR_FIXED_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_ARR_FIXED(intDataCount) As System.Windows.Forms.Label
        
'問番
        Dim LB_CO_DELIVERY_NO_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_CO_DELIVERY_NO(intDataCount) As System.Windows.Forms.Label
        
'発送ロット
        Dim LB_HASSOU_LOT_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_HASSOU_LOT(intDataCount) As System.Windows.Forms.Label
        
'発送管理No
        Dim LB_LOT_SEQ_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_LOT_SEQ(intDataCount) As System.Windows.Forms.Label
        
'発送日
        Dim LB_SENDDATE_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_SENDDATE(intDataCount) As System.Windows.Forms.Label
        
'送り状定義
        Dim LB_LABEL_DEF_NM_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_LABEL_DEF_NM(intDataCount) As System.Windows.Forms.Label
        
'最新配送状況
        Dim LB_STATS_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_STATS(intDataCount) As System.Windows.Forms.Label
        
'メモ()
        Dim LB_TB_MEMO(intDataCount) As System.Windows.Forms.Label
        
Dim TB_MEMO(intDataCount) As System.Windows.Forms.TextBox

        
Dim i As Integer
        
For i = 0 To intDataCount - 1
            
'送り状情報 連番
            group(i) = New System.Windows.Forms.GroupBox
            group(i).Text 
= "送り状情報" & i + 1
            group(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            group(i).Height 
= intGroupHeight
            group(i).Width 
= intGroupWidth
            group(i).Location 
= New System.Drawing.Point(intGroupX, (1 + i) * intGroupY + intGroupHeight * i)

            
'詳細照会
            RB_INFO(i) = New System.Windows.Forms.RadioButton
            RB_INFO(i).Text 
= "詳細照会"
            RB_INFO(i).Location 
= New System.Drawing.Point(1015)
            RB_INFO(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            
'送付先変更
            LB_ARR_FIXED_TITLE(i) = New System.Windows.Forms.Label
            LB_ARR_FIXED_TITLE(i).Text 
= "送付先変更"
            LB_ARR_FIXED_TITLE(i).Location 
= New System.Drawing.Point(1040)
            LB_ARR_FIXED_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_ARR_FIXED_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_ARR_FIXED_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_ARR_FIXED_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_ARR_FIXED_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_ARR_FIXED(i) 
= New System.Windows.Forms.Label
            LB_ARR_FIXED(i).Text 
= ""
            LB_ARR_FIXED(i).Location 
= New System.Drawing.Point(11240)
            LB_ARR_FIXED(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_ARR_FIXED(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_ARR_FIXED(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_ARR_FIXED(i).Size 
= New System.Drawing.Size(3023)
            LB_ARR_FIXED(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_ARR_FIXED(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("送付先変更"))

            
'問番
            LB_CO_DELIVERY_NO_TITLE(i) = New System.Windows.Forms.Label
            LB_CO_DELIVERY_NO_TITLE(i).Text 
= "問番"
            LB_CO_DELIVERY_NO_TITLE(i).Location 
= New System.Drawing.Point(1064)
            LB_CO_DELIVERY_NO_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_CO_DELIVERY_NO_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_CO_DELIVERY_NO_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_CO_DELIVERY_NO_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_CO_DELIVERY_NO_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_CO_DELIVERY_NO(i) 
= New System.Windows.Forms.Label
            LB_CO_DELIVERY_NO(i).Location 
= New System.Drawing.Point(11264)
            LB_CO_DELIVERY_NO(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_CO_DELIVERY_NO(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_CO_DELIVERY_NO(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_CO_DELIVERY_NO(i).Size 
= New System.Drawing.Size(12823)
            LB_CO_DELIVERY_NO(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_CO_DELIVERY_NO(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("問番"))
            
'発送ロット
            LB_HASSOU_LOT_TITLE(i) = New System.Windows.Forms.Label
            LB_HASSOU_LOT_TITLE(i).Text 
= "発送ロット"
            LB_HASSOU_LOT_TITLE(i).Location 
= New System.Drawing.Point(24864)
            LB_HASSOU_LOT_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_HASSOU_LOT_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_HASSOU_LOT_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_HASSOU_LOT_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_HASSOU_LOT_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_HASSOU_LOT(i) 
= New System.Windows.Forms.Label
            LB_HASSOU_LOT(i).Location 
= New System.Drawing.Point(35064)
            LB_HASSOU_LOT(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_HASSOU_LOT(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_HASSOU_LOT(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_HASSOU_LOT(i).Size 
= New System.Drawing.Size(10823)
            LB_HASSOU_LOT(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_HASSOU_LOT(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("発送ロット"))
            
'発送管理No
            LB_LOT_SEQ_TITLE(i) = New System.Windows.Forms.Label
            LB_LOT_SEQ_TITLE(i).Text 
= "発送管理No"
            LB_LOT_SEQ_TITLE(i).Location 
= New System.Drawing.Point(46464)
            LB_LOT_SEQ_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_LOT_SEQ_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_LOT_SEQ_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_LOT_SEQ_TITLE(i).Size 
= New System.Drawing.Size(11123)
            LB_LOT_SEQ_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_LOT_SEQ(i) 
= New System.Windows.Forms.Label
            LB_LOT_SEQ(i).Text 
= "H2232+5645"
            LB_LOT_SEQ(i).Location 
= New System.Drawing.Point(57564)
            LB_LOT_SEQ(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_LOT_SEQ(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_LOT_SEQ(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_LOT_SEQ(i).Size 
= New System.Drawing.Size(12823)
            LB_LOT_SEQ(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_LOT_SEQ(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("発送管理No"))
            
'発送日
            LB_SENDDATE_TITLE(i) = New System.Windows.Forms.Label
            LB_SENDDATE_TITLE(i).Text 
= "発送日"
            LB_SENDDATE_TITLE(i).Location 
= New System.Drawing.Point(70864)
            LB_SENDDATE_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_SENDDATE_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_SENDDATE_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_SENDDATE_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_SENDDATE_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_SENDDATE(i) 
= New System.Windows.Forms.Label
            LB_SENDDATE(i).Location 
= New System.Drawing.Point(81064)
            LB_SENDDATE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_SENDDATE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_SENDDATE(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_SENDDATE(i).Size 
= New System.Drawing.Size(10023)
            LB_SENDDATE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_SENDDATE(i).Text 
= mdlFunction.FormatDataToYMD(mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("発送日")))
            
'送り状定義
            LB_LABEL_DEF_NM_TITLE(i) = New System.Windows.Forms.Label
            LB_LABEL_DEF_NM_TITLE(i).Text 
= "送り状定義"
            LB_LABEL_DEF_NM_TITLE(i).Location 
= New System.Drawing.Point(1088)
            LB_LABEL_DEF_NM_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_LABEL_DEF_NM_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_LABEL_DEF_NM_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_LABEL_DEF_NM_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_LABEL_DEF_NM_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_LABEL_DEF_NM(i) 
= New System.Windows.Forms.Label
            LB_LABEL_DEF_NM(i).Location 
= New System.Drawing.Point(11288)
            LB_LABEL_DEF_NM(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_LABEL_DEF_NM(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_LABEL_DEF_NM(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_LABEL_DEF_NM(i).Size 
= New System.Drawing.Size(34623)
            LB_LABEL_DEF_NM(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_LABEL_DEF_NM(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("送り状定義"))
            
'最新配送状況 
            LB_STATS_TITLE(i) = New System.Windows.Forms.Label
            LB_STATS_TITLE(i).Text 
= "最新配送状況"
            LB_STATS_TITLE(i).Location 
= New System.Drawing.Point(46488)
            LB_STATS_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_STATS_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_STATS_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_STATS_TITLE(i).Size 
= New System.Drawing.Size(11123)
            LB_STATS_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_STATS(i) 
= New System.Windows.Forms.Label
            LB_STATS(i).Location 
= New System.Drawing.Point(57588)
            LB_STATS(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_STATS(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_STATS(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_STATS(i).Size 
= New System.Drawing.Size(12823)
            LB_STATS(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_STATS(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("最新配送状況"))
            
'メモ
            LB_TB_MEMO(i) = New System.Windows.Forms.Label
            LB_TB_MEMO(i).Text 
= "メモ"
            LB_TB_MEMO(i).Location 
= New System.Drawing.Point(10112)
            LB_TB_MEMO(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_TB_MEMO(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_TB_MEMO(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_TB_MEMO(i).Size 
= New System.Drawing.Size(10223)
            LB_TB_MEMO(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            TB_MEMO(i) 
= New System.Windows.Forms.TextBox
            TB_MEMO(i).Location 
= New System.Drawing.Point(112112)
            TB_MEMO(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            TB_MEMO(i).TextAlign 
= System.Windows.Forms.HorizontalAlignment.Left
            TB_MEMO(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            TB_MEMO(i).Size 
= New System.Drawing.Size(80046)
            TB_MEMO(i).Multiline 
= True
            TB_MEMO(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            TB_MEMO(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("メモ"))

            group(i).Controls.Add(RB_INFO(i))
            group(i).Controls.Add(LB_ARR_FIXED_TITLE(i))
            group(i).Controls.Add(LB_ARR_FIXED(i))
            group(i).Controls.Add(LB_CO_DELIVERY_NO_TITLE(i))
            group(i).Controls.Add(LB_CO_DELIVERY_NO(i))
            group(i).Controls.Add(LB_HASSOU_LOT_TITLE(i))
            group(i).Controls.Add(LB_HASSOU_LOT(i))
            group(i).Controls.Add(LB_LOT_SEQ_TITLE(i))
            group(i).Controls.Add(LB_LOT_SEQ(i))
            group(i).Controls.Add(LB_SENDDATE_TITLE(i))
            group(i).Controls.Add(LB_SENDDATE(i))
            group(i).Controls.Add(LB_LABEL_DEF_NM_TITLE(i))
            group(i).Controls.Add(LB_LABEL_DEF_NM(i))
            group(i).Controls.Add(LB_STATS_TITLE(i))
            group(i).Controls.Add(LB_STATS(i))
            group(i).Controls.Add(LB_TB_MEMO(i))
            group(i).Controls.Add(TB_MEMO(i))
            GroupBox1.Controls.Add(group(i))
        
Next

        
If (1 + i) * intGroupY + intGroupHeight * i > Me.Height Then
            GroupBox1.Height 
= (1 + i) * intGroupY + intGroupHeight * i
        
Else
            GroupBox1.Height 
= Me.Height
        
End If
        m_ArrRB_INFO 
= RB_INFO
        m_ArrLB_ARR_FIXED 
= LB_ARR_FIXED
        m_ArrLB_CO_DELIVERY_NO 
= LB_CO_DELIVERY_NO
        m_ArrLB_HASSOU_LOT 
= LB_HASSOU_LOT
        m_ArrLB_SENDDATE 
= LB_SENDDATE
        m_ArrLB_LABEL_DEF_NM 
= LB_LABEL_DEF_NM
        m_ArrLB_STATS 
= LB_STATS
        m_ArrTB_MEMO 
= TB_MEMO
    
End Sub

 

也希望DuDu 能原谅我这种提问的方式,不要删贴啊~~!谢谢!

 

解决后的代码:

Imports BusinessSSP
Public Class GroupRepeate
    
Inherits System.Windows.Forms.UserControl
    
Dim m_DataVale As DataTable

    
Public Property DataVale() As DataTable
        
Get
            
Return m_DataVale
        
End Get
        
Set(ByVal Value As DataTable)
            m_DataVale 
= Value
        
End Set
    
End Property

    
Public Shadows Event GotFocus(ByVal sender As ObjectByVal e As System.EventArgs)

    
'Dim intDataCount As Integer
    'Public Property DataCount() As Integer
    '    Get
    '        Return intDataCount
    '    End Get
    '    Set(ByVal Value As Integer)
    '        intDataCount = Value
    '    End Set
    'End Property

    
'詳細照会
    Private m_ArrRB_INFO() As System.Windows.Forms.RadioButton
    
Public Property ArrRB_INFO() As System.Windows.Forms.RadioButton()
        
Get
            
Return m_ArrRB_INFO
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.RadioButton)
            m_ArrRB_INFO 
= Value
        
End Set
    
End Property
    
'送付先変更
    Private m_ArrLB_ARR_FIXED() As System.Windows.Forms.Label
    
Public Property ArrLB_ARR_FIXED() As System.Windows.Forms.Label()
        
Get
            
Return m_ArrLB_ARR_FIXED
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.Label)
            m_ArrLB_ARR_FIXED 
= Value
        
End Set
    
End Property
    
'問番
    Private m_ArrLB_CO_DELIVERY_NO() As System.Windows.Forms.Label
    
Public Property ArrLB_CO_DELIVERY_NO() As System.Windows.Forms.Label()
        
Get
            
Return m_ArrLB_CO_DELIVERY_NO
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.Label)
            m_ArrLB_CO_DELIVERY_NO 
= Value
        
End Set
    
End Property
    
'発送ロット
    Private m_ArrLB_HASSOU_LOT() As System.Windows.Forms.Label
    
Public Property ArrLB_HASSOU_LOT() As System.Windows.Forms.Label()
        
Get
            
Return m_ArrLB_HASSOU_LOT
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.Label)
            m_ArrLB_HASSOU_LOT 
= Value
        
End Set
    
End Property
    
'発送管理No
    Private m_ArrLB_LOT_SEQ() As System.Windows.Forms.Label
    
Public Property ArrLB_LOT_SEQ() As System.Windows.Forms.Label()
        
Get
            
Return m_ArrLB_LOT_SEQ
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.Label)
            m_ArrLB_LOT_SEQ 
= Value
        
End Set
    
End Property
    
'発送日
    Private m_ArrLB_SENDDATE() As System.Windows.Forms.Label
    
Public Property ArrLB_SENDDATE() As System.Windows.Forms.Label()
        
Get
            
Return m_ArrLB_SENDDATE
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.Label)
            m_ArrLB_SENDDATE 
= Value
        
End Set
    
End Property
    
'送り状定義
    Private m_ArrLB_LABEL_DEF_NM() As System.Windows.Forms.Label
    
Public Property ArrLB_LABEL_DEF_NM() As System.Windows.Forms.Label()
        
Get
            
Return m_ArrLB_LABEL_DEF_NM
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.Label)
            m_ArrLB_LABEL_DEF_NM 
= Value
        
End Set
    
End Property

    
'最新配送状況
    Private m_ArrLB_STATS() As System.Windows.Forms.Label
    
Friend WithEvents GroupBox1 As System.Windows.Forms.Panel
    
Public Property ArrLB_STATS() As System.Windows.Forms.Label()
        
Get
            
Return m_ArrLB_STATS
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.Label)
            m_ArrLB_STATS 
= Value
        
End Set
    
End Property
    
'メモ()
    Private m_ArrTB_MEMO() As System.Windows.Forms.TextBox
    
Public Property ArrTB_MEMO() As System.Windows.Forms.TextBox()
        
Get
            
Return m_ArrTB_MEMO
        
End Get
        
Set(ByVal Value() As System.Windows.Forms.TextBox)
            m_ArrTB_MEMO 
= Value
        
End Set
    
End Property


#Region " Windows フォーム デザイナで生成されたコード "

    
Public Sub New()
        
MyBase.New()

        
' この呼び出しは Windows フォーム デザイナで必要です。
        InitializeComponent()

        
' InitializeComponent() 呼び出しの後に初期化を追加します。

    
End Sub

    
'UserControl はコンポーネント一覧を消去するために dispose をオーバーライドします。
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        
If disposing Then
            
If Not (components Is NothingThen
                components.Dispose()
            
End If
        
End If
        
MyBase.Dispose(disposing)
    
End Sub

    
' Windows フォーム デザイナで必要です。
    Private components As System.ComponentModel.IContainer

    
' メモ : 以下のプロシージャは、Windows フォーム デザイナで必要です。
    'Windows フォーム デザイナを使って変更してください。  
    ' コード エディタを使って変更しないでください。
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        
Me.GroupBox1 = New System.Windows.Forms.Panel
        
Me.SuspendLayout()
        
'
        'GroupBox1
        '
        Me.GroupBox1.Location = New System.Drawing.Point(00)
        
Me.GroupBox1.Name = "GroupBox1"
        
Me.GroupBox1.Size = New System.Drawing.Size(956355)
        
Me.GroupBox1.TabIndex = 0
        
'
        'GroupRepeate
        '
        Me.AutoScroll = True
        
Me.Controls.Add(Me.GroupBox1)
        
Me.Name = "GroupRepeate"
        
Me.Size = New System.Drawing.Size(956355)
        
Me.ResumeLayout(False)

    
End Sub

#End Region

    
Private Sub GroupRepeate_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles MyBase.Load
        GroupBox1.Width 
= Me.Width - 17
        InitProcess()
    
End Sub


    
'************************************************************
    '関数名         : GroupRepeate.InitProcess
    '機能説明       : 送り状情報 連番                
    '入力値         : 無し
    '出力値         : 無し
    '戻り値         : 
    'その他         : 
    '作成者        : 童斌
    '作成日付       : 2009/02/25
    '***********************************************************
    Private Sub InitProcess()

        
If (m_DataVale Is NothingThen
            
Me.Visible = False
            
Return
        
End If
        
If m_DataVale.Rows.Count < 1 Then
            
Me.Visible = False
            
Return
        
End If

        
Dim intDataCount As Integer = m_DataVale.Rows.Count

        
Dim intGroupX As Integer = 8
        
Dim intGroupY As Integer = 5
        
Dim intGroupHeight As Integer = 170
        
Dim intGroupWidth As Integer = GroupBox1.Width - 17
        
Dim group(intDataCount) As System.Windows.Forms.GroupBox

        
'詳細照会
        Dim RB_INFO(intDataCount) As System.Windows.Forms.RadioButton

        
Dim intGroupRBX As Integer = 15
        Dim intGroupRBY As Integer = 15

        
'送付先変更
        Dim LB_ARR_FIXED_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_ARR_FIXED(intDataCount) As System.Windows.Forms.Label
        
'問番
        Dim LB_CO_DELIVERY_NO_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_CO_DELIVERY_NO(intDataCount) As System.Windows.Forms.Label
        
'発送ロット
        Dim LB_HASSOU_LOT_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_HASSOU_LOT(intDataCount) As System.Windows.Forms.Label
        
'発送管理No
        Dim LB_LOT_SEQ_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_LOT_SEQ(intDataCount) As System.Windows.Forms.Label
        
'発送日
        Dim LB_SENDDATE_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_SENDDATE(intDataCount) As System.Windows.Forms.Label
        
'送り状定義
        Dim LB_LABEL_DEF_NM_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_LABEL_DEF_NM(intDataCount) As System.Windows.Forms.Label
        
'最新配送状況
        Dim LB_STATS_TITLE(intDataCount) As System.Windows.Forms.Label
        
Dim LB_STATS(intDataCount) As System.Windows.Forms.Label
        
'メモ()
        Dim LB_TB_MEMO(intDataCount) As System.Windows.Forms.Label
        
Dim TB_MEMO(intDataCount) As System.Windows.Forms.TextBox

        
Dim i As Integer
        
For i = 0 To intDataCount - 1
            
'送り状情報 連番
            group(i) = New System.Windows.Forms.GroupBox
            group(i).Text 
= "送り状情報" & i + 1
            group(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            group(i).Height 
= intGroupHeight
            group(i).Width 
= intGroupWidth
            group(i).Location 
= New System.Drawing.Point(intGroupX, (1 + i) * intGroupY + intGroupHeight * i)

            
'詳細照会
            RB_INFO(i) = New System.Windows.Forms.RadioButton
            RB_INFO(i).Text 
= "詳細照会"
           
 RB_INFO(i).Location = New System.Drawing.Point(intGroupRBX, group(i).Location.Y + intGroupRBY)
            RB_INFO(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            RB_INFO(i).Name 
= "RB" & i
            
'送付先変更
            LB_ARR_FIXED_TITLE(i) = New System.Windows.Forms.Label
            LB_ARR_FIXED_TITLE(i).Text 
= "送付先変更"
            LB_ARR_FIXED_TITLE(i).Location 
= New System.Drawing.Point(1040)
            LB_ARR_FIXED_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_ARR_FIXED_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_ARR_FIXED_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_ARR_FIXED_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_ARR_FIXED_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_ARR_FIXED(i) 
= New System.Windows.Forms.Label
            LB_ARR_FIXED(i).Text 
= ""
            LB_ARR_FIXED(i).Location 
= New System.Drawing.Point(11240)
            LB_ARR_FIXED(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_ARR_FIXED(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_ARR_FIXED(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_ARR_FIXED(i).Size 
= New System.Drawing.Size(3023)
            LB_ARR_FIXED(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_ARR_FIXED(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("送付先変更"))

            
'問番
            LB_CO_DELIVERY_NO_TITLE(i) = New System.Windows.Forms.Label
            LB_CO_DELIVERY_NO_TITLE(i).Text 
= "問番"
            LB_CO_DELIVERY_NO_TITLE(i).Location 
= New System.Drawing.Point(1064)
            LB_CO_DELIVERY_NO_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_CO_DELIVERY_NO_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_CO_DELIVERY_NO_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_CO_DELIVERY_NO_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_CO_DELIVERY_NO_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_CO_DELIVERY_NO(i) 
= New System.Windows.Forms.Label
            LB_CO_DELIVERY_NO(i).Location 
= New System.Drawing.Point(11264)
            LB_CO_DELIVERY_NO(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_CO_DELIVERY_NO(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_CO_DELIVERY_NO(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_CO_DELIVERY_NO(i).Size 
= New System.Drawing.Size(12823)
            LB_CO_DELIVERY_NO(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_CO_DELIVERY_NO(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("問番"))
            
'発送ロット
            LB_HASSOU_LOT_TITLE(i) = New System.Windows.Forms.Label
            LB_HASSOU_LOT_TITLE(i).Text 
= "発送ロット"
            LB_HASSOU_LOT_TITLE(i).Location 
= New System.Drawing.Point(24864)
            LB_HASSOU_LOT_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_HASSOU_LOT_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_HASSOU_LOT_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_HASSOU_LOT_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_HASSOU_LOT_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_HASSOU_LOT(i) 
= New System.Windows.Forms.Label
            LB_HASSOU_LOT(i).Location 
= New System.Drawing.Point(35064)
            LB_HASSOU_LOT(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_HASSOU_LOT(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_HASSOU_LOT(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_HASSOU_LOT(i).Size 
= New System.Drawing.Size(10823)
            LB_HASSOU_LOT(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_HASSOU_LOT(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("発送ロット"))
            
'発送管理No
            LB_LOT_SEQ_TITLE(i) = New System.Windows.Forms.Label
            LB_LOT_SEQ_TITLE(i).Text 
= "発送管理No"
            LB_LOT_SEQ_TITLE(i).Location 
= New System.Drawing.Point(46464)
            LB_LOT_SEQ_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_LOT_SEQ_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_LOT_SEQ_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_LOT_SEQ_TITLE(i).Size 
= New System.Drawing.Size(11123)
            LB_LOT_SEQ_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_LOT_SEQ(i) 
= New System.Windows.Forms.Label
            LB_LOT_SEQ(i).Text 
= "H2232+5645"
            LB_LOT_SEQ(i).Location 
= New System.Drawing.Point(57564)
            LB_LOT_SEQ(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_LOT_SEQ(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_LOT_SEQ(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_LOT_SEQ(i).Size 
= New System.Drawing.Size(12823)
            LB_LOT_SEQ(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_LOT_SEQ(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("発送管理No"))
            
'発送日
            LB_SENDDATE_TITLE(i) = New System.Windows.Forms.Label
            LB_SENDDATE_TITLE(i).Text 
= "発送日"
            LB_SENDDATE_TITLE(i).Location 
= New System.Drawing.Point(70864)
            LB_SENDDATE_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_SENDDATE_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_SENDDATE_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_SENDDATE_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_SENDDATE_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_SENDDATE(i) 
= New System.Windows.Forms.Label
            LB_SENDDATE(i).Location 
= New System.Drawing.Point(81064)
            LB_SENDDATE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_SENDDATE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_SENDDATE(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_SENDDATE(i).Size 
= New System.Drawing.Size(10023)
            LB_SENDDATE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_SENDDATE(i).Text 
= mdlFunction.FormatDataToYMD(mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("発送日")))
            
'送り状定義
            LB_LABEL_DEF_NM_TITLE(i) = New System.Windows.Forms.Label
            LB_LABEL_DEF_NM_TITLE(i).Text 
= "送り状定義"
            LB_LABEL_DEF_NM_TITLE(i).Location 
= New System.Drawing.Point(1088)
            LB_LABEL_DEF_NM_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_LABEL_DEF_NM_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_LABEL_DEF_NM_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_LABEL_DEF_NM_TITLE(i).Size 
= New System.Drawing.Size(10223)
            LB_LABEL_DEF_NM_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_LABEL_DEF_NM(i) 
= New System.Windows.Forms.Label
            LB_LABEL_DEF_NM(i).Location 
= New System.Drawing.Point(11288)
            LB_LABEL_DEF_NM(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_LABEL_DEF_NM(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_LABEL_DEF_NM(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_LABEL_DEF_NM(i).Size 
= New System.Drawing.Size(34623)
            LB_LABEL_DEF_NM(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_LABEL_DEF_NM(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("送り状定義"))
            
'最新配送状況 
            LB_STATS_TITLE(i) = New System.Windows.Forms.Label
            LB_STATS_TITLE(i).Text 
= "最新配送状況"
            LB_STATS_TITLE(i).Location 
= New System.Drawing.Point(46488)
            LB_STATS_TITLE(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_STATS_TITLE(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_STATS_TITLE(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_STATS_TITLE(i).Size 
= New System.Drawing.Size(11123)
            LB_STATS_TITLE(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            LB_STATS(i) 
= New System.Windows.Forms.Label
            LB_STATS(i).Location 
= New System.Drawing.Point(57588)
            LB_STATS(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_STATS(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleLeft
            LB_STATS(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            LB_STATS(i).Size 
= New System.Drawing.Size(12823)
            LB_STATS(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            LB_STATS(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("最新配送状況"))
            
'メモ
            LB_TB_MEMO(i) = New System.Windows.Forms.Label
            LB_TB_MEMO(i).Text 
= "メモ"
            LB_TB_MEMO(i).Location 
= New System.Drawing.Point(10112)
            LB_TB_MEMO(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            LB_TB_MEMO(i).TextAlign 
= System.Drawing.ContentAlignment.MiddleCenter
            LB_TB_MEMO(i).BackColor 
= System.Drawing.SystemColors.Control
            LB_TB_MEMO(i).Size 
= New System.Drawing.Size(10223)
            LB_TB_MEMO(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))

            TB_MEMO(i) 
= New System.Windows.Forms.TextBox
            TB_MEMO(i).Location 
= New System.Drawing.Point(112112)
            TB_MEMO(i).BorderStyle 
= System.Windows.Forms.BorderStyle.Fixed3D
            TB_MEMO(i).TextAlign 
= System.Windows.Forms.HorizontalAlignment.Left
            TB_MEMO(i).BackColor 
= System.Drawing.Color.FromArgb(CType(CType(255Byte), Integer), CType(CType(255Byte), Integer), CType(CType(192Byte), Integer))
            TB_MEMO(i).Size 
= New System.Drawing.Size(80046)
            TB_MEMO(i).Multiline 
= True
            TB_MEMO(i).Font 
= New System.Drawing.Font("MS ゴシック"11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(128Byte))
            TB_MEMO(i).Text 
= mdlFunction.DBNULLToEmpty(m_DataVale.Rows(i)("メモ"))

           
 'group(i).Controls.Add(RB_INFO(i))
            group(i).Controls.Add(LB_ARR_FIXED_TITLE(i))
            group(i).Controls.Add(LB_ARR_FIXED(i))
            group(i).Controls.Add(LB_CO_DELIVERY_NO_TITLE(i))
            group(i).Controls.Add(LB_CO_DELIVERY_NO(i))
            group(i).Controls.Add(LB_HASSOU_LOT_TITLE(i))
            group(i).Controls.Add(LB_HASSOU_LOT(i))
            group(i).Controls.Add(LB_LOT_SEQ_TITLE(i))
            group(i).Controls.Add(LB_LOT_SEQ(i))
            group(i).Controls.Add(LB_SENDDATE_TITLE(i))
            group(i).Controls.Add(LB_SENDDATE(i))
            group(i).Controls.Add(LB_LABEL_DEF_NM_TITLE(i))
            group(i).Controls.Add(LB_LABEL_DEF_NM(i))
            group(i).Controls.Add(LB_STATS_TITLE(i))
            group(i).Controls.Add(LB_STATS(i))
            group(i).Controls.Add(LB_TB_MEMO(i))
            group(i).Controls.Add(TB_MEMO(i))
            GroupBox1.Controls.Add(RB_INFO(i))
            GroupBox1.Controls.Add(group(i))
        
Next

        
If (1 + i) * intGroupY + intGroupHeight * i > Me.Height Then
            GroupBox1.Height 
= (1 + i) * intGroupY + intGroupHeight * i
        
Else
            GroupBox1.Height 
= Me.Height
        
End If
        m_ArrRB_INFO 
= RB_INFO
        m_ArrLB_ARR_FIXED 
= LB_ARR_FIXED
        m_ArrLB_CO_DELIVERY_NO 
= LB_CO_DELIVERY_NO
        m_ArrLB_HASSOU_LOT 
= LB_HASSOU_LOT
        m_ArrLB_SENDDATE 
= LB_SENDDATE
        m_ArrLB_LABEL_DEF_NM 
= LB_LABEL_DEF_NM
        m_ArrLB_STATS 
= LB_STATS
        m_ArrTB_MEMO 
= TB_MEMO
        m_ArrLB_LOT_SEQ 
= LB_LOT_SEQ
    
End Sub

End Class

 

 调用该控件的代码:

        Dim dtTable As New DataTable
        ..
        
Dim GroupRepeate1 As New UserControls.GroupRepeate
        GroupRepeate1.ArrLB_LOT_SEQ 
= Nothing
        GroupRepeate1.AutoScroll 
= True
        GroupRepeate1.DataVale 
= Nothing
        GroupRepeate1.Location 
= New System.Drawing.Point(9302)
        GroupRepeate1.Name 
= "GroupRepeate1"
        GroupRepeate1.Size 
= New System.Drawing.Size(956351)
        GroupRepeate1.DataVale 
= dtTable
        
Me.Controls.Add(GroupRepeate1)

 

 

 

 

转载于:https://www.cnblogs.com/tonybinlj/archive/2009/02/26/1398487.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/276626.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

html调用接口_搜狗ocr识别接口

详细情况在代码中说明&#xff0c;如果不想自己使用TensorFlow&#xff0c;可使用下面接口这是要识别的图片&#xff1a;最终识别的结果&#xff1a;This is a lot of 12 point text to test theocr code and see if it works on all typesof file format.The quick brown dog …

CSAcademy Or Problem

传送门 一口大锅&#xff08; 斜率的确是有单调性 并且可以进行凸优化的 明明是证出来的 为什么自己就不相信呢&#xff08; 我们发现对于当前点作为扩展的右端点 那么他前面至多有20个点会影响到这一段区间的或值 我们可以预处理记录出来这些节点的位置 很明显 答案随着右端点…

模块定义文件导出类_浓缩的就是精华——ES6模块精炼讲解

概述在 ES6 前&#xff0c; 实现模块化使用的是 RequireJS 或者 seaJS(分别是基于 AMD 规范的模块化库&#xff0c; 和基于 CMD 规范的模块化库)。ES6 引入了模块化&#xff0c;其设计思想是在编译时就能确定模块的依赖关系&#xff0c;以及输入和输出的变量。ES6 的模块化分为…

Jquery1.6版本后attr的变化

原文链接&#xff1a;http://www.cnblogs.com/-run/archive/2011/11/16/2251569.html Jquery1.6版本后attr的变化 Jquery1.6版本后 attr 改动后的效果&#xff1a; jquery1.6版本&#xff1a; 下文来自www.jquery.com The difference betweenattributes and properties can b…

idea main scanner 输入_哇晒,你竟然不知道idea的 Live Templates

最近公司新近来一名程序猿&#xff0c;在写代码时&#xff0c;美美写到System.out.println的时候&#xff0c;都要一母不差的用键盘敲上去&#xff0c;我问他你之前有用过eclipse中的快捷方法syso吗&#xff1f;于是&#xff0c;我给他介绍了一下&#xff0c;在idea中如何自定义…

偷梁换柱做自己的封装系统

偷梁换柱做自己的封装系统&#xff01;菜鸟一开始都想把自己的信息加到系统里&#xff0c;但封装系统只会一点&#xff01;但我们可“拿来”&#xff0c;我们可以用偷梁换柱的方法来修改别人的系统&#xff0c;本文以雨林的GHOST5.0系统为例。一、准备工作1、当然是下载一个自己…

台电u盘量产工具_简单几步,让U盘起死回生

如今&#xff0c;虽说云存储风靡&#xff0c;但U盘仍存在价值&#xff0c;毕竟在很多场合并不方便上网&#xff0c;即便如此网上存储有时也并不方便&#xff0c;也不安全。与此同时&#xff0c;如果是大文件存储&#xff0c;云盘上传和下载速度非常慢&#xff0c;并不适合海量数…

系统架构师 项目经理 哪个更有前景_中央空调加地暖与五恒系统,哪个更省钱?...

每逢严冬酷暑,人们都会感叹空调是最伟大的发明,并且随着科技发展还在不断进化。从烤火取暖到空调和地暖的供暖,从纸扇电扇的吹风到空调的制冷,人们的需求正在不断提高,于是,为了满足人们的需求&#xff0c;市场上又衍生出了家装五恒系统。 恒温、恒湿、恒氧、恒洁、恒静这…

c++直角坐标系与极坐标系的转换_一篇阅读量高达2百6十多万的关于坐标系和投影的相关知识探讨...

本文转载于CSDN作者rsyaoxin这是一篇关于坐标和投影的「神文」截止目前浏览量已达2698239是相关文章中不可打破的神话...文末有本文作者推荐的两款坐标转换的小工具下载链接回想一下&#xff0c;接触遥感专业也有几个年头了&#xff0c;而现在越来越偏离遥感了&#xff0c;突然…

query string parameters什么意思_public static void main(String[] args) 是什么意思?(转)...

public static void main(String[] args)&#xff0c;是java程序的入口地址&#xff0c;java虚拟机运行程序的时候首先找的就是main方法。一、这里要对main函数讲解一下&#xff0c;参数String[] args是一个字符串数组&#xff0c;接收来自程度序执行时传进来的参数。如果是在控…

b样条曲面绘制 opengl_CAD制图软件中如何利用EXCEL输入坐标绘制曲线?

当在使用浩辰CAD制图软件绘制图纸的过程中&#xff0c;经常要绘制由多个坐标点连接成的曲线时&#xff0c;有什么方便快捷的方法吗&#xff1f;那当然是有的。利用EXCEL表格保存数据并与CAD制图软件巧妙地结合起来&#xff0c;就能很容易地画出曲线。下面给大家详细介绍一下吧&…

阿里云服务器购买该如何选择?阿里云服务器购买步骤流程介绍...

很多第一次购买阿里云服务器&#xff0c;不知该如何选择适合自已的服务器。其实购买阿里云服务器&#xff0c;主要是根据自已网站的流量来决定的。如果网站流量不大&#xff0c;一天只有几百ip&#xff0c;一般选择1核cpu&#xff0c;1G内存&#xff0c;1MB带宽就可以用了&…

python 切片_全面解读Python高级特性切片

大家好&#xff0c;欢迎来到Crossin的编程教室&#xff01;众所周知&#xff0c;我们可以通过索引值(或称下标)来查找序列类型(如字符串、列表、元组…)中的单个元素&#xff0c;那么&#xff0c;如果要获取一个索引区间的元素该怎么办呢&#xff1f;切片(slice)就是一种截取索…

读书笔记(06) - 语法基础 - JavaScript高级程序设计

写在开头 本篇是小红书笔记的第六篇&#xff0c;也许你会奇怪第六篇笔记才写语法基础&#xff0c;笔者是不是穿越了。 答案当然是没有&#xff0c;笔者在此分享自己的阅读心得&#xff0c;不少人翻书都是从头开始&#xff0c;结果永远就只在前几章。对此&#xff0c;笔者换了随…

最近做了一个安装包的安装流程图

最近到做安装包的详细设计。下图是安装包的流程图&#xff0c;如果有什么意见和建议&#xff0c;希望大家给我留言&#xff0c;大家以前讨论 转载于:https://www.cnblogs.com/zengshengping815/archive/2009/04/22/1441319.html

idea tomcat启动成功但是访问方面都是404_IDEA相关配置【集成Tomcatamp;项目部署】...

“知其然知其所以然”始终是Brick我学习新兴技术的出发点&#xff0c;那么咱们来聊聊以下几个问题问题1&#xff1a;在编写完web项目之后&#xff0c;我们怎么才能运行项目呢&#xff1f;--需要部署项目到Tomcat上。问题2&#xff1a;部署项目到Tomcat服务器有多少种方式&#…

用U盘或移动硬盘安装Windows7 (超简单制作Win7安装U盘方法)

转载链接&#xff1a;http://www.iplaysoft.com/win7-usb-dvd-download-tool.html 最近很多人想要安装 Windows7 &#xff0c;下载回去后的ISO镜像文件很多人都是使用 Nero 或 IMGBurn 等工具刻录成光盘来安装的。但实际上&#xff0c;不需刻盘安装Win7的方法还是有不少的。…

安装pywin32时:ImportError: DLL load failed: %1 不是有效的 Win32 应用程序和 DLL load failed...

问题一&#xff1a;ImportError: DLL load failed: %1 不是有效的 Win32 应用程序 import pywinapi报错:ImportError: DLL load failed: %1 不是有效的 Win32 应用程序 原因&#xff1a;与python版本不对应 pypi官网上下载whl文件,我的python 版本为27 下载第一个后安装 下载文…

pointcut注解_Spring AOP使用指南,详细了解AOP相关注解

Spring AOP 指导教程什么是Spring AOP spring aop可以在spring构建的系统中使用面向切面编程。当然Spring Boot也是基于Spring构建的。使用AOP可以实现诸如事务&#xff0c;日志以及安全校验等通过切面统一完成的任务。他可以通过简单的注解方式实现在方法执行前后来执行你自己…

C# 实现FTP上传与下载

向FTP服务器下载文件的简单实例 Codestring filePath "d:\\"; string fileName "lhking.txt"; //文件下载之后要保存的路径和文件名 FtpWebRequest reqFTP; try { FileStream outputStream …