Questions tagged [shellexecute]

ShellExecute is a Win32 API function used to launch document files

ShellExecute is a Microsoft Win32 API function used to launch document files.

Depending on the type of document file, it will do this through:

  • Creating a process using the executable file associated with the specified document
  • Using the COM subsystem to request a shell extension to launch the document
  • Initiating an action to be completed by the end-user, such as a search

As a rule of thumb, it can be assumed that invoking ShellExecute on a document file will have the same result as double-clicking on that file in Windows Explorer, including displaying user interface elements.

497 questions
-4
votes
1 answer

C++, how to modify program under execution with new arguments

The original code i posted has been edited, as it seems it caused confusion. I know it was wrong but i only wanted to use it as an example. Code i want to work with is this one: https://github.com/SFML/SFML/wiki/Source:-AnimatedSprite You can just…
Maiser
  • 45
  • 1
  • 10
-5
votes
2 answers

Need some explanations on this Delphi code

I have this code and need some explanation on these questions: What is that trailing "_TLB" after "ShellExecHookXample" in first uses section? How should I use this code in Delphi 7 and make stand-alone exe file? (I don't know what's the proper…
silvercover
  • 161
  • 1
  • 2
  • 9
1 2 3
33
34