VB.NET - Label รับค่าจาก textbox มาแสดง ถ้าค่าซ้ำ ให้แจ้ง Error เพื่อป้อนค่าใหม่
string.indexof(....)>0
แต่จะติดเรื่องตัวใหญ่ตัวเลกและวรรค
ใช้ replace(" ","") และ ToLower ร่วมด้วย
ประมาณว่า
"_ToLower".replace(" ","").ToLower().indexof("Wer".replace(" ","").ToLower()) >0
Date :
2014-12-01 11:16:29
By :
lamaka.tor
ตอนนี้ผมใช้ Richtextbox อย่างเดียวแล้วครับ แต่ติดตรง
Code (VB.NET)
Private Sub RichTextBox1_TextChanged(sender As Object, e As EventArgs) Handles RichTextBox1.TextChanged
Dim a As String = RichTextBox1.Text
If IndexOutOfRangeException(a) > 0 Then
MessageBox.Show("Error ข้อมูลซ้ำ")
Else
WriteLine(RichTextBox1.Text)
End If
End Sub
งงมากครับ คิดไม่ออก ต้องแก้ไขยังไงครับ
Date :
2014-12-01 11:28:04
By :
sakkapong
ไม่รู้ว่าเอา IndexOutOfRangeException(a) > 0 มาจากไหนนะครับ แต่ถ้าเอาแบบง่ายๆก็
Code (VB.NET)
IF (New String() {txt2.Text,txt3.Text}.Contains(txt1.Text))
Date :
2014-12-01 12:02:00
By :
hamzter
ยังไม่เข้าใจ
IF (New String() {txt2.Text,txt3.Text}.Contains(txt1.Text))
เอาไปใส่ตรงไหนครับ
Date :
2014-12-03 17:06:03
By :
sakkapong
Load balance : Server 01