Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by daverx

  1. daverx

    Help with removing spaces in a string

    Slight Change to the Code Above. Public Function replace(theString As String, theOldValue As String, theNewValue As String) replace = theString If (InStr(1, theString, theOldValue, vbTextCompare) <> 0) Then Dim theChar As Long Dim newString As String Do Until...
  2. daverx

    Help with removing spaces in a string

    I was having a similar problem using Access 97. I wrote my own code for this function. Public Function replace(theString As String, theOldValue As String, theNewValue As String) replace = theString If (InStr(1, theString, theOldValue, vbTextCompare) <> 0) Then Dim theChar As...

Part and Inventory Search

Back
Top