Clickonce program will not start when launched from shell_execute
Posted
by
Brandon
on Stack Overflow
See other posts from Stack Overflow
or by Brandon
Published on 2013-11-08T15:51:08Z
Indexed on
2013/11/08
15:53 UTC
Read the original article
Hit count: 287
clickonce
|shellexecute
I have a very old program that I have no control over. It launches a filetype with its default application like this(I cannot modify this code):
LET Err (SHELL_EXECUTE 'open' (FIX_MESG '"{1}"' File_name) '' '')
^^The above code works, so long as that filetype isn't associated with ClickOnce.
The old program is 32 bit, the OS is Windows 7 64 bit. I can compile my clickonce program as anything, but none seem to work. (I've tried x84, x64 and anyCPU)
How can I make a 32 bit program use shell execute to launch a ClickOnce program on a 64bit OS?
© Stack Overflow or respective owner