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

📄 frmrepsales.frm

📁 用VB6.0编写的关于车辆运输调度的系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmRepSales 
   Caption         =   "Outstanding Sales Order Exception Report"
   ClientHeight    =   4710
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6855
   BeginProperty Font 
      Name            =   "宋体"
      Size            =   9
      Charset         =   134
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   LinkTopic       =   "Form1"
   MDIChild        =   -1  'True
   ScaleHeight     =   4710
   ScaleWidth      =   6855
   WindowState     =   2  'Maximized
   Begin VB.CommandButton Command3 
      Caption         =   "Exit"
      Height          =   375
      Left            =   4440
      TabIndex        =   2
      Top             =   2520
      Width           =   1095
   End
   Begin VB.CommandButton Command2 
      Caption         =   "Print"
      Height          =   375
      Left            =   2760
      TabIndex        =   1
      Top             =   2520
      Width           =   1095
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Preview"
      Height          =   375
      Left            =   1080
      TabIndex        =   0
      Top             =   2520
      Width           =   1095
   End
   Begin VB.Label Label2 
      Caption         =   "Outstanding Sales Order Exception Report"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   735
      Left            =   720
      TabIndex        =   3
      Top             =   1080
      Width           =   5775
   End
End
Attribute VB_Name = "frmRepSales"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Command1_Click()
Dim sdate As String
sdate = Format(Now, "yyyy=mm-dd")
Set DataEnv = New DataEnv

DataEnv.CmdRepSalesOrder_Grouping CLng(Mid(sdate, 1, 4) & Mid(sdate, 6, 2) & Mid(sdate, 9, 2))

  RepSalExcept.Show
    
End Sub

Private Sub Command2_Click()
Dim sdate As String
sdate = Format(Now, "yyyy=mm-dd")
Set DataEnv = New DataEnv

DataEnv.CmdRepSalesOrder_Grouping CLng(Mid(sdate, 1, 4) & Mid(sdate, 6, 2) & Mid(sdate, 9, 2))

  RepSalExcept.PrintReport False, rptRangeAllPages

End Sub

Private Sub Command3_Click()
Unload Me
End Sub

Private Sub Form_Activate()
Command1.SetFocus
End Sub

⌨️ 快捷键说明

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