Jul 15, 2002 #1 caseye IS-IT--Management Feb 7, 2002 52 US I have a string thats 50 letters long and i want to trim it to 25 how would i go about doing this.
Jul 15, 2002 #2 Lightseeker Programmer Jul 11, 2002 68 US dim t_str as string dim n_str as string t_str = text1.text n_str = mid(t_str,1,25) Upvote 0 Downvote
Jul 15, 2002 Thread starter #3 caseye IS-IT--Management Feb 7, 2002 52 US thank you Upvote 0 Downvote
Jul 15, 2002 #4 Lightseeker Programmer Jul 11, 2002 68 US You're welcome. Did it work? Upvote 0 Downvote
Jul 15, 2002 Thread starter #5 caseye IS-IT--Management Feb 7, 2002 52 US Sure did. Upvote 0 Downvote