home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmXLTest
- Caption = "Report to Excel Class Test"
- ClientHeight = 735
- ClientLeft = 1140
- ClientTop = 1515
- ClientWidth = 3870
- Height = 1140
- Icon = "XLTest.frx":0000
- Left = 1080
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 735
- ScaleWidth = 3870
- Top = 1170
- Width = 3990
- Begin VB.CommandButton cmdSend2XL
- Caption = "Insert Access Data into Excel...."
- Height = 495
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 3615
- End
- Attribute VB_Name = "frmXLTest"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private clsR2XL As New clsReportToXL
- Private Sub cmdSend2XL_Click()
- frmReturn.Display Me
- clsR2XL.ReportToExcel App.Path & "\bugs.mdb"
- End Sub
- Private Sub Form_Load()
- Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 2
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- DestroyObject
- End
- End Sub
- Public Sub DestroyObject()
- Set clsR2XL = Nothing
- End Sub
-