up vote 3 down vote favorite
share [g+] share [fb]

I have SpeedButton on my form and I want it open avi file with associated program.I tried Windows.winexec but it doesn't seem to be worked.

link|improve this question

5  
Where do people still read about using WinExec? It's been deprecated for almost 15 years! – Rob Kennedy Jan 2 '10 at 22:56
feedback

1 Answer

up vote 14 down vote accepted

You want ShellExecute - see http://msdn.microsoft.com/en-us/library/bb762153%28VS.85%29.aspx for the API and also this link http://delphi.about.com/od/windowsshellapi/a/executeprogram.htm for details of how to use it from Delphi.

link|improve this answer
I tried but it gives compilation error: Undeclared identifier – Azad Salahli Jan 2 '10 at 15:39
If it doesn't compile, edit your question to include the code that doesn't compile. – anon Jan 2 '10 at 16:03
6  
@Azad Salahli, add ShellApi in the uses. – Nick Dandoulakis Jan 2 '10 at 16:06
It worked. Thanks for your help. – Azad Salahli Jan 2 '10 at 16:11
1  
@Azad Salahli, you should mark this as an accepted answer, then. – J__ Jan 4 '10 at 15:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.