Private Sub btn_next_begining_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_next_begining.Click
        Dim rulesforclass As privileges
        rulesforclass.Show()
    End Sub

Please help how Can I call privileges.vb from the btn_next_begining???????

How can I put variable from the numericUpdown to tablelayoutPanel whereas Declaration processes are:

Private Sub NumericUpDown1_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles nud_count.ValueChanged
Dim numUp As Integer = nud_count.Value
End Sub


Public Class addClasses
Private Sub tlp_1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles tlp_1.MouseClick
Dim i As Integer = mainform.nud_count.Value
Dim tlp_row As Integer = tlp_1.RowCount
Dim tlp_col As UInteger = tlp_1.ColumnCount

tlp_col = i

End Sub
End Class
then I make variable and connected it to the tablelayoutPanel, but it was not illustrate output to the screen! How to do the tablelayoutPanel to show the variable into the column side of the tablelayoutPanel?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.