I have been surfing the net for hours but couldn't find anything as to whether it is possible to make a groupbox readonly. So if you can make it read-only how do you go about?Is there any code?Thanks

Recommended Answers

All 5 Replies

I have been surfing the net for hours but couldn't find anything as to whether it is possible to make a groupbox readonly. So if you can make it read-only how do you go about?Is there any code?Thanks

try this


GroupBox1.Enabled = False

hai use this

GroupBox1.Enabled = False

if you have slove your problem it mark that.

yeah it works but however when i click on the edit button on my form then it does not work. I need it not to be readonly when i click on the edit button.

if you want to do groupbox read only when you click on edit button so use this code on edit button click event
code is
groupbox.enabled = false

Better still you can put the edit button below the groupbox
in the form load
groupbox.enabled = false
then to edit it, in the edit button
groupbox.enabled = true

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.