Posted 23 Nov 2012 Link to this post
Posted 26 Nov 2012 Link to this post
If
Me
.TxtValue.CaretIndex > 0
Then
Try
Dim
searchingText
As
String
=
.TxtValue.Text.Substring(0, Math.Min(
.TxtValue.CaretIndex,
.TxtValue.Text.Length))
pos
Integer
= Math.Max(0, searchingText.LastIndexOf(
";"c
))
' Delete current untokenized text
.TxtValue.
Select
(pos,
.TxtValue.CaretIndex - pos)
.TxtValue.Delete()
Catch
End
.TxtValue.AppendText(valueToSave &
)
Posted 28 Nov 2012 Link to this post
Posted 30 Nov 2012 Link to this post
Posted 28 May 2014 in reply to Svett Link to this post
Posted 30 May 2014 Link to this post