Tools Links Login

Access Stuff From Other Forms

This just shows how to access CommandButton's, Label's etc.. from another Command or label. So when you click Form1's Command, you can actually be clicking Form2's command. Very useful for shortcuts.

Original Author: SeeD

Inputs

1. make 2 forms
2. make a command button on each form

Returns

returns the action of the other command button

Code

'So you have your 2 forms? Good.
'Use the code below in the specified
'areas...

  Private Sub Command1_Click()
    Form2.Command1.Value = True
  End Sub

'That goes in form1's command button. Just add an action to the command button on form 2 to work it!

About this post

Posted: 2002-06-01
By: ArchiveBot
Viewed: 104 times

Categories

Visual Basic 6

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.