frmFile.frm
上传用户:szlwled
上传日期:2022-06-30
资源大小:95k
文件大小:3k
源码类别:

视频捕捉/采集

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
  3. Begin VB.Form frmFile 
  4.    Caption         =   "设置文件"
  5.    ClientHeight    =   2025
  6.    ClientLeft      =   60
  7.    ClientTop       =   450
  8.    ClientWidth     =   6000
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   2025
  11.    ScaleWidth      =   6000
  12.    StartUpPosition =   3  '窗口缺省
  13.    Begin VB.CommandButton cmdBrowse 
  14.       Caption         =   "浏览"
  15.       Height          =   495
  16.       Left            =   4440
  17.       TabIndex        =   4
  18.       Top             =   323
  19.       Width           =   1095
  20.    End
  21.    Begin VB.CommandButton cmdOK 
  22.       Caption         =   "确定"
  23.       Default         =   -1  'True
  24.       Height          =   495
  25.       Left            =   1800
  26.       TabIndex        =   3
  27.       Top             =   1200
  28.       Width           =   1095
  29.    End
  30.    Begin VB.CommandButton cmdExit 
  31.       Cancel          =   -1  'True
  32.       Caption         =   "退出"
  33.       Height          =   495
  34.       Left            =   3360
  35.       TabIndex        =   2
  36.       Top             =   1200
  37.       Width           =   1095
  38.    End
  39.    Begin VB.TextBox txtFile 
  40.       Height          =   375
  41.       Left            =   1440
  42.       TabIndex        =   0
  43.       Top             =   383
  44.       Width           =   3015
  45.    End
  46.    Begin MSComDlg.CommonDialog dlg1 
  47.       Left            =   600
  48.       Top             =   1080
  49.       _ExtentX        =   847
  50.       _ExtentY        =   847
  51.       _Version        =   393216
  52.       Flags           =   1
  53.    End
  54.    Begin VB.Label Label1 
  55.       AutoSize        =   -1  'True
  56.       Caption         =   "视频文件名:"
  57.       Height          =   180
  58.       Left            =   360
  59.       TabIndex        =   1
  60.       Top             =   480
  61.       Width           =   1080
  62.    End
  63. End
  64. Attribute VB_Name = "frmFile"
  65. Attribute VB_GlobalNameSpace = False
  66. Attribute VB_Creatable = False
  67. Attribute VB_PredeclaredId = True
  68. Attribute VB_Exposed = False
  69. Public strFilter As String  '过滤器列表
  70. Public strSaveType   As String   '保存类型:BMP为图片文件,AVI为视频文件
  71. Private Sub cmdBrowse_Click()   '“浏览”按钮
  72.     dlg1.Filter = strFilter '设置通用对话框的过滤字符串
  73.     If strSaveType = "AVI" Then '若是视频文件
  74.         dlg1.DialogTitle = "设置AVI文件名" '设置通用对话框的标题
  75.     Else    '若是图片文件
  76.         dlg1.DialogTitle = "设置BMP文件名" '设置通用对话框的标题
  77.     End If
  78.     dlg1.ShowSave   '显示“保存”对话框
  79.     txtFile.Text = dlg1.FileName    '将通用对话框中的文件名填入文本框
  80. End Sub
  81. Private Sub cmdExit_Click() '“退出”按钮
  82.     Unload Me   '卸载窗体
  83. End Sub
  84. Private Sub cmdOK_Click()   '“确定”按钮
  85.     If strSaveType = "AVI" Then '视频文件
  86.         strFileAVI = Trim(txtFile.Text) '设置全局变量保存视频文件名
  87.     ElseIf strSaveType = "BMP" Then '图片文件
  88.         strFileBMP = Trim(txtFile.Text) '设置全局变量保存图片文件名
  89.     End If
  90.     Unload Me   '卸载窗体
  91. End Sub
  92. Private Sub Form_Load()
  93.     dlg1.InitDir = App.Path '设置通用对话框的初始路径
  94. End Sub