D
David Pick
I've a bunch of labels that i haved added to a form using this code
for i = 1 to 12
for j = 1 to 12
dim lbl as new label
me.controls.add(lbl)
with lbl
...
end with
next
next
I would like to have it so that if one of these labels were click it
would change color. Any help would be appreciated. Thanks
- David
for i = 1 to 12
for j = 1 to 12
dim lbl as new label
me.controls.add(lbl)
with lbl
...
end with
next
next
I would like to have it so that if one of these labels were click it
would change color. Any help would be appreciated. Thanks
- David