is there a way to determine if a inputbox is empty like a text?
exmple
this is my code for the inputbox
tnx in advanced
salsa31
exmple
Code:
if text1.text = "" then
msgbox "requierd fields"
end if
something like this
Code:
Dim strName As String
strName = InputBox("insert a name")
TxtDesc.text = strName
TxtDesc.BackColor = &HC0E0FF
tnx in advanced
salsa31