Click here to Skip to main content
15,884,099 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 54.8K   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.Telephony</name>
    </assembly>
    <members>
        <member name="T:Microsoft.WindowsMobile.Telephony.PhoneMakeCallInfo">
            <summary>
            This structure mimics the <b>PhoneMakeCallInfo</b> structure on the native side. 
            </summary>
        </member>
        <member name="F:Microsoft.WindowsMobile.Telephony.PhoneMakeCallInfo.cbSize">
            <summary>
            The size of the structure.
            </summary>
        </member>
        <member name="F:Microsoft.WindowsMobile.Telephony.PhoneMakeCallInfo.dwFlags">
            <summary>
            A set of flags indication whether to show the dialog.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsMobile.Telephony.PhoneMakeCallInfo.ToNativePointer">
            <summary>
            Extracts the contents of the managed structure, and allocates memory for it on the native side. 
            </summary>
            <returns>Pointer to the allocated struct on the native side. This must be freed.</returns>
        </member>
        <member name="P:Microsoft.WindowsMobile.Telephony.PhoneMakeCallInfo.Address">
            <summary>
            The phone number to dial.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsMobile.Telephony.Phone">
            <summary>
            Defines methods for placing phone calls.
            </summary>
            <remarks>
            If the mobile device is a Pocket PC, then to use this class, it must be the Phone Edition.
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsMobile.Telephony.Phone.#ctor">
            <summary>
            Initializes a new instance of the <b>Phone</b> class. 
            </summary>
        </member>
        <member name="M:Microsoft.WindowsMobile.Telephony.Phone.Talk(System.String)">
            <summary>
            Places the phone call, using the specified string phone number.
            </summary>
            <param name="number">The phone number to dial</param>
        </member>
        <member name="M:Microsoft.WindowsMobile.Telephony.Phone.Talk(System.String,System.Boolean)">
            <summary>
            Places the phone call, using the specified phone number, with a precautionary prompt for verification to proceed (a last chance to make sure you’ve got the right number).
            </summary>
            <param name="number">The phone number to dial</param>
            <param name="showPrompt">A bolean value indicating whether to prompt the user, asking for permission to proceed with placing the call.</param>
        </member>
        <member name="M:Microsoft.WindowsMobile.Telephony.Phone.Call(System.String,System.Boolean)">
            <summary>
            Places the phone call, using the specified phone number, with a precautionary prompt for verification to proceed (a last chance to make sure you’ve got the right number).
            </summary>
            <param name="number">The number to dial.</param>
            <param name="showPrompt">A bolean value indicating whether to prompt the user, asking for permission to proceed with placing the call.</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