home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "MyCompany"
- ClientHeight = 4140
- ClientLeft = 3120
- ClientTop = 1935
- ClientWidth = 4365
- Height = 4545
- Left = 3060
- LinkTopic = "Form1"
- ScaleHeight = 4140
- ScaleWidth = 4365
- Top = 1590
- Width = 4485
- Begin VB.CommandButton Command2
- Caption = "Hide CopyRight"
- Height = 375
- Left = 840
- TabIndex = 1
- Top = 960
- Width = 2535
- End
- Begin VB.CommandButton Command1
- Caption = "Show CopyRight"
- Height = 375
- Left = 840
- TabIndex = 0
- Top = 360
- Width = 2535
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private MyRights As New CopyR
- Private Sub Command1_Click()
- Form2.BackColor = vbBlue
- Form2.Text1.BackColor = vbYellow
- Form2.Text1.TEXT = "All rights reserved by " & MyRights.Msg1 & Chr(169) & vbCrLf & MyRights.Copy_Date & vbCrLf & MyRights.Legal
- Form2.Visible = True
- End Sub
- Private Sub Command2_Click()
- Form2.Hide
- End Sub
- Private Sub Form_Load()
- MyRights.Msg1 = InputBox("Enter your name")
- End Sub
-