lot = txtRMRT_MFG.Text.Trim
If txtRMRT_MFG.Text <> String.Empty Then
lotnum = Split(lot, "/")
For i = 0 To UBound(lotnum)
lblRMRT_LotNo.Text = Me.lblRMRT_LotNo.Text & lotnum(i)
Next
End If
Date :
2017-02-24 15:13:27
By :
NUTKA
No. 2
Guest
Code (VB.NET)
lot = txtRMRT_MFG.Text.Trim
If txtRMRT_MFG.Text <> String.Empty Then
lotnum = Split(lot, "/")
For i = 0 To UBound(lotnum)
lblRMRT_LotNo.Text = Me.lblRMRT_LotNo.Text & lotnum(i)
Next
End If