How do you lock a label caption in VB. I'm trying to make a program close to a poker/slotmachine game that uses label controls instead of textbox controls. I want to be able to lock a label caption when a checkbox is checked. For example:

To lock a textbox control:

if check1.value = vbchecked then
text1.locked = true
end if

How do you do something similar using a label control? Can anyone help me? Thank you very much.