also, what are you trying to achieve with this line:
VB Code:
  1. If lbl_money = lbl_money.Caption Then
That's just going to compare the lbl_money.caption against the default property of lbl_money - which is caption. You're essentially doing:
VB Code:
  1. If lbl_money.Caption = lbl_money.Caption Then
which is a bit pointless.