Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to pass values from one form to another form 1

Status
Not open for further replies.

njahnavi

Technical User
Dec 29, 2008
136
US
Hi i am using vb.net version 2.0

I want to pass a combobox value from one form to another how to do it.

Thanks for any help
 
On your form without the ComboBox, create a class level variable at the top of the form:
Code:
Private mSomeVariable As Integer

Create a property on your form without the ComboBox
Code:
    Public Property SomeVariable() As Integer
        Get
            Return mSomeVariable
        End Get
        Set(ByVal value As Integer)
            mSomeVariable = value
        End Set
    End Property

When you are going to open up the form without the ComboBox, set it's property with the value from your ComboBox
Code:
Dim NewForm As New SecondForm
NewForm.SomeVariable = YourComboBox.Items(YourComboBox.SelectedIndex)
You will then have access to that "mSomeVariable" (replacing the name with whatever you choose) variable in your second form.


 
A quick scan through the FAQs section of this forum revealed...

faq796-5773

does this not comprehensively answer your question?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top