67 lines
1.9 KiB
Plaintext
67 lines
1.9 KiB
Plaintext
VERSION 5.00
|
|
Object = "{C4847593-972C-11D0-9567-00A0C9273C2A}#2.2#0"; "CRVIEWER.DLL"
|
|
Begin VB.Form frmCR3
|
|
Caption = "Form3"
|
|
ClientHeight = 3195
|
|
ClientLeft = 60
|
|
ClientTop = 345
|
|
ClientWidth = 4680
|
|
LinkTopic = "Form3"
|
|
ScaleHeight = 3195
|
|
ScaleWidth = 4680
|
|
StartUpPosition = 3 'Windows Default
|
|
Begin CRVIEWERLibCtl.CRViewer CRViewer1
|
|
Height = 7005
|
|
Left = 60
|
|
TabIndex = 0
|
|
Top = 0
|
|
Width = 5805
|
|
DisplayGroupTree= -1 'True
|
|
DisplayToolbar = -1 'True
|
|
EnableGroupTree = -1 'True
|
|
EnableNavigationControls= -1 'True
|
|
EnableStopButton= -1 'True
|
|
EnablePrintButton= -1 'True
|
|
EnableZoomControl= -1 'True
|
|
EnableCloseButton= -1 'True
|
|
EnableProgressControl= -1 'True
|
|
EnableSearchControl= -1 'True
|
|
EnableRefreshButton= 0 'False
|
|
EnableDrillDown = -1 'True
|
|
EnableAnimationControl= 0 'False
|
|
EnableSelectExpertButton= 0 'False
|
|
EnableToolbar = -1 'True
|
|
DisplayBorder = 0 'False
|
|
DisplayTabs = -1 'True
|
|
DisplayBackgroundEdge= -1 'True
|
|
SelectionFormula= ""
|
|
EnablePopupMenu = -1 'True
|
|
EnableExportButton= 0 'False
|
|
EnableSearchExpertButton= 0 'False
|
|
End
|
|
End
|
|
Attribute VB_Name = "frmCR3"
|
|
Attribute VB_GlobalNameSpace = False
|
|
Attribute VB_Creatable = False
|
|
Attribute VB_PredeclaredId = True
|
|
Attribute VB_Exposed = False
|
|
Dim Report As New CrystalReport2
|
|
|
|
Option Explicit
|
|
|
|
Private Sub Form_Load()
|
|
Screen.MousePointer = vbHourglass
|
|
CRViewer1.ReportSource = Report
|
|
CRViewer1.ViewReport
|
|
Screen.MousePointer = vbDefault
|
|
|
|
End Sub
|
|
|
|
Private Sub Form_Resize()
|
|
CRViewer1.Top = 0
|
|
CRViewer1.Left = 0
|
|
CRViewer1.Height = ScaleHeight
|
|
CRViewer1.Width = ScaleWidth
|
|
|
|
End Sub
|