Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

iPAQGetModelID (ipaqutil)
 

ipaqutil is for smart devices, not desktop Windows. Therefore, this information only applies to code using the .NET Compact Framework. To see if information for iPAQGetModelID in other DLLs exists, click on Find References to the right.

.
Summary
Gets the name of the model of the current iPAQ device, e.g. iPAQ rx3715.

C# Signature:

[DllImport("iPAQUtil.dll", SetLastError=true) ]
public static extern bool iPAQGetModelID([Out]StringBuilder lpszModelID);

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

/// <summary>

        /// Gets the name of the model of the current iPAQ device, e.g. iPAQ rx3715.
        /// </summary>
        /// <value></value>
        public static string ModelName
        {
            get
            {
                try
                {
                    StringBuilder buffer = new StringBuilder(40);
                    if (iPAQGetModelID(buffer) == false)
                    {
                        Tracer.Debug("iPAQGetModelID failed");
                    }
                    else
                    {
                        return buffer.ToString();
                    }
                }
                catch (Exception ex)
                {
                    Tracer.Debug("iPAQGetModelID: " + ex.Message);
                }
                return "";
            }
        }

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions