B
Bob Willis
I'd be grateful for a little help on this!
I'm invoking an application on the PPC from the browser
using
<a href="file:///Program Files\App1\App1.exe?name=bob"
I want to the application to be able to pick up the url
arguments, but am having a little difficulty!
I've tried the usual approach to command line arguments -
no success.
I thought I'd found the answer with an article by Chris
Sells which included:
AppDomain domain = AppDomain.getCurrentDomain;
object obj = domain.GetData("APP_LAUNCH_URL");
string name=(obj != null ? obj.ToString() :"");
Sadly, this isn't supported in the Compact Framework.
Can anyone point me in the right direction?
Thanks,
Bob
I'm invoking an application on the PPC from the browser
using
<a href="file:///Program Files\App1\App1.exe?name=bob"
Activate App...</a>
I want to the application to be able to pick up the url
arguments, but am having a little difficulty!
I've tried the usual approach to command line arguments -
no success.
I thought I'd found the answer with an article by Chris
Sells which included:
AppDomain domain = AppDomain.getCurrentDomain;
object obj = domain.GetData("APP_LAUNCH_URL");
string name=(obj != null ? obj.ToString() :"");
Sadly, this isn't supported in the Compact Framework.
Can anyone point me in the right direction?
Thanks,
Bob