home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMessage
- BorderStyle = 3 'Fixed Dialog
- Caption = "Xceed Recovery Wizard"
- ClientHeight = 2310
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 5625
- Icon = "frmMessage.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2310
- ScaleWidth = 5625
- ShowInTaskbar = 0 'False
- StartUpPosition = 1 'CenterOwner
- Begin VB.CommandButton cmdAbort
- Caption = "Abort"
- Height = 375
- Left = 4200
- TabIndex = 5
- Top = 1440
- Width = 1215
- End
- Begin VB.CheckBox chkAll
- Caption = "Apply to ALL"
- Height = 255
- Left = 240
- TabIndex = 3
- Top = 1920
- Width = 1215
- End
- Begin VB.CommandButton cmdSkip
- Caption = "Skip"
- Height = 375
- Left = 2880
- TabIndex = 2
- Top = 1440
- Width = 1215
- End
- Begin VB.CommandButton cmdMerge
- Caption = "Merge"
- Height = 375
- Left = 1560
- TabIndex = 1
- Top = 1440
- Width = 1215
- End
- Begin VB.CommandButton cmdOverwrite
- Caption = "Overwrite"
- Height = 375
- Left = 240
- TabIndex = 0
- Top = 1440
- Width = 1215
- End
- Begin VB.Label lblRegKey
- Height = 495
- Left = 120
- TabIndex = 6
- Top = 840
- Width = 5295
- End
- Begin VB.Label Label1
- Caption = $"frmMessage.frx":0BC2
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 615
- Left = 120
- TabIndex = 4
- Top = 120
- Width = 5175
- End
- Attribute VB_Name = "frmMessage"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Public Enum enuActionMessage
- maMerge = braMerge
- maOverwrite = braOverwrite
- maSkip = braSkip
- maAbort = 666
- End Enum
- Dim xAction As enuActionMessage
- Public Function ShowForm() As enuActionMessage
-
- If chkAll.Value = vbUnchecked Then
- Me.Show vbModal
- End If
- ShowForm = xAction
- End Function
- Private Sub cmdAbort_Click()
- Dim Answer As VbMsgBoxResult
- Answer = MsgBox("Are you sure you want to abort the restoration?", vbYesNo + vbQuestion)
- If Answer = vbYes Then
- Me.Hide
- xAction = maAbort
- End If
-
- End Sub
- Private Sub cmdMerge_Click()
- xAction = maMerge
- Call Me.Hide
- End Sub
- Private Sub cmdOverwrite_Click()
- xAction = maOverwrite
- Call Me.Hide
- End Sub
- Private Sub cmdSkip_Click()
- xAction = maSkip
- Call Me.Hide
- End Sub
-