Recent content by Shadoz

  1. S

    Linking ComboBox colums to Labels/Images

    There is already a system in place when a 911 call is received that Security receives an email with the name of employee and floor number. The form I'm making will allow the officer to then input the persons name and find exactly where their office is.
  2. S

    Linking ComboBox colums to Labels/Images

    Unfortunately I cannot. My current VBA code is as follows: Private Sub Combo10_AfterUpdate() If Me.Combo10.Column(1) = "Label1" Then Me.Label1.Visible = True Me.Image0.Visible = True ElseIf Me.Combo10.Column(1) = Label2 Then Me.Label2.Visible = True Me.Image1.Visible =...
  3. S

    Linking ComboBox colums to Labels/Images

    I have started working with MS Access for my employer and I have been tasked with creating a 911 floor tool for our Security staff. When 911 is dialed by anyone in the building Security will receive an email with their name and floor number. The idea for the tool I would be making is when a...
Back
Top Bottom