I am trying to replace nothing with something. Here is an example:

VB Code:
  1. Dim Test as String
  2.  
  3. Test = ""
  4. Test = Replace(Test, "", "-", 1)

If I then message Test, it still comes back with nothing. Anyone have any ideas?