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

📄 frmfi_usufx.frm

📁 一个用VB写的财务软件源码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmFI_UsuFX 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "方向选择"
   ClientHeight    =   1650
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4770
   Icon            =   "frmFI_UsuFX.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1650
   ScaleWidth      =   4770
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton cmdUndo 
      Caption         =   "取消(&U)"
      Height          =   345
      Left            =   3360
      TabIndex        =   4
      Top             =   960
      Width           =   1065
   End
   Begin VB.CommandButton cmdOK 
      Caption         =   "确定(&O)"
      Height          =   345
      Left            =   3360
      TabIndex        =   3
      Top             =   480
      Width           =   1065
   End
   Begin VB.Frame Frame1 
      Caption         =   "方向设置"
      Height          =   1215
      Left            =   360
      TabIndex        =   0
      Top             =   240
      Width           =   2655
      Begin VB.OptionButton optDF 
         Caption         =   "贷方"
         Height          =   255
         Left            =   360
         TabIndex        =   2
         Top             =   720
         Width           =   855
      End
      Begin VB.OptionButton optJF 
         Caption         =   "借方"
         Height          =   255
         Left            =   360
         TabIndex        =   1
         Top             =   360
         Value           =   -1  'True
         Width           =   855
      End
   End
End
Attribute VB_Name = "frmFI_UsuFX"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public sFX As String

Private Sub cmdOK_Click()
    If optJF = True Then
       sFX = "借"
    Else
       sFX = "贷"
    End If
    Unload Me
End Sub

Private Sub cmdUndo_Click()
    Unload Me
End Sub

⌨️ 快捷键说明

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