Try
Convert.ToInt32(txtLicen.Text)
If (txtLicen.Text.StartsWith("ท")) And (txtLicen.Text.StartsWith("ม")) Then
MessageBox.Show("ต้องขึ้นต้นด้วย ท หรือ ม เท่านั้น")
End If
Catch ex As Exception
MessageBox.Show("ทะเบียนรถจะเป็นตัวเลขไม่ได้")
End Try
Tag : .NET, Ms SQL Server 2005, VS 2008 (.NET 3.x)
Date :
2010-08-13 13:48:56
By :
404Not Found
View :
1767
Reply :
6
No. 1
Guest
If ((txtLicen.Text.FindString("ท") || txtLicen.Text.FindString("ม")) = -1)
MessageBox.show("ต้องขึ้นต้นด้วย ท หรือ ม เท่านั้น")
else
'ขึ้นต้นด้วย ท หรือ ม แล้วทำอะไรว่าไป
end if