How to Select particular text in textbox while textbox receives focus

前端 未结 3 960
执笔经年
执笔经年 2021-01-23 00:28

I am developing one ASP.NET application with VB code.I have one textbox to hold the amount, which contains default value as \"0.00\". Now the problem is while the textbox gets f

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-23 01:17

    Create event for text focus

    Now we have two properties

       txt.SelectionStart = intValue
    

    and

      txt.selectionLength = length;
    

    Use this property to resolve your stuff

提交回复
热议问题