selectstock.frm

来自「一个股票分析的源码,vb实现」· FRM 代码 · 共 115 行

FRM
115
字号
VERSION 5.00
Begin VB.Form OneStockInformation 
   Caption         =   "Form2"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form2"
   MDIChild        =   -1  'True
   ScaleHeight     =   11115
   ScaleWidth      =   15240
   Begin VB.CommandButton Command7 
      Caption         =   "某价位下有几天"
      Height          =   615
      Left            =   3000
      TabIndex        =   6
      Top             =   3360
      Width           =   1815
   End
   Begin VB.CommandButton Command6 
      Caption         =   "返回"
      Height          =   615
      Left            =   6720
      TabIndex        =   5
      Top             =   360
      Width           =   1695
   End
   Begin VB.CommandButton Command5 
      Caption         =   "价位限定"
      Height          =   540
      Left            =   480
      TabIndex        =   4
      Top             =   1320
      Width           =   1695
   End
   Begin VB.CommandButton Command4 
      Caption         =   "日期限定"
      Height          =   615
      Left            =   480
      TabIndex        =   3
      Top             =   360
      Width           =   1695
   End
   Begin VB.CommandButton Command3 
      Caption         =   "最近哪天是今日价"
      Height          =   615
      Left            =   3000
      TabIndex        =   2
      Top             =   2280
      Width           =   1815
   End
   Begin VB.CommandButton Command2 
      Caption         =   "各价位的成交量"
      Height          =   615
      Left            =   3000
      TabIndex        =   1
      Top             =   1320
      Width           =   1815
   End
   Begin VB.CommandButton Command1 
      Caption         =   "升降10%的周期"
      Height          =   615
      Left            =   3000
      TabIndex        =   0
      Top             =   360
      Width           =   1815
   End
End
Attribute VB_Name = "OneStockInformation"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
     RetVal = getPeriodic()
     
End Sub

Private Sub Command2_Click()
     RetVal = getTotalChange()

End Sub

Private Sub Command3_Click()
     RetVal = getJingDate()
End Sub

Private Sub Command4_Click()
     RetVal = getDate()
End Sub

Private Sub Command5_Click()
     RetVal = getPrice()

End Sub

Private Sub Command6_Click()
     Unload OneStockInformation
End Sub

Private Sub Command7_Click()
     RetVal = getDownOfPriceDates()

End Sub

Private Sub Form_Load()
     OneStockInformation.Height = MainForm.Height * 2 / 3
     OneStockInformation.Width = MainForm.Width * 2 / 3
     
     OneStockInformation.Left = (MainForm.Width - OneStockInformation.Width) \ 2
     
     OneStockInformation.Top = (MainForm.Height - OneStockInformation.Height) \ 2
     
End Sub

⌨️ 快捷键说明

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