当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > 获得光标在多行textbox中的行与列的函数

ASP.NET
aspnet_regsql不能在sql2005下使用的解决
.NET发送邮件
让.Net验证控件与自定义验证合作无间
给.Net程序员和WEB程序员建议:.Net篇
给.Net程序员和WEB程序员建议:WEB篇
Server Application Unavailable错误解决方法
ASP.NET AJAX:UpdatePanel控件
ASP.NET教程:Ref和Out关键字异同
组件Newtonsoft.Json实现object2json转换
ASP.NET教程:Control基类清理页面状态
ASP.NET入门教程:认识ASP.NET
ASP.NET入门教程:ASP.NET和ASP区别
ASP.NET入门教程:简单的ASP.NET页面
ASP.NET入门教程:服务器控件
ASP.NET入门教程:事件句柄
ASP.NET入门教程:Web表单
ASP.NET入门教程:Web表单维持对象的ViewState
ASP.NET入门教程:TextBox控件
ASP.NET入门教程:Button控件
ASP.NET入门教程:数据绑定

ASP.NET 中的 获得光标在多行textbox中的行与列的函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 117 ::
收藏到网摘: n/a

Public Function checkrow() As String
Dim row As Integer = Me.TextBox1.SelectionStart
Dim i As Integer
Dim p As Integer
Dim count As Integer = 0
Dim count1 As Integer = 0
For i = 0 To Me.TextBox1.Lines.GetUpperBound(0)
count += Me.TextBox1.Lines(i).Length + 2 ' 一个回车相当于2个
If row <= count Then
If i = 0 Then
p = row
Else
p = row - count1
End If
Return "行:" & CStr(i) & "/列:" & CStr(p)
End If
count1 += Me.TextBox1.Lines(i).Length + 2
Next
End Function//////////////////////////// 闵峰