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

📄 form1.frm

📁 本程序是读取钱龙股票数据的
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "读取钱龙数据..."
   ClientHeight    =   5925
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   7920
   LinkTopic       =   "Form1"
   ScaleHeight     =   5925
   ScaleWidth      =   7920
   StartUpPosition =   3  '窗口缺省
   Begin VB.TextBox Text7 
      Height          =   735
      Left            =   1680
      TabIndex        =   6
      Top             =   4440
      Width           =   2055
   End
   Begin VB.TextBox Text6 
      Height          =   615
      Left            =   1680
      TabIndex        =   5
      Top             =   3720
      Width           =   2055
   End
   Begin VB.TextBox Text5 
      Height          =   735
      Left            =   1680
      TabIndex        =   4
      Top             =   2880
      Width           =   2055
   End
   Begin VB.TextBox Text4 
      Height          =   615
      Left            =   1680
      TabIndex        =   3
      Top             =   2160
      Width           =   2055
   End
   Begin VB.TextBox Text3 
      Height          =   495
      Left            =   1680
      TabIndex        =   2
      Top             =   1560
      Width           =   2055
   End
   Begin VB.TextBox Text2 
      Height          =   615
      Left            =   1680
      TabIndex        =   1
      Top             =   720
      Width           =   2055
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Go...."
      Height          =   495
      Left            =   5400
      TabIndex        =   0
      Top             =   4920
      Width           =   1575
   End
   Begin VB.Label Label7 
      Caption         =   "yang51881840@163.com"
      Height          =   375
      Left            =   4440
      TabIndex        =   13
      Top             =   1200
      Width           =   2055
   End
   Begin VB.Label Label6 
      Caption         =   "Volume"
      Height          =   375
      Left            =   480
      TabIndex        =   12
      Top             =   4560
      Width           =   855
   End
   Begin VB.Label Label5 
      Caption         =   "Money"
      Height          =   375
      Left            =   480
      TabIndex        =   11
      Top             =   3840
      Width           =   855
   End
   Begin VB.Label Label4 
      Caption         =   "Close "
      Height          =   375
      Left            =   360
      TabIndex        =   10
      Top             =   3000
      Width           =   975
   End
   Begin VB.Label Label3 
      Caption         =   "Low"
      Height          =   735
      Left            =   360
      TabIndex        =   9
      Top             =   2040
      Width           =   975
   End
   Begin VB.Label Label2 
      Caption         =   "High"
      Height          =   495
      Left            =   480
      TabIndex        =   8
      Top             =   1440
      Width           =   975
   End
   Begin VB.Label Label1 
      Caption         =   "open"
      Height          =   375
      Left            =   480
      TabIndex        =   7
      Top             =   840
      Width           =   855
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim uuu As tindex



Open "d:\SZN.DA_" For Binary As #1

      Get #1, , uuu
      'Text1.Text = uuu.Date
      Text2.Text = uuu.OPen / 1000
      Text3.Text = uuu.High / 1000
      Text4.Text = uuu.Low / 1000
       Text5.Text = uuu.Close / 1000
      Text6.Text = uuu.Money
      Text7.Text = uuu.Volume
      
    Close 1
End Sub


Private Sub Form_Load()

End Sub

⌨️ 快捷键说明

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