home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form CommonForm
- BackColor = &H8000000F&
- Caption = "IPS Daily Time Summary"
- ClientHeight = 4185
- ClientLeft = 2715
- ClientTop = 1440
- ClientWidth = 4980
- Height = 4560
- Left = 2670
- LinkTopic = "Form1"
- ScaleHeight = 4185
- ScaleWidth = 4980
- Top = 1110
- Width = 5070
- Begin PictureClip CCNSelectPics
- Cols = 4
- Location = "1020,765,75,1260"
- Picture = CMDIALOG.FRX:0000
- Rows = 3
- End
- Begin CommonDialog CMDialog1
- CancelError = -1 'True
- DefaultExt = "tim"
- Filter = "Daily Time (*.tim) | *.tim|Databases (*.mdb) | *.mdb | Summaries (*.sum) | *.sum|Bitmaps (*.bmp)|*.bmp|Text Files(*.txt)|*.txt|Program Files(*.exe)|*.exe|All Files(*.*)|*.*"
- Left = 630
- Top = 225
- End
- Begin SSPanel ButtonBar
- Align = 2 'Align Bottom
- Height = 780
- Left = 0
- TabIndex = 0
- Top = 3405
- Width = 4980
- Begin SSCommand CmdButton
- Caption = "&Re-Select"
- Height = 465
- Index = 1
- Left = 1770
- TabIndex = 3
- Top = 165
- Width = 1470
- End
- Begin SSCommand CmdButton
- Caption = "&OK"
- Height = 465
- Index = 0
- Left = 150
- TabIndex = 2
- Top = 165
- Width = 1470
- End
- Begin SSCommand CmdButton
- Caption = "&Cancel"
- Height = 465
- Index = 2
- Left = 3390
- TabIndex = 1
- Top = 165
- Width = 1470
- End
- End
- Begin Image ImageBox
- BorderStyle = 1 'Fixed Single
- Height = 2175
- Left = 0
- Top = 0
- Width = 2850
- End
- '-----------------------------------------------------------------------
- ' IPS Time and MDB Patch Tool (TALAS), Version 1.0
- Copyright 1995 (Unpublished) Integrated Planning Systems, inc.
- ' All Rights Reserved.
- ' Integrated Planning Systems Proprietary Rights are included in this
- ' Software, in the data or documentation relating thereto, and in the
- ' information disclosed therein. Neither this software, regardless of
- ' the form in which it exists, nor such data or information may be
- ' used by or disclosed to others for any purpose except as specifically
- ' authorized in writing by Integrated Planning Systems, inc.
- ' This software was developed exclusively at private expense
- ' as defined in DFARS 252.227-7013(a)(12).
- ' This software was developed under IPS General and Administrative
- ' Account A1035LAS.
- '-----------------------------------------------------------------------
- Option Explicit
- Sub CmdButton_Click (Index As Integer)
- Select Case Index
- Case 0
- CommonForm.Tag = "OK"
- CmdButton(Index).Value = False
- CommonForm.Visible = False
- Case 1
- CommonForm.Tag = "ReSelect"
- CmdButton(Index).Value = False
- CommonForm.Visible = False
- Case 2
- CommonForm.Tag = "Cancel"
- CmdButton(Index).Value = False
- CommonForm.Visible = False
- Case Else
- CommonForm.Tag = ""
- CmdButton(Index).Value = False
- CommonForm.Visible = False
- End Select
- End Sub
- Sub Form_Unload (Cancel As Integer)
- Set CommonForm = Nothing
- End Sub
-