so I try to close the program and what would have played the song.
procedure TForm2.MenuItem9Click(Sender: TObject);
begin
if stream<>0 then //если песня=0 то очищаем стреам
Bass_StreamFree(stream); //если песня=0 то очищаем стреам
stream:= Bass_streamcreatefile(false, PChar('sound\Sound_engl\pronunciation_en_goodbye.mp3'),0,0,0);
Bass_channelplay(stream,false);
Close; //закрытие формы одной
Application.Terminate; //полный выход с программы
end;