well i just want to add 1 to a label everytime something happens. so
idk if that's right in the least bit. help pleaseCode:dim lol as integer
lol = label7.caption
label7.caption + 1
Printable View
well i just want to add 1 to a label everytime something happens. so
idk if that's right in the least bit. help pleaseCode:dim lol as integer
lol = label7.caption
label7.caption + 1
Does this help?
Code:label7.caption = val(label7.caption) + 1
thanks worked. :)