May 30, 2003 #1 Johnweida MIS Apr 29, 2003 91 CN Hi, How can I select all content in Richtextbox by code or by using properties(events,methods) of this control ? John Satellite
Hi, How can I select all content in Richtextbox by code or by using properties(events,methods) of this control ? John Satellite
May 30, 2003 #2 csandu00 Programmer Jan 22, 2003 20 RO Try: thisform.richedit1.selstart=0 thisform.richedit1.sellength=LEN(thisform.richedit1.text) thisform.richedit1.SetFocus Good luck! Upvote 0 Downvote
Try: thisform.richedit1.selstart=0 thisform.richedit1.sellength=LEN(thisform.richedit1.text) thisform.richedit1.SetFocus Good luck!
May 30, 2003 Thread starter #3 Johnweida MIS Apr 29, 2003 91 CN Mr.csandu00, Very good idea! It works well.Thanks a lot! John Satellite Upvote 0 Downvote