![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Additional Libraries Users contributed libraries. This sub-forum is only available to licensed users. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
My PhoneLib from the old forum ... can be used with PPC-smartphones to initiate phone calls and retrieve the call log. Only CF 1.0 required. Online help is included in the zip file. I added a new function to check the phone capability of the PDA.
Best wishes, Stefan Code:
Sub Globals
End Sub
Sub App_Start
' add and initialize a phone object
AddObject("ph1", "Phone")
ph1.New1
' query phonelib version
MsgBox(ph1.PhoneLibVersion,"PhoneLib version")
' check phone capability
MsgBox(ph1.PhoneAvailable,"Phone available")
' query number of call log entries
x = ph1.NumCallLogEntries
MsgBox(x, "Number of CallLogEntries")
' retrieve all call log entries
if x > 0 then
for y = 1 to x
MsgBox(ph1.GetCallLogEntry(y),"CallLogEntry #" & y)
next
end if
' initiate a phone call
if ph1.MakeCall("12345", "test", true) = false then Msgbox("Error", "MakeCall")
End Sub
__________________
iPAQ 6515, MDA compact |
|
||||
|
The new outlook library supports SMS messages.
See this post: New Outlook library |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| phoneLIb | slowtime | Questions & Help Needed | 2 | 11-07-2007 09:20 PM |