VERSION 5.00 Object = "{0D452EE1-E08F-101A-852E-02608C4D0BB4}#2.0#0"; "FM20.DLL" Begin VB.Form ReadyDialog BackColor = &H00FFFFFF& BorderStyle = 3 '雙線固定對話方塊 Caption = "DRBL Helper" ClientHeight = 1080 ClientLeft = 5235 ClientTop = 5325 ClientWidth = 5175 Icon = "ReadyDialog.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1080 ScaleWidth = 5175 ShowInTaskbar = 0 'False Begin MSForms.CommandButton btnOK Height = 375 Left = 1320 TabIndex = 1 Top = 720 Width = 1215 Caption = "Close" Size = "2143;661" FontName = "新細明體" FontHeight = 180 FontCharSet = 136 FontPitchAndFamily= 34 ParagraphAlign = 3 End Begin MSForms.Label lblMsg Height = 375 Left = 1200 TabIndex = 0 Top = 240 Width = 3975 ForeColor = 12632256 BackColor = 12648447 Caption = "Installed Successfully !!" Size = "7011;661" FontName = "新細明體" FontHeight = 180 FontCharSet = 136 FontPitchAndFamily= 34 End Begin VB.Image Image1 Height = 1095 Left = 0 Picture = "ReadyDialog.frx":0CCA Stretch = -1 'True Top = 0 Width = 1215 End End Attribute VB_Name = "ReadyDialog" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub btnOK_Click() Unload Me End Sub Private Sub Form_Load() SetLocale End Sub Public Sub SetLocale() 'Internalization If (LoadLocalizedResources) Then ' Pull a string resource out of a local resource ' object for demonstration purposes. 'Me.Caption = GetString() btnOK.Caption = GetString(14) 'lblMsg.Caption = GetString(13) End If ' End Sub