VERSION 5.00
Begin VB.Form acordc 
   BackColor       =   &H000000FF&
   Caption         =   "Ac Or Dc"
   ClientHeight    =   7395
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   11730
   BeginProperty Font 
      Name            =   "MS Sans Serif"
      Size            =   18
      Charset         =   0
      Weight          =   700
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   LinkTopic       =   "Form3"
   ScaleHeight     =   7395
   ScaleWidth      =   11730
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdexit 
      Caption         =   "EXIT"
      Height          =   735
      Left            =   6120
      TabIndex        =   3
      Top             =   6000
      Width           =   2295
   End
   Begin VB.CommandButton DC 
      BackColor       =   &H000000FF&
      Caption         =   "DC"
      Height          =   855
      Left            =   8280
      TabIndex        =   1
      Top             =   4200
      Width           =   1935
   End
   Begin VB.CommandButton cmdAC 
      Caption         =   "AC"
      Height          =   855
      Left            =   3960
      TabIndex        =   0
      Top             =   4200
      Width           =   1935
   End
   Begin VB.Label Label1 
      BackColor       =   &H000000FF&
      Caption         =   "Please choose either Ac or DC or click to exit to leave the program "
      ForeColor       =   &H0000FFFF&
      Height          =   1095
      Left            =   3960
      TabIndex        =   4
      Top             =   2400
      Width           =   6615
   End
   Begin VB.Label lblinitials1 
      BackColor       =   &H000000FF&
      ForeColor       =   &H0000FFFF&
      Height          =   1095
      Left            =   3360
      TabIndex        =   2
      Top             =   360
      Width           =   7935
   End
End
Attribute VB_Name = "acordc"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub acordc_Load()
'Ask the User for Initials when the program starts
lblinitials.Caption = "Created by " + InputBox("Please Enter Your name ", "Electronics Calculator")

End Sub
Private Sub cmdAC_Click()
acordc.Hide
AC.Show


End Sub

Private Sub cmdexit_Click()



'click to end program
'Click to show program end message
dummy = MsgBox("thank you for using azi programming©", , "Good Bye")
'End Program
End
End Sub


Private Sub DC_Click()
acordc.Hide
frmresistance.Show

End Sub

Private Sub Form_Load()
'Ask the User for Initials when the program starts
lblinitials1.Caption = "Created by " + InputBox("Please Enter Your name and course code", "Electronics Calculator")

End Sub


