Hi
Is anyone familiar with vb in Testpartner? Can u please enlighten me as to how you stop a script when invalid data is entered and move to the next database record? I know the recordset.moven ext bit but I just can't get the rest!!!!!
Thanks!!
User Profile
Collapse
-
TestPartner Scripts
-
Vb/SQL
Can anyone tell me how to construct an sql insert statement that includes a variable? Please? Thanks! -
You need to do this in the before update event
Try this
if isnull textbox(name) then
cancel = true
msgbox.....
set focus to textbox
end if
or this
varible name = Trim$(txtbox(na me))
If Len(variable) = 0 Then
MsgBox
Cancel = True
end if
Hope it helps!!!...Leave a comment:
No activity results to display
Show More
Leave a comment: