Hi,
I have some HTML displayed as a web page. It is designed to be used as a menu screen with the user being able to click on the various links to launch different applications. The code works if launching evb applications and other documents , but I am having problems with launching Inbox,Calendar,Tasks,Contacts and Notes. Currently the links are pointing to shortcuts on the start menu, but all PIE is doing is displaying the data in the .LNK file in PIE. What I expected it to do was launch the various Pocket Outlook apps. Does anyone know any command lines to run the outlook applications directly?
Am using PIE and PPC2002 on Intermec 700C.
Here is the code I am using so far:
I have some HTML displayed as a web page. It is designed to be used as a menu screen with the user being able to click on the various links to launch different applications. The code works if launching evb applications and other documents , but I am having problems with launching Inbox,Calendar,Tasks,Contacts and Notes. Currently the links are pointing to shortcuts on the start menu, but all PIE is doing is displaying the data in the .LNK file in PIE. What I expected it to do was launch the various Pocket Outlook apps. Does anyone know any command lines to run the outlook applications directly?
Am using PIE and PPC2002 on Intermec 700C.
Here is the code I am using so far:
Code:
<HTML><HEAD>
<META HTTP-EQUIV="Htm-Help" Content="help.htm#Main_Contents">
<TITLE>EMS BOOT MENU</TITLE>
</HEAD>
<a name="Main_Contents"></a><b><u>OUTLOOK PROGRAMS</b></u><br><br>
<b>Tap on one of the the options below:</b><br>
<br>
<a href="file://\windows\tmail.exe">E-MAIL</a><br>
<br>
<a href="file://\windows\start menu\calendar.lnk">CALENDAR</a><br>
<br>
<a href="file://\windows\start menu\contacts.lnk">CONTACTS</a><br>
<br>
<a href="file://\windows\start menu\tasks.lnk">TASKS</a><br>
<br>
<a href="file://\windows\start menu\notes.lnk">NOTES</a><br>
</BODY>
</HTML>