, Eliot Hunter (ID: 16002495) Assignment B Unit 14 Event Driven Programming
Implementation
User Interface
Sign in Form
The purpose of this form is to get the user to sign in to the whole program so they can fill out the
customers contact details, what car they want and the pricing at the end. This is the code:
Public Class FormSignIn
Dim Attempt As Integer = 0
Private Sub SignInBtn_Click(sender As Object, e As EventArgs) Handles SignInBtn.Click
Dim CorrectPassword As String = "carhire"
Dim CorrectUsername As String = "carhire"
Dim InputPassword As String = txtPassword.Text
Do Until (InputPassword = CorrectPassword) Or (Attempt = 5)
Attempt += 1
MsgBox("Password invalid", MsgBoxStyle.Critical, "Login Error.")
txtPassword.Text = ""
txtPassword.Focus()
Exit Sub
Loop
If Attempt < 5 Then
MsgBox("Welcome to Especially For you.") 'This gives the user 5 attempts to log into
the system.
Me.Hide()
FormContactDetails.Show()
Else
MsgBox("Access Denied too many times, System has locked you out.") 'If the user has
had more than 5 attempts then the system locks you out.
txtPassword.Enabled = False
SignInBtn.Enabled = False
btnHelpSignIn.Enabled = False
1|Page
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller TopGradedWork. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $4.50. You're not tied to anything after your purchase.