views:

382

answers:

3

Is there any way to launch IEMobile's Favorites screen directly by specifying any command line parameter?

A: 

How about running IE with the HTML favorites file as a parameter?

IExplore file://\windows\fav.htm

Dave Ward
A: 

@Dave, I was hoping to launch (from my app)the Favorites screen of IE Mobile directly, so that managing favorites would be single step. Thanks for the suggestion! I'll keep looking..

Prakash
+1  A: 

I think this is going to be quite difficult without code.

Two options come to mind:

  • Find out what Windows messages IE sends to open the favorites screen and replay these in your application. You would first need to see if IE is running and if it is bring it to the foreground. If not then start the process. Maybe you can use Windows CE Remote Spy to find the right Window and information about the Favorites button?
  • Other option is to work against the place where IE stores it's favorites information. You would have to write your own UI to parse the favorites etc.
BrianLy