How can i send bulk message using whatsapp from vb6.0
I have below code it send only one message at one time. i want to send bulk message using whatsapp, but issue is how to send message to multiple contact using below code.
After select excel sheet it should be display all contact on form and then it will send message to all contact as per selected time.
Try
Dim web As New WebBrowser
web.Navigate("whatsapp://send?phone=" & txtmob.Text & "&text=" & txtmessage.Text.Replace(" ", "+") & "")
Timer1.Start()
Catch ex As Exception
Timer1.Stop()
End Try