|
-
January 8th, 2006, 04:42 AM
#1
Add TextBox at RunTime
hi
i have an Array of TextBox object. i want to add a new textbox to this array at run time.
can i do it ?
how do i do it ??
thanx
asaf
-
January 8th, 2006, 05:05 AM
#2
Re: Add TextBox at RunTime
Do you mean you have a control array on your form? if so then you use the load function to add controls to that form.
Mike
-
January 8th, 2006, 08:03 AM
#3
Re: Add TextBox at RunTime
 Originally Posted by asaf123456
hi
i have an Array of TextBox object. i want to add a new textbox to this array at run time.
how do i do it ??
thanx
asaf
use something like
Code:
Load TextBox_A(TextBox_A.Ubound + 1)
TextBox_A.Top = [Top Position]
TextBox_A.Left = [Left Position]
TextBox_A.Visible = True
and to remove them use
Code:
Unload TextBox_A(TextBox_A.Ubound)
Gremmy...
Articles VB6 : Break the 2G limit - Animation 1, 2 VB.NET : 2005/8 : Moving Images , Animation 1 , 2 , 3 , User Controls
WPF Articles : 3D Animation 1 , 2 , 3
Code snips: VB6 Hex Edit, IP Chat, Copy Prot., Crop, Zoom : .NET IP Chat (V4), Adv. ContextMenus, click Hotspot, Scroll Controls
Find me in ASP.NET., VB6., VB.NET , Writing Articles, My Genealogy, Forum
All VS.NET: posts refer to VS.NET 2008 (Pro) unless otherwise stated.
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
|