Is there anyway to make a label display the current content of a variable without explicitly updating it? I find that I have this code in many places

ChangesMade = False
lblChanges.Text = "No Changes"

What I'm wondering is can I just link lblChanges to the variable ChangesMade so that I can just say

ChangesMade = False

and lblChanges.text will reflect that?

Thanks,

Dave