|
-
Nov 23rd, 1999, 09:23 PM
#2
Member
Use the Replace string manipulation function in VB. Start a Std Exe project, add 2 text boxes (txtEntered, txtReplaced) and a command button (cmdGo). Here's a one-liner to demonstrate. Add this code to your form:
Option Explicit
Private Sub cmdGo_Click()
txtReplaced = Replace(txtEntered, ".", "")
End Sub
[This message has been edited by mcleran (edited 11-24-1999).]
[This message has been edited by mcleran (edited 11-24-1999).]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|