shawnmandel
MIS
I have the following table:
[tt]1 ABC Company[/tt]
[tt]1 ABC Company[/tt]
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Range("I4").Value = ComboBox1.Column(0)
Range("I5").Value = ComboBox1.Column(1)
Range("I6").Value = ComboBox1.Column(2)
[blue]Private Sub ComboBox1_LostFocus()
If Me.ComboBox1.ListIndex = -1 Then
MsgBox "Naughty, naughty!"
Me.ComboBox1.Activate
End If
End Sub[/blue]