Jedna z možností s využitím "Select" a "On Error GoTo".
P.
Př.:
Sub Overeni_existence_TextBoxu()
Dim msg As Byte
On Error GoTo Neexistuje
Sheets(List1.Name).TextBox1.Select
msg = MsgBox("Existuje")
Exit Sub
Neexistuje:
msg = MsgBox("Neexistuje")
End Subcitovat
P.
Př.:
Sub Overeni_existence_TextBoxu()
Dim msg As Byte
On Error GoTo Neexistuje
Sheets(List1.Name).TextBox1.Select
msg = MsgBox("Existuje")
Exit Sub
Neexistuje:
msg = MsgBox("Neexistuje")
End Subcitovat