有什麼錯我的代碼如下:如何從文本框中刪除第一行文本?
Select Case chkSTC.Checked
Case True
txtCargoDescription.Text = Resources._Global.ContrSTC & vbNewLine & txtCargoDescription.Text
Case False
Dim b As String() = Split(txtCargoDescription.Text, vbNewLine)
txtCargoDescription.Text = String.Join(vbNewLine, b, 1, b.Length - 1)
End Select
正如我參考其他參考,
Dim b As String() = Split(txtCargoDescription.Text, vbNewLine)
txtCargoDescription.Text = String.Join(vbNewLine, b, 1, b.Length - 1)
顯示,可以刪除文本框多行的第一行,但它刪除文本框內的所有文本。請幫我解決這個問題。
謝謝你在先進:)
其無法正常工作,還刪除裏面的文本框 –
所有文字我已經寫代碼(Asp.net C#.NET)檢查了它和它的作品100% –
實際情況是,如果用戶選中該複選框,然後在「集裝箱STC: - 「將出現,但如果用戶未選中,則應刪除」Cotanainer STC: - 「。 –