VERSION 5.00 Object = "{0D452EE1-E08F-101A-852E-02608C4D0BB4}#2.0#0"; "FM20.DLL" Begin VB.Form InstallHPDialog BackColor = &H00FFFFFF& BorderStyle = 3 '雙線固定對話方塊 Caption = "DRBL Helper" ClientHeight = 1575 ClientLeft = 4725 ClientTop = 5325 ClientWidth = 8175 Icon = "InstallHPDialog.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1575 ScaleWidth = 8175 ShowInTaskbar = 0 'False Begin MSForms.CommandButton btnOK Height = 375 Left = 0 TabIndex = 3 Top = 1200 Width = 1215 Caption = "Close" Size = "2143;661" FontName = "新細明體" FontHeight = 180 FontCharSet = 136 FontPitchAndFamily= 34 ParagraphAlign = 3 End Begin VB.Label lbl BackStyle = 0 '透明 ForeColor = &H0000C000& Height = 375 Left = 1440 TabIndex = 2 Top = 240 Width = 4695 End Begin VB.Label lbuHPURL BackStyle = 0 '透明 Caption = "ftp://ftp.compaq.com/pub/softpaq/sp27001-27500/SP27213.exe" BeginProperty Font Name = "Arial" Size = 9 Charset = 0 Weight = 400 Underline = -1 'True Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H00FF0000& Height = 375 Left = 1440 TabIndex = 1 Top = 720 Width = 5415 End Begin VB.Label lblMsg BackColor = &H00C0FFFF& Height = 1815 Left = 1200 TabIndex = 0 Top = 0 Width = 6975 End Begin VB.Image Image1 Height = 1215 Left = 0 Picture = "InstallHPDialog.frx":0CCA Stretch = -1 'True Top = 0 Width = 1215 End End Attribute VB_Name = "InstallHPDialog" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub btnOK_Click() Unload Me End Sub Private Sub Form_Load() SetLocale End Sub Public Sub SetLocale() lbl.Caption = "No ""HP USB Disk Storage Format Tool"" installed is Detected, " & Chr(10) + Chr(13) & _ "Please click the following link to install.." 'Internalization If (LoadLocalizedResources) Then ' Pull a string resource out of a local resource ' object for demonstration purposes. 'Me.Caption = GetString() btnOK.Caption = GetString(14) lbl.Caption = GetString(15) End If ' End Sub Private Sub lbuHPURL_Click() ShellExecute hwnd, "Open", lbuHPURL.Caption, "", App.path, 1 End Sub