So on my form I have 2 forms, the top one shows the search box and the bottom form displays the result

Code:
VERSION 5.00
Object = "{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}#1.1#0"; "ieframe.dll"
Begin VB.Form Form11 
   BackColor       =   &H00D8E9EC&
   BorderStyle     =   0  'None
   ClientHeight    =   13485
   ClientLeft      =   150
   ClientTop       =   435
   ClientWidth     =   13185
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   ScaleHeight     =   899
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   879
   StartUpPosition =   2  'CenterScreen
   Begin SHDocVwCtl.WebBrowser wbResults 
      Height          =   10095
      Left            =   120
      TabIndex        =   1
      Top             =   3360
      Width           =   12975
      ExtentX         =   22886
      ExtentY         =   17806
      ViewMode        =   0
      Offline         =   0
      Silent          =   0
      RegisterAsBrowser=   0
      RegisterAsDropTarget=   1
      AutoArrange     =   0   'False
      NoClientEdge    =   0   'False
      AlignLeft       =   0   'False
      NoWebView       =   0   'False
      HideFileNames   =   0   'False
      SingleClick     =   0   'False
      SingleSelection =   0   'False
      NoFolders       =   0   'False
      Transparent     =   0   'False
      ViewID          =   "{0057D0E0-3573-11CF-AE69-08002B2E1262}"
      Location        =   "Main Domain.com/"
   End
   Begin SHDocVwCtl.WebBrowser wbSearch 
      Height          =   2775
      Left            =   2760
      TabIndex        =   0
      ToolTipText     =   "Enter Search Here"
      Top             =   480
      Width           =   7455
      ExtentX         =   13150
      ExtentY         =   4895
      ViewMode        =   0
      Offline         =   0
      Silent          =   0
      RegisterAsBrowser=   0
      RegisterAsDropTarget=   1
      AutoArrange     =   0   'False
      NoClientEdge    =   0   'False
      AlignLeft       =   0   'False
      NoWebView       =   0   'False
      HideFileNames   =   0   'False
      SingleClick     =   0   'False
      SingleSelection =   0   'False
      NoFolders       =   0   'False
      Transparent     =   0   'False
      ViewID          =   "{0057D0E0-3573-11CF-AE69-08002B2E1262}"
      Location        =   "Main Domain.com/"
   End
End
Attribute VB_Name = "Form11"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
My question is based on this website
Code:
http://www.wowhead.com/
Where I want the search box at the top and the results to be displayed in the box below. Can someone help me out please. I originally had this code for another website and would like to enhance apon that.

Thank you.