Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Programmatically launch IE Mobile favorites screen

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

like image 981
prakash Avatar asked Aug 02 '08 12:08

prakash


2 Answers

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

IExplore file://\windows\fav.htm

like image 149
Dave Ward Avatar answered Sep 19 '22 09:09

Dave Ward


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.
like image 41
Brian Lyttle Avatar answered Sep 18 '22 09:09

Brian Lyttle