Posted by Tiger-Heli on January 26, 2002 at 11:46:18:
In Reply to: how to in delphi... posted by )p( on January 26, 2002 at 11:07:53:
: from taking a peek at the source...instedad of the normal execution....
: use shellexec with the play command with the filename...
: something like
: procedure TFormMain.BlahBlah(Sender: TObject);
: begin
: ShellExecute(Handle, 'play', 'mytable.vpt', nil, nil, SW_SHOWNORMAL);
: end;
:
: Peter