Hi All
Can I control some labels in one line,
I write it like this:
ETSI_Selector(1).Left = 1463
ETSI_Selector(2).Left = 1463
and I want to change it to one line.
Can I do it?
Thanks!
Y
Printable View
Hi All
Can I control some labels in one line,
I write it like this:
ETSI_Selector(1).Left = 1463
ETSI_Selector(2).Left = 1463
and I want to change it to one line.
Can I do it?
Thanks!
Y
Code:dim i as integer
For i=1 to 10
ETSI_Selector(i).Left = 1463
next i
Thanks a lot!
Tip: If you want to change both Top & Left of the same label(s). Use 1 .Move command vs 1 each .Top & .Left property changes.
What is the syntax of the Move command?
I tried to write it but I got errors...
Control.Move Left, Top
eg:
ETSI_Selector(1).Move 1463, 700