11-18-2011, 03:50 PM
Sorry RabidLamb, but I am not 100% sure of what you are asking.
If you are wondering how to make it so if the checkbox is checked, then display the icon, this would be the code to use:
But I really do not know exactly what you are asking.. So hopefully this is what you meant. If not, I apologize again.. And if you could try restating the question, we can try to answer!
If you are wondering how to make it so if the checkbox is checked, then display the icon, this would be the code to use:
Code:
If Checkbox1.Checked = True Then
MessageBox.Show("text", "tile", MessageBoxButtons.Ok, MesssageBoxIcon.Question)
Else
MessageBox.Show("text", "tile", MessageBoxButtons.Ok)
End if
But I really do not know exactly what you are asking.. So hopefully this is what you meant. If not, I apologize again.. And if you could try restating the question, we can try to answer!