I'm able to send text msg from whatsapp using vb.net. Colud someone tell me how to send pdf document from vb.net. Thanks....
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Try
Dim web As New WebBrowser
web.Navigate("whatsapp://send?phone=" & TextBox1.Text & "&text=" & TextBox2.Text.Replace(" ", "+") & "")
' web.Navigate("wa.me/send?phone=" & TextBox1.Text & "&attachment=" & TextBox2.Text.Replace(" ", "+") & "")
Timer1.Start()
Catch ex As Exception
Timer1.Stop()
End Try
End Sub
Dim sec As Integer = 0
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Sec += 1
If sec = 10 Then
SendKeys.Send("{ENTER}")
Timer1.Stop()
sec = 0
End If
End Sub