Screenshot Send via Whatssapp

ali zaib

Active Member
Joined
Nov 21, 2010
Messages
412
Support is requested to guide , Can we send excel range screenshot to any one via whatsapp .
i have below mention code but its send only text . i need to send picture which available in cell range or get screen shot of range

Dim text As String
Dim contact As String


text = Range("C1").Value
If text = "" Then
MsgBox "Enter the Message to be sent!", 64, "PROCEDURE ERROR"
Exit Sub
End If


'ActiveWorkbook.FollowHyperlink Address:=" https://web.whatsapp.com/"
'Shell "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" & " https://web.whatsapp.com/"


If MsgBox("Is WhatsApp Loaded?" & vbNewLine & vbNewLine & "Press No To Cancel", vbYesNo + vbQuestion + vbSystemModal, "WhatsApp DDos") = vbYes Then


'Fazer (60000)

startrow = 2
startcol = 2
Do Until Sheets(1).Cells(startrow, 1) = ""


'Fazer (2000)
contact = Cells(startrow, 1)


If contact = "" Then
MsgBox "Fill in the contact addresses!", 64, "Please enter at least one Contact"
Exit Sub
End If
text = "Hi " & Sheets(1).Cells(startrow, startcol).Value & "," & vbNewLine & Range("C1").Value & vbNewLine & "Regards," & vbNewLine & "Ravi Kant Agarwal"
'text = "Hi " & Sheets(1).Cells(startrow, startcol).Value & "," & Range("C1").Value & "Regards," & "Ravi Kant Agarwal"
'text = "Hi " & Sheets(1).Cells(startrow, startcol).Value & "," & Range("C1").Value


' Go To The WhatsApp Search Bar
Fazer (3000)


Call SendKeys("{TAB}", True)




' Go To The Contacts Chat
Fazer (1000)
Call SendKeys(contact, True)
Fazer (1000)
Call SendKeys("~", True)
Fazer (1000)
Call SendKeys(text, True)
Fazer (1000)
Call SendKeys("~", True)


'Fazer (3000)
' Call SendKeys("{TAB}", True)
' Call SendKeys(contact, True)
'Call SendKeys("~", True)
'
'Fazer (8000)
'Call SendKeys(text, True)
''SendKeys "{ENTER}", True
'Call SendKeys("~", True)
'
startrow = startrow + 1


Loop


Else
End If




'ActiveWorkbook.FollowHyperlink Address:=" https://web.whatsapp.com/"
'Shell "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" & " https://web.whatsapp.com/"
' 'Application.Wait TimeSerial(0, 0, 1)
' Fazer (7000)
' SendKeys "{TAB}", True
'' SendKeys "camilly", True
' Call SendKeys(text, True)
'SendKeys "{ENTER}", True
'
'Fazer (2000)
'Call SendKeys(text, True)
'SendKeys "{ENTER}", True
'Call SendKeys("~", True)




End Sub
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.

Forum statistics

Threads
1,213,553
Messages
6,114,279
Members
448,562
Latest member
Flashbond

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top