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

📄 selectsomestock.frm

📁 一个股票分析的源码,vb实现
💻 FRM
字号:
VERSION 5.00
Begin VB.Form SelectSomeStock 
   Caption         =   "Form2"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form2"
   ScaleHeight     =   11115
   ScaleWidth      =   15240
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton Command8 
      Caption         =   "何日开始至今天100%换手完"
      Height          =   615
      Left            =   3840
      TabIndex        =   7
      Top             =   4920
      Width           =   2055
   End
   Begin VB.CommandButton Command7 
      Caption         =   "与大盘同步性"
      Height          =   615
      Left            =   3840
      TabIndex        =   6
      Top             =   3840
      Width           =   2055
   End
   Begin VB.CommandButton Command6 
      Caption         =   "rise or down"
      Height          =   615
      Left            =   3840
      TabIndex        =   5
      Top             =   2640
      Width           =   2055
   End
   Begin VB.CommandButton Command5 
      Caption         =   "返回"
      Height          =   615
      Left            =   6600
      TabIndex        =   4
      Top             =   600
      Width           =   1695
   End
   Begin VB.CommandButton Command4 
      Caption         =   "今日价位下天数"
      Height          =   615
      Left            =   3840
      TabIndex        =   3
      Top             =   1560
      Width           =   1935
   End
   Begin VB.CommandButton Command3 
      Caption         =   "价位限定"
      Height          =   615
      Left            =   600
      TabIndex        =   2
      Top             =   1560
      Width           =   1935
   End
   Begin VB.CommandButton Command2 
      Caption         =   "定期涨速率"
      Height          =   615
      Left            =   3840
      TabIndex        =   1
      Top             =   480
      Width           =   1935
   End
   Begin VB.CommandButton Command1 
      Caption         =   "日期限定"
      Height          =   615
      Left            =   600
      TabIndex        =   0
      Top             =   480
      Width           =   1935
   End
End
Attribute VB_Name = "SelectSomeStock"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
     RetVal = getDate()

End Sub

Private Sub Command2_Click()
     RetVal = getRise()
End Sub

Private Sub Command3_Click()
     RetVal = getPrice()

End Sub

Private Sub Command4_Click()
         RetVal = getDownOfToday()

End Sub

Private Sub Command5_Click()
        Unload SelectSomeStock
End Sub

Private Sub Command6_Click()
     RetVal = getRiseOrDown()

End Sub

Private Sub Command7_Click()
     RetVal = getCompOneStockAndAllStock()

End Sub

Private Sub Command8_Click()
     RetVal = getLongFor100()

End Sub

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

⌨️ 快捷键说明

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