VERSION 5.00 Begin VB.Form FormatDialog BackColor = &H00FFFFFF& BorderStyle = 3 '雙線固定對話方塊 Caption = "DRBLLiveHelper - Disk Formatting Confirm Window" ClientHeight = 1590 ClientLeft = 4275 ClientTop = 5130 ClientWidth = 7290 Icon = "FormatDialog.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1590 ScaleWidth = 7290 ShowInTaskbar = 0 'False Begin VB.CommandButton btnClose Caption = "Close" Height = 375 Left = 0 TabIndex = 0 Top = 1200 Width = 1215 End Begin VB.Label lbl BackStyle = 0 '透明 ForeColor = &H00FF0000& Height = 495 Left = 1440 TabIndex = 2 Top = 600 Width = 5655 End Begin VB.Label lblMsg BackColor = &H00C0FFFF& ForeColor = &H00808080& Height = 1575 Left = 1200 TabIndex = 1 Top = 0 Width = 7695 End Begin VB.Image Image1 Height = 1200 Left = 0 Picture = "FormatDialog.frx":0CCA Stretch = -1 'True Top = 0 Width = 1200 End End Attribute VB_Name = "FormatDialog" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub btnClose_Click() Unload Me End Sub Private Sub Form_Load() lbl.Caption = "You will loose your Data on account of the unnecessary step of disk formatting. " & Chr(10) + Chr(13) & _ "Please confirm again you want to format your USB disk drive before installing." 'Internalization If (LoadLocalizedResources) Then ' Pull a string resource out of a local resource ' object for demonstration purposes. lbl.Caption = GetString(107) Me.Caption = GetString(108) btnClose.Caption = GetString(109) End If ' End Sub Private Sub Form_Unload(Cancel As Integer) Unload Me End Sub