Foxtable(狐表)用户栏目专家坐堂 → [求助]文本框编辑


  共有2115人关注过本帖树形打印复制链接

主题:[求助]文本框编辑

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/10/29 17:03:00 [显示全部帖子]

Dim txt As WinForm.TextBox = e.Form.Controls("TextBox1")
Dim ary() As String = txt.Text.replace(chr(10), "").Split(chr(13))
Dim str As String = ""
For Each s As String In ary
    If s.trim > "" Then
        s =s.TrimEnd(".").TrimEnd(",").TrimEnd(";").Replace(":","").Replace(";",",").Replace(",",",").Replace("?",",").Replace(".",",")& "."
    End If
    str & = "    "& s.trim & vbcrlf  '行首空格
Next
systemready = False
Dim i As Integer = e.sender.SelectionStart
txt.text = str
e.sender.SelectionStart = i
systemready = True

 回到顶部