开发者

How do you expand a form at runtime in VB.NET to display more information?

开发者 https://www.devze.com 2023-02-12 11:56 出处:网络
I have a form in VB.NET and I would like the user to be able to click a button which will display another form (with开发者_StackOverflow中文版 the original form still visible).

I have a form in VB.NET and I would like the user to be able to click a button which will display another form (with开发者_StackOverflow中文版 the original form still visible).

How do I do this?


Protected Sub MyButton_Click(sender As Object, e As EventArgs) _
        Handles MyButton.Click

    Dim MySecondForm As New MySecondFormType()
    MySecondForm.Show()

End Sub
0

精彩评论

暂无评论...
验证码 换一张
取 消