frm_bookrecordshow.frm
来自「关于图书馆管理的vfp程序」· FRM 代码 · 共 66 行
FRM
66 行
VERSION 5.00
Begin VB.Form Frm_BookRecordShow
BackColor = &H8000000A&
BorderStyle = 3 'Fixed Dialog
Caption = "卡片信息"
ClientHeight = 6270
ClientLeft = 5700
ClientTop = 3315
ClientWidth = 5745
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6270
ScaleWidth = 5745
ShowInTaskbar = 0 'False
Begin VB.PictureBox Pic_Rec
AutoRedraw = -1 'True
BackColor = &H80000009&
BorderStyle = 0 'None
DataField = "出版年份"
DataSource = "Data1"
Height = 6015
Left = 120
ScaleHeight = 6015
ScaleWidth = 5295
TabIndex = 0
Top = 120
Width = 5295
End
End
Attribute VB_Name = "Frm_BookRecordShow"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim SQL As String
Dim Index As String
Dim Npostion
Dim Cpostion
Private Sub Form_Load()
ColField = Frm_SingleQuery.DataGrid1.Text
Npostion = Frm_SingleQuery.DataGrid1.Row
Cpostion = Frm_SingleQuery.DataGrid1.Col
Frm_SingleQuery.Adodc1.Recordset.MoveFirst
'Frm_SingleQuery.Adodc1.Recordset.MoveLast
Frm_SingleQuery.Adodc1.Recordset.Move RowPosition
Pic_Rec.Print Frm_SingleQuery.Adodc1.Recordset.Fields(7)
'Data1.RecordSource = App.Path + "\book"
'SQL = "SELECT * from 书籍资料 where 书籍资料.索书号= '" & ColField & "'"
'Data1.RecordSource = SQL
'Data1.Refresh
End Sub
Private Sub Picture1_Click()
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?