|
-
Jan 3rd, 2010, 01:29 AM
#1
Thread Starter
Lively Member
Can I control in one line the Top,Left of some labels?
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
-
Jan 3rd, 2010, 01:31 AM
#2
Re: Can I control in one line the Top,Left of some labels?
Code:
dim i as integer
For i=1 to 10
ETSI_Selector(i).Left = 1463
next i
If my post was helpful to you, then express your gratitude using Rate this Post. 
And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet
Social Group: VBForums - Developers from India
Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...
-
Jan 3rd, 2010, 02:14 AM
#3
Thread Starter
Lively Member
Re: Can I control in one line the Top,Left of some labels?
-
Jan 3rd, 2010, 12:12 PM
#4
Re: Can I control in one line the Top,Left of some labels?
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.
-
Jan 4th, 2010, 04:35 AM
#5
Thread Starter
Lively Member
Re: Can I control in one line the Top,Left of some labels?
What is the syntax of the Move command?
I tried to write it but I got errors...
-
Jan 4th, 2010, 05:34 AM
#6
Re: Can I control in one line the Top,Left of some labels?
Control.Move Left, Top
eg:
ETSI_Selector(1).Move 1463, 700
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|