Re: Newbie Needs Help
On Thu, 28 Apr 2005 22:34:46 -0400, frank tomken
<fstj2003@xxxxxxxxxxx> wrote:
>
>This line works for me to play an mp3 file achy breaky.
>
>ShellExecute(Handle, 'open',
> 'c:\program files\winamp\achy breaky.mp3',nil, nil, SW_SHOWNORMAL);
var SongTitle : string;
....
SongTitle := 'c:\program files\winamp\achy breaky.mp3'; // or
whatever
....
ShellExecute(Handle, 'open',SongTitle,nil, nil, SW_SHOWNORMAL);
---
Replace you know what by j to email
.
Relevant Pages
- Re: ShellExecAndWait and ExecAndWait functions with Office XP
... procedure adtBitBtn1Click(Sender: TObject); ... procedure ShellExecAndWait(dateiname: string; Parameter: string); ... Result:= CreateProcess(nil, PChar(CmdLine), nil, nil, FALSE, ... nil, {Pointer to Application} ... (borland.public.delphi.nativeapi) - Re: the Modernization of Emacs
... the time, such as when typing a search string after C-s, I _don't_ want ... Lisp _is_ statically typed - every value in lisp has a rigidly fixed ... char-after returning nil has nothing to do with static typing, ... customization specs and their utterly unhelpful failure behaviour. ... (comp.emacs) - ExecAndWait with MS Word XP
... procedure adtBitBtn1Click(Sender: TObject); ... procedure ShellExecAndWait(dateiname: string; Parameter: string); ... Result:= CreateProcess(nil, PChar(CmdLine), nil, nil, FALSE, ... nil, {Pointer to Application} ... (borland.public.delphi.nativeapi) - Re: ExecAndWait with MS Word XP
... procedure adtBitBtn1Click(Sender: TObject); ... > procedure ShellExecAndWait(dateiname: string; Parameter: string); ... Result:= nil ... nil, {Pointer to Application} ... (borland.public.delphi.nativeapi) - Re: MockFS 0.1.2
... Failure: ... TypeError: cannot convert nil into String ... (comp.lang.ruby) |
|