vb点击command1就删除text1的第一行,代码怎样写???
1个回答
展开全部
Private Sub Command1_Click()
Dim s As String
Dim i As Long
i = InStr(Text1.Text, vbCrLf)
If i >= 0 Then
s = Mid(Text1.Text, i + 2)
Text1.Text = s
End If
End Sub
Private Sub Form_Load()
Dim s As String
s = "this is a test" & vbCrLf
s = s & " program for show how to "
s = s & "delete the first line of textbox control"
Text1.Text = s
End Sub
Dim s As String
Dim i As Long
i = InStr(Text1.Text, vbCrLf)
If i >= 0 Then
s = Mid(Text1.Text, i + 2)
Text1.Text = s
End If
End Sub
Private Sub Form_Load()
Dim s As String
s = "this is a test" & vbCrLf
s = s & " program for show how to "
s = s & "delete the first line of textbox control"
Text1.Text = s
End Sub
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询