•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the VB.NET section within the Software Development category of DaniWeb, a massive community of 402,905 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,146 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our VB.NET advertiser: Programming Forums
Views: 1290 | Replies: 3
![]() |
•
•
Join Date: Dec 2002
Location: West Virginia
Posts: 375
Reputation:
Rep Power: 6
Solved Threads: 38
•
•
Join Date: Dec 2002
Location: West Virginia
Posts: 375
Reputation:
Rep Power: 6
Solved Threads: 38
Yes it is.
To get the location:
Dim ctrl As New Label
ctrl.Location = New Point(10, 30)
ctrl.Visible = True
ctrl.Text = "The first label"
ctrl.Name = "Label1"
Me.Controls.Add(ctrl)
ctrl = New Label
ctrl.Location = New Point(150, 30)
ctrl.Visible = True
ctrl.Text = "The second label"
ctrl.Name = "Label2"
Me.Controls.Add(ctrl) Dim ctrl As Label = Me.Controls.Item("label1")
Dim ctrl1 As Label = Me.Controls.Item("label2")
MessageBox.Show(ctrl.Location.ToString & "|" & ctrl1.Location.ToString)![]() |
•
•
•
•
•
•
•
•
DaniWeb VB.NET Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
- Creating a new array dynamically for checkboxes? (PHP)
- Trying to creating an array from a text file (C++)
- Resizing of an array. (C++)
- new and in need (ASP)
- Return multidimension array (C)
- How do I create a program using an Array ? (C++)
Other Threads in the VB.NET Forum
- Previous Thread: show grid lines in crystal reports
- Next Thread: problem with update in dataset


Linear Mode