CallLogEntry objects

Indicates whether a call was dropped by the service provider or ended normally. Values are:
The Dropped property is a boolean indicating whether an entry in the call log was dropped by the service provider. In this example, a list box is populated with the phone numbers in a call log. The following lines in the SelectionChanged event of the list box get the value of the Dropped property of the selected phone number and write it to a second list box:
// instance variable: CallLogEntry iLogEntries[]
if (iLoggedEntries[index].dropped = true
lb_2.AddItem("Call Dropped")
else
lb_2.AddItem("Call Completed")
end if
| Copyright © 2004. Sybase Inc. All rights reserved. |
|
|