home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 3_2004-2005.ISO / Data / Zips / How_to_use175374642004.psc / frmConfirm.frm < prev    next >
Text File  |  2004-06-04  |  6KB  |  182 lines

  1. VERSION 5.00
  2. Begin VB.Form frmConfirm 
  3.    BorderStyle     =   1  'Fest Einfach
  4.    Caption         =   "WMEnc"
  5.    ClientHeight    =   5415
  6.    ClientLeft      =   45
  7.    ClientTop       =   435
  8.    ClientWidth     =   6915
  9.    Icon            =   "frmConfirm.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    ScaleHeight     =   5415
  13.    ScaleWidth      =   6915
  14.    StartUpPosition =   2  'Bildschirmmitte
  15.    Begin VB.Frame fraDummy 
  16.       BorderStyle     =   0  'Kein
  17.       Enabled         =   0   'False
  18.       Height          =   2175
  19.       Index           =   1
  20.       Left            =   0
  21.       TabIndex        =   7
  22.       Top             =   2160
  23.       Width           =   6975
  24.       Begin VB.TextBox txtConfirm 
  25.          BackColor       =   &H8000000F&
  26.          BeginProperty Font 
  27.             Name            =   "MS Sans Serif"
  28.             Size            =   8.25
  29.             Charset         =   0
  30.             Weight          =   700
  31.             Underline       =   0   'False
  32.             Italic          =   0   'False
  33.             Strikethrough   =   0   'False
  34.          EndProperty
  35.          Height          =   1935
  36.          Left            =   360
  37.          Locked          =   -1  'True
  38.          MultiLine       =   -1  'True
  39.          ScrollBars      =   2  'Vertikal
  40.          TabIndex        =   8
  41.          Top             =   120
  42.          Width           =   6255
  43.       End
  44.    End
  45.    Begin VB.CommandButton cmdGo 
  46.       Caption         =   "&Go !"
  47.       Default         =   -1  'True
  48.       Height          =   375
  49.       Left            =   3840
  50.       TabIndex        =   2
  51.       Top             =   4800
  52.       Width           =   1215
  53.    End
  54.    Begin VB.CommandButton cmdCancel 
  55.       Cancel          =   -1  'True
  56.       Caption         =   "&Cancel"
  57.       Height          =   375
  58.       Left            =   5400
  59.       TabIndex        =   4
  60.       Top             =   4800
  61.       Width           =   1215
  62.    End
  63.    Begin VB.CommandButton cmdBack 
  64.       Caption         =   "< &Back"
  65.       Height          =   375
  66.       Left            =   2640
  67.       TabIndex        =   3
  68.       Top             =   4800
  69.       Width           =   1215
  70.    End
  71.    Begin VB.Frame fraDummy 
  72.       BackColor       =   &H00FFFFFF&
  73.       ForeColor       =   &H00FFFFFF&
  74.       Height          =   1455
  75.       Index           =   0
  76.       Left            =   -120
  77.       TabIndex        =   0
  78.       Top             =   -360
  79.       Width           =   7125
  80.       Begin VB.Label lblStep 
  81.          BackStyle       =   0  'Transparent
  82.          Caption         =   "Step 4 : Check and confirm your Settings."
  83.          BeginProperty Font 
  84.             Name            =   "MS Sans Serif"
  85.             Size            =   13.5
  86.             Charset         =   0
  87.             Weight          =   700
  88.             Underline       =   0   'False
  89.             Italic          =   0   'False
  90.             Strikethrough   =   0   'False
  91.          EndProperty
  92.          Height          =   855
  93.          Left            =   360
  94.          TabIndex        =   1
  95.          Top             =   480
  96.          Width           =   3375
  97.       End
  98.       Begin VB.Image imgTopRight 
  99.          Height          =   810
  100.          Left            =   3960
  101.          Picture         =   "frmConfirm.frx":0CCA
  102.          Top             =   480
  103.          Width           =   2970
  104.       End
  105.    End
  106.    Begin VB.Label lblDummy 
  107.       Alignment       =   2  'Zentriert
  108.       BackStyle       =   0  'Transparent
  109.       Caption         =   "If you want to change any of these Settings, please press the 'Back' - Button NOW !"
  110.       Height          =   255
  111.       Index           =   1
  112.       Left            =   360
  113.       TabIndex        =   6
  114.       Top             =   1800
  115.       Width           =   6255
  116.    End
  117.    Begin VB.Label lblDummy 
  118.       Alignment       =   2  'Zentriert
  119.       BackStyle       =   0  'Transparent
  120.       Caption         =   "Please check and confirm your Settings."
  121.       Height          =   255
  122.       Index           =   0
  123.       Left            =   360
  124.       TabIndex        =   5
  125.       Top             =   1440
  126.       Width           =   6255
  127.    End
  128.    Begin VB.Line lin3D 
  129.       BorderColor     =   &H00FFFFFF&
  130.       Index           =   1
  131.       X1              =   0
  132.       X2              =   6960
  133.       Y1              =   4575
  134.       Y2              =   4575
  135.    End
  136.    Begin VB.Line lin3D 
  137.       BorderColor     =   &H00808080&
  138.       Index           =   0
  139.       X1              =   0
  140.       X2              =   6960
  141.       Y1              =   4560
  142.       Y2              =   4560
  143.    End
  144. End
  145. Attribute VB_Name = "frmConfirm"
  146. Attribute VB_GlobalNameSpace = False
  147. Attribute VB_Creatable = False
  148. Attribute VB_PredeclaredId = True
  149. Attribute VB_Exposed = False
  150. Private Sub cmdBack_Click()
  151.     frmAddDetails.Show
  152.     Me.Hide
  153. End Sub
  154.  
  155. Private Sub cmdCancel_Click()
  156.     Unload Me
  157. End Sub
  158.  
  159. Private Sub cmdGo_Click()
  160.     frmDoIt.Show
  161.     Me.Hide
  162. End Sub
  163.  
  164. Private Sub Form_Activate()
  165.     txtConfirm.Text = ""
  166.     txtConfirm.Text = txtConfirm.Text & vbCrLf
  167.     txtConfirm.Text = txtConfirm.Text & "   Source-Filename : " & SourceFileName & vbCrLf
  168.     txtConfirm.Text = txtConfirm.Text & "   Output-Filename : " & DestFileName & vbCrLf & vbCrLf & vbCrLf
  169.     txtConfirm.Text = txtConfirm.Text & "   Encoding-Profile : " & EncodingProfileName
  170. End Sub
  171.  
  172. Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
  173.     Dim retVal As Long
  174.     retVal = MsgBox("Do you want to exit ?", vbQuestion + vbYesNo, "Exit ?")
  175.     If retVal = vbYes Then
  176.         CloseProgram
  177.     Else
  178.         Cancel = True
  179.     End If
  180. End Sub
  181.  
  182.