VERSION 5.00
Begin VB.Form frmfindLogo 
   BackColor       =   &H80000001&
   Caption         =   "Find Logo"
   ClientHeight    =   3615
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   5925
   LinkTopic       =   "Form1"
   ScaleHeight     =   3615
   ScaleWidth      =   5925
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdgetit 
      BackColor       =   &H00FFFFFF&
      Caption         =   "OK"
      Height          =   255
      Left            =   2040
      Style           =   1  'Graphical
      TabIndex        =   3
      Top             =   3240
      Width           =   1695
   End
   Begin VB.DriveListBox Drive1 
      Height          =   315
      Left            =   120
      TabIndex        =   2
      Top             =   120
      Width           =   2295
   End
   Begin VB.FileListBox File1 
      Height          =   1260
      Left            =   120
      Pattern         =   "*.bmp; *.jpeg; *.jpg; *.png"
      TabIndex        =   1
      Top             =   1800
      Width           =   2295
   End
   Begin VB.DirListBox Dir1 
      Height          =   1215
      Left            =   120
      TabIndex        =   0
      Top             =   480
      Width           =   2295
   End
   Begin VB.Image Image1 
      Height          =   2895
      Left            =   2520
      Stretch         =   -1  'True
      Top             =   120
      Width           =   3255
   End
End
Attribute VB_Name = "frmfindLogo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdgetit_Click()
frmHotelInfomation.txtlogo = Dir1 & "\" & File1
frmfindLogo.Hide
End Sub

Private Sub Dir1_Change()
File1.Path = Dir1.Path

End Sub

Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive


End Sub

Private Sub File1_Click()
selectedfile = File1.Path & "\" & File1.FileName
Image1.Picture = LoadPicture(selectedfile)
End Sub

Private Sub Form_Load()

End Sub
