Hi,
I'm using SystemState.PhoneIncomingCall in a VB application that works fine (I intercept an incoming call and show the phone number in a messagebox).
Friend WithEvents IncomingCall As New SystemState(SystemProperty.PhoneIncomingCall)Dim PhoneNumber As String
Private Sub phoneIncoming_Changed(ByVal Sender As Object, ByVal Args As Microsoft.WindowsMobile.Status.ChangeEventArgs) Handles IncomingCall.Changed
PhoneNumber = SystemState.GetValue(SystemProperty.PhoneIncomingCallerNumber)
If PhoneNumber <> "" Then
Me.BringToFront()
MessageBox.Show("Chiamante: " & PhoneNumber, "IncomingCall")
End If
End Sub
Now, how can I reject incoming call before its be managed by standard phone application
Thanks a lot

How to reject incoming call
CamPeck
Prasanthgs
Thanks a lot.
I'm trying to use OpenNETCF in a VB application but I can't find how to reject an incoming call. In the examples calls are made by the phone and then are closed, I would reject an external incoming call and I not able to handle it.
Thanks for your help.
Omar