home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMain
- BorderStyle = 1 'Fixed Single
- Caption = "Xceed Recovery Wizard"
- ClientHeight = 4290
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 7425
- Icon = "frmMain.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 4290
- ScaleWidth = 7425
- Begin VB.CommandButton cmdTemp
- Caption = "Restore"
- Enabled = 0 'False
- Height = 375
- Left = 4560
- TabIndex = 4
- Top = 3720
- Width = 1215
- End
- Begin VB.CommandButton cmdBack
- Caption = "< Previous"
- Enabled = 0 'False
- Height = 375
- Left = 1920
- TabIndex = 3
- Top = 3720
- Width = 1215
- End
- Begin VB.CommandButton cmdCancel
- Caption = "Cancel"
- Height = 375
- Left = 6000
- TabIndex = 1
- Top = 3720
- Width = 1215
- End
- Begin VB.CommandButton cmdNext
- Caption = "Next >"
- Height = 375
- Left = 3120
- TabIndex = 0
- Top = 3720
- Width = 1215
- End
- Begin VB.Label Label4
- Caption = "For more information regarding the Xceed Backup Libary or any other Xceed Software product, please visit our web site at: "
- Height = 495
- Left = 1920
- TabIndex = 9
- Top = 1680
- Width = 5055
- End
- Begin VB.Label Label3
- Caption = $"frmMain.frx":0BC2
- Height = 615
- Left = 1920
- TabIndex = 8
- Top = 960
- Width = 4935
- End
- Begin VB.Label Label1
- Caption = "This program will help you restore backups that were created by applications that use the Xceed Backup Library. "
- Height = 495
- Left = 1920
- TabIndex = 7
- Top = 480
- Width = 4695
- End
- Begin VB.Label lblHome
- Caption = "http://www.xceedsoft.com"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = -1 'True
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 1920
- MouseIcon = "frmMain.frx":0C67
- MousePointer = 99 'Custom
- TabIndex = 6
- Top = 2520
- Width = 2415
- End
- Begin VB.Label Label2
- Caption = "Click on ""Next"" to begin restoring files."
- Height = 255
- Left = 1920
- TabIndex = 5
- Top = 3120
- Width = 4215
- End
- Begin VB.Line Line1
- BorderColor = &H80000009&
- Index = 1
- X1 = 1680
- X2 = 1680
- Y1 = 120
- Y2 = 4080
- End
- Begin VB.Line Line1
- BorderColor = &H80000011&
- Index = 0
- X1 = 1665
- X2 = 1665
- Y1 = 120
- Y2 = 4080
- End
- Begin VB.Image Image1
- Height = 1260
- Left = 120
- Picture = "frmMain.frx":0F71
- Top = 120
- Width = 1410
- End
- Begin VB.Label lblIntro
- Caption = "Welcome to the Xceed Recovery Wizard"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = -1 'True
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 1920
- TabIndex = 2
- Top = 120
- Width = 3615
- End
- Attribute VB_Name = "frmMain"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Dim xClass As clsXceed
- Dim ExitInc As Integer
- Public Function ShowForm(xObjects As clsXceed) As Integer
- 'This is where you will fill in the fields on your forms with the values
- 'in xObjects.
- Set xClass = xObjects
- Me.Left = xClass.PositionLeft
- Me.Top = xClass.PositionTop
-
- Me.Show vbModal
- xClass.PositionLeft = Me.Left
- xClass.PositionTop = Me.Top
- Set xClass = Nothing
- 'At this point, the form is now hidden and ExitInc contains the increment.
- 'If ExitInc is not 0 then set xobjects to the field values.
-
- ShowForm = ExitInc
- End Function
- Private Sub cmdCancel_Click()
- ExitInc = 0
- Me.Hide
-
- End Sub
- Private Sub cmdNext_Click()
- ExitInc = 1
- Me.Hide
- End Sub
- Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
- If UnloadMode <> vbFormCode Then
- Cancel = True
- Call cmdCancel_Click
- End If
- End Sub
- Private Sub lblHome_Click()
- Dim lhwnd As Long
- Call ShellExecute(lhwnd, "OPEN", "http://www.xceedsoft.com", "", "", 0)
- End Sub
-