Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SelStart Bug?
Message
From
04/12/2001 20:54:28
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00589456
Message ID:
00589608
Views:
39
Simon, it looks like your STUFF command is not quite right.

With your example, if you insert then backspace the inserted text out then insert again, it will keep shifting to the left.

STUFF is inserting at the value of selstart, i.e. if selstart was at 5 then the STUFF command will insert before 5.

existing text: 12345
insert "text"
result: 1234text5

and so on.

Try modifying the STUFF command like this:
This.Parent.editbox.value=Stuff(This.Parent.editbox.Value,This.Parent.editBox.selStart+1,0,"test")
Hope this helps,
- Craig

"If you're not prepared to be wrong, you will never come up with anything original."
- Sir Ken Robinson
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform