?? datareportdemo.dsr
字號:
VERSION 5.00
Begin {78E93846-85FD-11D0-8487-00A0C90DC8A9} DataReportDemo
Caption = "DataReport1"
ClientHeight = 5100
ClientLeft = 60
ClientTop = 345
ClientWidth = 8130
StartUpPosition = 3 '窗口缺省
WindowState = 2 'Maximized
_ExtentX = 14340
_ExtentY = 8996
_Version = 393216
_DesignerVersion= 100684101
ReportWidth = 7545
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋體"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
GridX = 1
GridY = 1
LeftMargin = 1440
RightMargin = 1440
TopMargin = 1440
BottomMargin = 1440
NumSections = 7
SectionCode0 = 1
BeginProperty Section0 {1C13A8E0-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Section4"
Object.Height = 360
NumControls = 0
EndProperty
SectionCode1 = 2
BeginProperty Section1 {1C13A8E0-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Section2"
Object.Height = 360
NumControls = 1
ItemType0 = 3
BeginProperty Item0 {1C13A8E1-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Label1"
Object.Left = 2268
Object.Width = 1440
Object.Height = 240
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋體"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Object.Caption = "外協加工單列表"
EndProperty
EndProperty
SectionCode2 = 3
BeginProperty Section2 {1C13A8E0-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Group1head"
Object.Height = 360
NumControls = 0
EndProperty
SectionCode3 = 4
BeginProperty Section3 {1C13A8E0-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Section1"
Object.Height = 300
NumControls = 1
ItemType0 = 4
BeginProperty Item0 {1C13A8E2-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Text1"
Object.Left = 1134
Object.Width = 1134
Object.Height = 300
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋體"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
EndProperty
SectionCode4 = 5
BeginProperty Section4 {1C13A8E0-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Group1foot"
Object.Height = 360
NumControls = 0
EndProperty
SectionCode5 = 7
BeginProperty Section5 {1C13A8E0-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Section3"
Object.Height = 360
NumControls = 0
EndProperty
SectionCode6 = 8
BeginProperty Section6 {1C13A8E0-A0B6-11D0-848E-00A0C90DC8A9}
_Version = 393216
Name = "Section5"
Object.Height = 360
NumControls = 0
EndProperty
End
Attribute VB_Name = "DataReportDemo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Attribute VB_Ext_KEY = "RVB_ModelStereotype" ,"DataReport"
'**************************************
'* 模 塊 名 稱 :應用程序啟動窗體
'* 功 能 描 述 :應用程序啟動窗體
'* 程序員姓名 : 陳齊國
'* 最后修改人 : 陳齊國
'* 最后修改時間:2005/09/09
'**************************************
Option Explicit
Private m_dao As CooperateDAO ' 生產外協單數據庫操作類
Private m_recordset As ADODB.Recordset ' 數據操作數據集對象
'**************************************
'* 功 能 描 述 :查找打印數據并與打印控件幫定
'* 輸 入 參 數 :operaterType - 1 打印所有
'* 輸 出 能 數 :無
'**************************************
Public Function PrintData(operaterType As Integer)
Dim ret As Boolean
Dim txt As New Collection
Dim ctl As Object
If operaterType = 1 Then
ret = m_dao.FindAllCooperate(m_recordset, -1, "", "", "", "")
End If
Set Me.DataSource = m_recordset
Me.Sections(2).Controls("Label1").caption = "列表"
For Each ctl In Me.Sections.Item("Section1").Controls
If TypeName(ctl) = "RptTextBox" Then
Select Case ctl.name
Case "Text1"
ctl.DataField = m_recordset.Fields("bomName").name
End Select
End If
Next
End Function
Private Sub DataReport_Initialize()
Set m_dao = New CooperateDAO
Set m_recordset = New ADODB.Recordset
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -