Results 1 to 3 of 3

Thread: Multiple Form

  1. #1
    reuben
    Guest

    Unhappy

    How can a form show twice in one form only

    Form.show
    form.show


    I know this will not work but how can we do it to show a form twice in one form

  2. #2
    Fanatic Member
    Join Date
    Feb 2000
    Location
    Dunmow,Essex,England
    Posts
    898
    dim x as form

    set x = new form1
    x.show

  3. #3
    Fanatic Member Jerry Grant's Avatar
    Join Date
    Jul 2000
    Location
    Dorset, UK
    Posts
    810
    Code:
        Dim frm1 As Form
        Dim frm2 As Form
        
        Set frm1 = New Form1
        Set frm2 = New Form1
        
        Load frm1
        Load frm2
        
        frm1.Caption = "1st instance of Form1"
        frm2.Caption = "2nd instance of Form1"
        
        frm1.Show
        frm2.Show
    Jerry Grant................tnarG yrreJ
    Website: <JG-Design></.net>
    Email: [email protected]
    Working towards a bug free world......
    (Not a Microsoft employee)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width