Click here to Skip to main content
15,896,118 members
Articles / Mobile Apps / Windows Mobile

Task assigner with Windows Mobile and a Web Service

Rate me:
Please Sign up or sign in to vote.
4.23/5 (12 votes)
7 Dec 2008CPOL3 min read 56.1K   1.1K   35  
Send messages, commands, tasks etc., to all employees from a central administration point.
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.WindowsMobile</name>
    </assembly>
    <members>
        <member name="T:Microsoft.WindowsMobile.IApplicationLauncher">
            <summary>
            Defines the properties, methods, and events that are shared by any object that can have an application launched.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsMobile.IApplicationLauncher.EnableApplicationLauncher(System.String)">
            <summary>
            Enables an application to be launched.
            </summary>
            <remarks>
            <b>EnableApplicationLauncher</b> attempts to learn the application file name; if it cannot, then an exception is thrown.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsMobile.IApplicationLauncher.EnableApplicationLauncher(System.String,System.String)">
            <summary>
            Enables an application to be launched, using its launch ID and file name.
            </summary>
            <param name="applicationLaunchId">The Application Launch ID.</param>
            <param name="applicationFileName">The path to executable to launch.</param>
        </member>
        <member name="M:Microsoft.WindowsMobile.IApplicationLauncher.EnableApplicationLauncher(System.String,System.String,System.String)">
            <summary>
            Enables an application to be launched; using its launch ID, its file name, and the list of any parameters it might need.
            </summary>
            <param name="applicationLaunchId">The Application Launch ID.</param>
            <param name="applicationFileName">The path to executable to launch.</param>
            <param name="arguments">The string of parameters to pass to launched application.</param>
        </member>
        <member name="M:Microsoft.WindowsMobile.IApplicationLauncher.DisableApplicationLauncher">
            <summary>
            Disables the application from being launched.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsMobile.IApplicationLauncher.ApplicationLaunchId">
            <summary>
            Gets the ID that uniquely identifies a particular application launch request.
            </summary>
            <remarks>
            An application can have multiple application launch requests, but their ID's must all be unique.
            </remarks>
        </member>
        <member name="P:Microsoft.WindowsMobile.IApplicationLauncher.ApplicationToLaunch">
            <summary>
            Gets the fully qualified path-name of the application (the executable) to launch.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsMobile.IApplicationLauncher.ApplicationArguments">
            <summary>
            Gets optional params to pass to the application to launch.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsMobile.ApplicationLauncherEnableException">
            <summary>
            The exception that is thrown when Application Launcher Registration fails.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsMobile.ApplicationLauncherEnableException.#ctor">
            <summary>
            Initializes a new instance of the <b>ApplicationLauncherEnableException</b> class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsMobile.ApplicationLauncherEnableException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <b>ApplicationLauncherEnableException</b> class, using an error message containing additional details about the failure.
            </summary>
            <param name="message">A string containing further details about the exception.</param>
        </member>
        <member name="M:Microsoft.WindowsMobile.ApplicationLauncherEnableException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <b>ApplicationLauncherEnableException</b> class, using an error message containing additional details about the failure, and an inner exception.
            </summary>
            <param name="message">A string containing further details about the exception.</param>
            <param name="inner">An inner exception.</param>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Singapore Singapore
- B.Sc. degree in Computer Science.
- 4+ years experience in Visual C#.net and VB.net
- Obsessed in OOP style design and programming.
- Designing and developing Network security tools.
- Designing and developing a client/server application for sharing files among users in a way other than FTP protocol.
- Designing and implementing GSM gateway applications and bulk messaging.
- Windows Mobile and Symbian Programming
- Having knowledge with ERP solutions

The summary of my skills:
C#, VB.Net#,ASP.net, VC++, Java, WPF,WCF, Oracle, SQL Server, MS Access, Windows NT administration

Cheers
RRave
MCPD,MCTS
http://codegain.com

Comments and Discussions