15 lines
281 B
VB.net
15 lines
281 B
VB.net
|
|
Imports System.Windows.Forms
|
|||
|
|
|
|||
|
|
Public Class FrmSettings
|
|||
|
|
|
|||
|
|
|
|||
|
|
Public Sub ShowForm(parentControl As Control)
|
|||
|
|
FormBorderStyle = FormBorderStyle.None
|
|||
|
|
TopLevel = False
|
|||
|
|
Dock = DockStyle.Fill
|
|||
|
|
Parent = parentControl
|
|||
|
|
|
|||
|
|
Show()
|
|||
|
|
End Sub
|
|||
|
|
End Class
|