Here's the code:

vb Code:
  1. Private Sub btnSaveSettings_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSaveSettings.Click
  2.   Dim reader As String
  3.   reader = My.Computer.FileSystem.ReadAllText(config_file)
  4.   Replace(reader, Music_path, txtMusic_Path.Text)
  5.   Replace(reader, Movies_path, txtMovie_Path.Text)
  6.   Replace(reader, Shows_path, txtShows_Path.Text)
  7.   MessageBox.Show(reader)
  8. End Sub

Upon running this section of code reader is being set to.
[MUSIC_PATH]=X:\Multimedia\Audio
[MOVIES_PATH]=C:\Media\Movies
[SHOWS_PATH]=C:\Media\TV Shows

When the code is run the textboxes values are as follow.
txtMusic_Path = X:\Multimedia\Audio
txtMovies_Path = C:\Media
txtShows_Path = C:\Media\TV Shows

At the end when the MessageBox.Show() is run it displays.
[MUSIC_PATH]=X:\Multimedia\Audio
[MOVIES_PATH]=C:\Media\Movies
[SHOWS_PATH]=C:\Media\TV Shows

Why isn't it coming out as this?
[MUSIC_PATH]=X:\Multimedia\Audio
[MOVIES_PATH]=C:\Media
[SHOWS_PATH]=C:\Media\TV Shows

Thanks!