⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmpurchase.frm

📁 英文版Access数据库编程
💻 FRM
📖 第 1 页 / 共 2 页
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
Begin VB.Form frmPurchase 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "Purchase Order"
   ClientHeight    =   5265
   ClientLeft      =   -135
   ClientTop       =   435
   ClientWidth     =   7800
   BeginProperty Font 
      Name            =   "Tahoma"
      Size            =   8.25
      Charset         =   0
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   Icon            =   "frmPurchase.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   5265
   ScaleWidth      =   7800
   StartUpPosition =   2  'CenterScreen
   Begin VB.OptionButton cash 
      Caption         =   "Cash"
      Height          =   255
      Left            =   360
      TabIndex        =   1
      ToolTipText     =   "Click here if purchasing item by cash"
      Top             =   1200
      Width           =   1215
   End
   Begin VB.OptionButton credit 
      Caption         =   "Credit"
      Height          =   255
      Left            =   360
      TabIndex        =   2
      ToolTipText     =   "Click here if purchasing items by credit"
      Top             =   1560
      Width           =   1335
   End
   Begin VB.TextBox total 
      BackColor       =   &H00808080&
      ForeColor       =   &H00FFFFFF&
      Height          =   285
      Left            =   840
      Locked          =   -1  'True
      TabIndex        =   10
      ToolTipText     =   "This is the total cost if available."
      Top             =   4800
      Width           =   1095
   End
   Begin VB.CommandButton cmdClear 
      Caption         =   "&Clear Cart"
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   3840
      TabIndex        =   11
      ToolTipText     =   "Click here to clear all items from the cart."
      Top             =   4800
      Width           =   1215
   End
   Begin VB.CommandButton cmdRemove 
      Caption         =   "&Remove..."
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   5160
      TabIndex        =   12
      ToolTipText     =   "Click here to remove a selected item."
      Top             =   4800
      Width           =   1215
   End
   Begin VB.CommandButton cmdDone 
      Caption         =   "&Done"
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   6480
      TabIndex        =   13
      ToolTipText     =   "Click here when you wish to proceed to save this Purchase Order"
      Top             =   4800
      Width           =   1215
   End
   Begin MSComctlLib.ListView lvCart 
      Height          =   1575
      Left            =   120
      TabIndex        =   9
      ToolTipText     =   "This cart contains the items that would be purchased."
      Top             =   3120
      Width           =   7575
      _ExtentX        =   13361
      _ExtentY        =   2778
      View            =   3
      LabelEdit       =   1
      MultiSelect     =   -1  'True
      LabelWrap       =   -1  'True
      HideSelection   =   -1  'True
      FullRowSelect   =   -1  'True
      _Version        =   393217
      ForeColor       =   -2147483640
      BackColor       =   -2147483643
      Appearance      =   1
      NumItems        =   0
   End
   Begin VB.Frame Frame1 
      Caption         =   "Purchase Method:"
      Height          =   2055
      Left            =   120
      TabIndex        =   0
      Top             =   960
      Width           =   7575
      Begin VB.Frame Frame2 
         Caption         =   "Creditor Details:"
         Height          =   975
         Left            =   120
         TabIndex        =   3
         Top             =   960
         Width           =   3735
         Begin VB.TextBox ref 
            Height          =   285
            Left            =   1080
            MaxLength       =   20
            TabIndex        =   5
            ToolTipText     =   "Enter any references here. Eg: Quotation number, etc."
            Top             =   600
            Width           =   1455
         End
         Begin VB.ComboBox supplier 
            Height          =   315
            Left            =   1080
            Style           =   2  'Dropdown List
            TabIndex        =   4
            ToolTipText     =   "Select a supplier."
            Top             =   240
            Width           =   2535
         End
         Begin VB.Label Label3 
            Caption         =   "Reference:"
            Height          =   255
            Left            =   120
            TabIndex        =   20
            Top             =   600
            Width           =   975
         End
         Begin VB.Label Label2 
            Caption         =   "Supplier:"
            Height          =   255
            Left            =   120
            TabIndex        =   19
            Top             =   240
            Width           =   735
         End
      End
      Begin VB.ComboBox employee 
         Height          =   315
         Left            =   4680
         Style           =   2  'Dropdown List
         TabIndex        =   7
         ToolTipText     =   "Select an employee responsible for this purchase order."
         Top             =   600
         Width           =   2775
      End
      Begin VB.TextBox notes 
         Height          =   975
         Left            =   4680
         MaxLength       =   100
         MultiLine       =   -1  'True
         ScrollBars      =   2  'Vertical
         TabIndex        =   8
         ToolTipText     =   "Enter any remark for this Purchase Order"
         Top             =   960
         Width           =   2775
      End
      Begin MSComCtl2.DTPicker datepk 
         Height          =   315
         Left            =   4680
         TabIndex        =   6
         ToolTipText     =   "Select the issued date for this Purchase Order"
         Top             =   240
         Width           =   2775
         _ExtentX        =   4895
         _ExtentY        =   556
         _Version        =   393216
         Format          =   19726336
         CurrentDate     =   38148
      End
      Begin VB.Label Label6 
         Caption         =   "Emp ID:"
         Height          =   255
         Left            =   3960
         TabIndex        =   18
         Top             =   600
         Width           =   615
      End
      Begin VB.Label Label5 
         Caption         =   "Remark:"
         Height          =   255
         Left            =   3960
         TabIndex        =   17
         Top             =   960
         Width           =   615
      End
      Begin VB.Label Label1 
         Caption         =   "Date:"
         Height          =   255
         Left            =   3960
         TabIndex        =   15
         Top             =   240
         Width           =   615
      End
   End
   Begin VB.Label Label4 
      Caption         =   "Total:"
      Height          =   255
      Left            =   120
      TabIndex        =   16
      Top             =   4800
      Width           =   615
   End
   Begin VB.Image Image1 
      Height          =   480
      Left            =   120
      Picture         =   "frmPurchase.frx":08CA
      Top             =   120
      Width           =   480
   End

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -