Click here to Skip to main content
16,016,736 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: row addition Pin
Makniteasy10-Jan-05 20:57
Makniteasy10-Jan-05 20:57 
GeneralRe: row addition Pin
Briga11-Jan-05 23:51
Briga11-Jan-05 23:51 
Generaltool tip for list combo box Pin
casino japan8-Jan-05 21:21
casino japan8-Jan-05 21:21 
GeneralWise for windows Installer 2.02 Pin
paykani8-Jan-05 20:15
paykani8-Jan-05 20:15 
GeneralRe: Wise for windows Installer 2.02 Pin
casino japan8-Jan-05 21:19
casino japan8-Jan-05 21:19 
GeneralRe: Wise for windows Installer 2.02 Pin
Dave Kreskowiak10-Jan-05 3:31
mveDave Kreskowiak10-Jan-05 3:31 
Generalmdi child problem Pin
GaryKoh8-Jan-05 18:49
GaryKoh8-Jan-05 18:49 
GeneralRe: mdi child problem Pin
OICU8128-Jan-05 20:25
OICU8128-Jan-05 20:25 
Try this:

Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim frm2 As New Form2
        frm2.MdiParent = Me
        frm2.Show()
    End Sub
End Class


Public Class Form2

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim frm3 As New Form3
        frm3.MdiParent = Me.ParentForm
        frm3.Show()
    End Sub

End Class

GeneralRe: mdi child problem Pin
GaryKoh9-Jan-05 3:58
GaryKoh9-Jan-05 3:58 
GeneralRe: mdi child problem Pin
Robert Rohde9-Jan-05 4:58
Robert Rohde9-Jan-05 4:58 
GeneralRe: mdi child problem Pin
OICU8129-Jan-05 5:34
OICU8129-Jan-05 5:34 
GeneralRe: mdi child problem Pin
GaryKoh9-Jan-05 11:51
GaryKoh9-Jan-05 11:51 
GeneralDataGrid Rows Pin
8-Jan-05 17:04
suss8-Jan-05 17:04 
GeneralRe: DataGrid Rows Pin
Palestine_Guy8-Jan-05 20:47
Palestine_Guy8-Jan-05 20:47 
GeneralRe: DataGrid Rows Pin
Makniteasy8-Jan-05 21:13
Makniteasy8-Jan-05 21:13 
GeneralRe: DataGrid Rows Pin
Palestine_Guy9-Jan-05 22:19
Palestine_Guy9-Jan-05 22:19 
QuestionFoxpro Data with VB6? Pin
paykani8-Jan-05 16:56
paykani8-Jan-05 16:56 
AnswerRe: Foxpro Data with VB6? Pin
Robert Rohde9-Jan-05 6:17
Robert Rohde9-Jan-05 6:17 
GeneralDatabase question Pin
sangsram8-Jan-05 14:17
sangsram8-Jan-05 14:17 
GeneralInserting rows from data grid Pin
Anonymous8-Jan-05 10:49
Anonymous8-Jan-05 10:49 
GeneralRe: Inserting rows from data grid Pin
Anonymous9-Jan-05 22:52
Anonymous9-Jan-05 22:52 
GeneralRe: Inserting rows from data grid Pin
Paps210-Jan-05 9:47
Paps210-Jan-05 9:47 
GeneralAVICap32 API in VB.NET Pin
[DK]KiloDunse8-Jan-05 10:06
[DK]KiloDunse8-Jan-05 10:06 
GeneralRe: AVICap32 API in VB.NET Pin
[DK]KiloDunse9-Jan-05 23:51
[DK]KiloDunse9-Jan-05 23:51 
Generalsetup wizard Pin
Boniolopez8-Jan-05 4:49
Boniolopez8-Jan-05 4:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.