Wrox Programmer Forums
|
Beginning VB 6 For coders who are new to Visual Basic, working in VB version 6 (not .NET).
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Beginning VB 6 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 28th, 2006, 01:16 AM
Friend of Wrox
 
Join Date: Jan 2006
Posts: 180
Thanks: 1
Thanked 1 Time in 1 Post
Send a message via ICQ to dpkbahuguna Send a message via MSN to dpkbahuguna Send a message via Yahoo to dpkbahuguna
Default Add Runtime Controls

Hi All !

         I've to add buttons at runtime. I've to do it using loop. I mean i want to add 4 buttons at FORM with different names e.g I dont want to use ARRAY of buttons.


      Thanks!

DPK..
__________________
DPK..
 
Old November 28th, 2006, 11:43 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 627
Thanks: 0
Thanked 0 Times in 0 Posts
Default

use the controls.Add method
 
Old December 7th, 2006, 08:55 AM
Noa Noa is offline
Registered User
 
Join Date: Dec 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Noa
Default

if you are not sure how to use 'Controls.Add', here is a brief example.

Option Explicit

Private WithEvents MyButton As CommandButton

Private Sub Form_Load()

    Set MyButton = Controls.Add("VB.CommandButton", "Hello", Me)
    With MyButton
        .Visible = True
        .Caption = "Command1"
        .Top = 120
        .Left = 120
    End With
End Sub







Similar Threads
Thread Thread Starter Forum Replies Last Post
Controls at runtime ITGeek ASP.NET 1.0 and 1.1 Basics 4 July 11th, 2007 05:23 AM
Add a reference on Runtime anandham Pro VB 6 3 September 18th, 2006 09:16 AM
Create Controls at Runtime everthalia Classic ASP Databases 2 July 30th, 2004 10:21 PM
How to create controls at runtime ? kishore_peddi C# 1 November 3rd, 2003 09:22 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.