I hope this help someone:
whatsapp send:
Sub whatsappSend(mobile as string,msg as string)
Dim sendIntent As Intent
sendIntent.Initialize(sendIntent.ACTION_MAIN,"")
sendIntent.PutExtra("jid",mobile & "@s.whatsapp.net")
sendIntent.Action=sendIntent.ACTION_SEND
sendIntent.SetPackage("com.whatsapp")
sendIntent.SetType("text/plain")
sendIntent.PutExtra("android.intent.extra.TEXT",msg)
StartActivity(sendIntent)
End Sub