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

📄 frmdessolve.frm

📁 售后服务系统 优质的售后服务是企业生存和市场竞争的保障
💻 FRM
字号:
VERSION 5.00
Begin VB.Form FrmDesSolve 
   Caption         =   "问题解决描述"
   ClientHeight    =   3090
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4590
   LinkTopic       =   "Form1"
   ScaleHeight     =   3090
   ScaleWidth      =   4590
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton Cmd_Cancel 
      Caption         =   "取 消"
      Height          =   375
      Left            =   2468
      TabIndex        =   3
      Top             =   2520
      Width           =   1095
   End
   Begin VB.CommandButton Cmd_OK 
      Caption         =   "确 定"
      Height          =   375
      Left            =   1028
      TabIndex        =   2
      Top             =   2520
      Width           =   1095
   End
   Begin VB.TextBox txtDetail 
      Height          =   1695
      Left            =   240
      MultiLine       =   -1  'True
      ScrollBars      =   2  'Vertical
      TabIndex        =   1
      Top             =   600
      Width           =   4095
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      Caption         =   "请输入问题的原因和解决的方法"
      Height          =   180
      Left            =   240
      TabIndex        =   0
      Top             =   240
      Width           =   2520
   End
End
Attribute VB_Name = "FrmDesSolve"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public OriProId As Long
Private Sub Cmd_Cancel_Click()
  Unload Me
End Sub

Private Sub Cmd_OK_Click()
  If Len(Trim(txtDetail)) = 0 Then
    MsgBox "请输入问题解决的方法"
    txtDetail.SetFocus
    Exit Sub
  End If
  '更改分配表的信息
  MyDespatch.RespUser = CurUser.UserName
  MyDespatch.DespDate = Format(Now, "yyyy-mm-dd")
  MyDespatch.DespSuggest = Trim(txtDetail)
  MyDespatch.Update (OriProId)
  '更新问题状态
  MyPro.Status = "解决"
  MyPro.UpdateStatus (OriProId)
  Unload Me
End Sub

⌨️ 快捷键说明

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