I would try switching the sub to something like this.
VB Code:
  1. Private Sub Bashe1_Click()
  2. Dim strFilePath As String
  3.  
  4.     If Right(App.Path, 1) = "\" Then
  5.         strFilePath = App.Path
  6.     Else
  7.         strFilePath = App.Path & "\"
  8.     End If
  9.    
  10.     Picture1.Visible = True
  11.     MediaPlayer1.Visible = True
  12.     MediaPlayer1.open strFilePath & "audio\Aa\Bashe.wma"
  13. End Sub