Thema
:
Delphi
Syntax SendMCICommand
Einzelnen Beitrag anzeigen
himitsu
Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
#
3
AW: Syntax SendMCICommand
23. Jul 2012, 00:02
Zitat von
Bummi
:
markieren
Delphi-Quellcode:
Pfad := '
"
'+ExtractFilePath(Application.ExeName) + '
\Sounds\Sound1.wav"
'
SendMCICommand('
play
' + Pfad);
\\ ?
zusammenfalten
·
markieren
Delphi-Quellcode:
// Path = mit \ am Ende
Pfad := '
"
' + ExtractFilePath(Application.ExeName) + '
Sounds\Sound1.wav"
';
SendMCICommand('
play
' + Pfad);
// Dir = ohne \ am Ende (gut, mit einer kleinen Ausnahme)
Pfad := '
"
' + ExtractFileDir(Application.ExeName) + '
\Sounds\Sound1.wav"
';
SendMCICommand('
play
' + Pfad);
// aber da die " eigentlich nicht zum "Pfad" gehören
Pfad := ExtractFilePath(Application.ExeName) + '
Sounds\Sound1.wav
';
SendMCICommand('
play "
' + Pfad + '
"
');
$2B or not $2B
Zitat
himitsu
Öffentliches Profil ansehen
Besuche die Homepage von himitsu!
Mehr Beiträge von himitsu finden