How can I have a Checkbox that appears inside a Groupbox but it should not be bound to the Groupbox, so if I set the Groupbox to Enable=False the CheckBox will still be Enabled?
Visual Basic.NET.NET Programming
Last Comment
Ark
8/22/2022 - Mon
Ark
Dim pt = Me.PointToClient(GroupBox1.PointToScreen(CheckBox1.Location))CheckBox1.Parent = MeCheckBox1.Location = ptCheckBox1.BringToFront()
Open in new window