本文介绍了处理工作 - 有人可以仔细检查的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我希望某些文本框(只有某些文本框)总是被修剪,所以 空格不在开头, 也不是结束输入的文字。 我创建了自己的Handle? - 我希望这是正确的术语, 并且它有效。这是正确的方法吗? 我必须使用DirectCast来获取文本框名称。 Private Sub TrimValues(ByVal sender As System.Object ,ByVal e As EventArgs)_ 处理txtOne.Leave,txtTwo.Leave,txtThree.Leave,txtFour.Leave,_ txtFive .Leave,txtSix.Leave,txtSeven.Leave DirectCast(sender,TextBox).Text = Trim(DirectCast(发件人, TextBox).Text) End Sub 谢谢, MiroI wanted certain text boxes ( only certain ones ) to always be Trim''d sothat spaces are not in the begining,nor the end of the text entered.I created my own "Handle ?" - i hope thats the right terminology,and it works. Is this the right way to do this?I had to use DirectCast to get the textbox name.Private Sub TrimValues(ByVal sender As System.Object, ByVal e AsEventArgs) _Handles txtOne.Leave, txtTwo.Leave, txtThree.Leave, txtFour.Leave, _txtFive.Leave, txtSix.Leave, txtSeven.LeaveDirectCast(sender, TextBox).Text = Trim(DirectCast(sender,TextBox).Text)End SubThanks,Miro推荐答案 这篇关于处理工作 - 有人可以仔细检查的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-04 07:01