How do i validate that there is "text" in my "txtbox"?
I tried to convert it from my "date-code" to:
Text
Word
Charactar
Data
IsString
And InStr
What should i use instead of the "Word-code"?
I just cannot find it anywhere on google...
I tried to convert it from my "date-code" to:
Text
Word
Charactar
Data
IsString
And InStr
Rich (BB code):
If Not IsWord(TxtNaam.Value) Then
MsgBox "Vul Alsjeblieft een naam in."
Exit Sub
What should i use instead of the "Word-code"?
I just cannot find it anywhere on google...
Rich (BB code):
Private Sub cmdinvullen_Click()
If Me.TxtNaam.Value = "" Then
MsgBox "Vul alsjeblieft je naam in.", vbExclamation, "Invulformulier Ideeën Bord"
Me.TxtNaam.SetFocus
Exit Sub
End If
If Me.txtidee.Value = "" Then
MsgBox "Vul alsjeblieft je idee in.", vbExclamation, "Invulformulier Ideeën Bord"
Me.txtidee.SetFocus
Exit Sub
End If
If Not IsWord(TxtNaam.Value) Then
MsgBox "Vul Alsjeblieft een naam in."
Exit Sub
End If
If Me.ComboBox1.Value = "" Then
MsgBox "Vul alsjeblieft je team in.", vbExclamation, "Invulformulier Ideeën Bord"
Me.ComboBox1.SetFocus
Exit Sub
End If
If Datum.Value = "" Then
MsgBox "Vul alsjeblieft een datum in."
Exit Sub
Else
If Not IsDate(Datum.Value) Then
MsgBox "Ongeldige datum ingevoerd."
Exit Sub
End If
If (Datum.Value <= Date$) Then
MsgBox "Datum dient in de toekomst te liggen."
Exit Sub
End If
End If
Dim Resp As Variant
Resp = MsgBox("Je hebt de volgende informatie ingevoerd, klopt dit? " & vbNewLine & "Naam : " & Me.TxtNaam.Value & vbNewLine & "Team : " & Me.ComboBox1.Value & vbNewLine & "Idee : " & Me.txtidee.Value, vbYesNo + vbQuestion)
If Resp = vbNo Then
Exit Sub
Else
MsgBox "Idee ingevoerd!"
End If
RowCount = Worksheets("Archief").Range("B1").CurrentRegion.Rows.Count
With Worksheets("Archief").Range("B1")
.Offset(RowCount, 14).Value = Me.TxtNaam.Value
.Offset(RowCount, 0).Value = Me.txtidee.Value
.Offset(RowCount, 15).Value = Me.ComboBox1.Value
If Me.chkTijd.Value = True Then
.Offset(RowCount, 19).Value = "X"
Else
.Offset(RowCount, 19).Value = ""
End If
If Me.chkGeld.Value = True Then
.Offset(RowCount, 20).Value = "X"
Else
.Offset(RowCount, 20).Value = ""
End If
If Me.chkCollegas.Value = True Then
.Offset(RowCount, 21).Value = "X"
Else
.Offset(RowCount, 21).Value = ""
End If
If Me.chkToestemming.Value = True Then
.Offset(RowCount, 22).Value = "X"
Else
.Offset(RowCount, 22).Value = ""
End If
If Me.chkRuimte.Value = True Then
.Offset(RowCount, 23).Value = "X"
Else
.Offset(RowCount, 23).Value = ""
End If
If Me.chkAnders.Value = True Then
.Offset(RowCount, 24).Value = "X"
Else
.Offset(RowCount, 24).Value = ""
End If
If Me.chkAchmeaVitale.Value = True Then
.Offset(RowCount, 1).Value = "X"
Else
.Offset(RowCount, 1).Value = ""
End If
If Me.chkKeuringen.Value = True Then
.Offset(RowCount, 2).Value = "X"
Else
.Offset(RowCount, 2).Value = ""
End If
If Me.chkKlantenservice.Value = True Then
.Offset(RowCount, 3).Value = "X"
Else
.Offset(RowCount, 3).Value = ""
End If
If Me.chkFrontoffice.Value = True Then
.Offset(RowCount, 4).Value = "X"
Else
.Offset(RowCount, 4).Value = ""
End If
If Me.chkExoten.Value = True Then
.Offset(RowCount, 5).Value = "X"
Else
.Offset(RowCount, 5).Value = ""
End If
If Me.chkMKB.Value = True Then
.Offset(RowCount, 6).Value = "X"
Else
.Offset(RowCount, 6).Value = ""
End If
If Me.chkDAM.Value = True Then
.Offset(RowCount, 7).Value = "X"
Else
.Offset(RowCount, 7).Value = ""
End If
If Me.chkBA.Value = True Then
.Offset(RowCount, 8).Value = "X"
Else
.Offset(RowCount, 8).Value = ""
End If
If Me.chkRAM.Value = True Then
.Offset(RowCount, 9).Value = "X"
Else
.Offset(RowCount, 9).Value = ""
End If
If Me.chkSAM.Value = True Then
.Offset(RowCount, 10).Value = "X"
Else
.Offset(RowCount, 10).Value = ""
End If
If Me.chkAMI.Value = True Then
.Offset(RowCount, 11).Value = "X"
Else
.Offset(RowCount, 11).Value = ""
End If
If Me.chkGMAT5.Value = True Then
.Offset(RowCount, 12).Value = "X"
Else
.Offset(RowCount, 12).Value = ""
End If
If Me.chkICO.Value = True Then
.Offset(RowCount, 13).Value = "X"
Else
.Offset(RowCount, 13).Value = ""
.Offset(RowCount, 16).Value = Format(Now, "dd/mm/yyyy hh:nn")
End If
.Offset(RowCount, 17).Value = DateValue(Datum.Text)
End With
Unload Me
End Sub
Private Sub cmdsluiten_Click()
Unload Me
End Sub
Private Sub UserForm_Click()
End Sub