pocket programs

Home
Products
Download
Licences
Support
Contact
Pocket Controls

Buy-Now
Support
Contact

Pocket Owner Information

PP OwnerInfo allows the eVB programmer to retrieve the Owner Information from the Pocket PC Device.


It is provided free of charge by Pocket Programs.


Please see the following example for explanation of its function.


Trackbar - Example

Private Sub Form_Load() Dim PPoi As Object Set PPOI = CreateObject("PPOwnerInfo.OI") Label1.Caption = PPOI.Name Label2.Caption = PPOI.company Label3.Caption = PPOI.email 'PPC only Label4.Caption = PPOI.address Label5.Caption = PPOI.telephone 'PPC only Label6.Caption = PPOI.HomeAreaCode 'HPC only Label7.Caption = PPOI.HomePhone 'HPC only Label8.Caption = PPOI.WorkAreaCode 'HPC only Label9.Caption = PPOI.WorkPhone 'HPC only End Sub