I want to click on a button and have it open another form. The other form is called Kindy.

Recommended Answers

All 3 Replies

Hi,

FormName.Show 'to open a form

and

FormName.ShowDialog 'to open a modal form

I want to click on a button and have it open another form. The other form is called Kindy.

Button1_click()
{
kindy.show()
}

Button1_click()
{
enterformname.show()
}

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.