Detect ActiveSync connection

Lasse

Member
Licensed User
Hello...
Does anyone know about this :

Is it possible that the PDA automatically can show a specific form when the PDA connects to the PC ?

Thanks

Lasse
 

manu

Active Member
Licensed User
Longtime User
is very easy.

you should use the library rapiDektop.dll and OpenNetCF

rapi.New1
ErrorLabel(errConexion)
rapi.Connect
Do Until rapi.IsConnected = true
DoEvents
If (Now - t)/cTicksPerSecond > 3 Then
Msgbox("Cannot connect to device.")
AppClose
End If
Loop

Return
errConexion:
Msgbox("Error de conexion, persiste este error contacte con su distribuidor,"," Error de Conexión ")
AppClose
 
Top