Sub IE_Load_PrintScreen()
' IE and OutLook
Dim NorryLink As String
' Link to copy Print Screen
NorryLink = "Home - County of Northumberland" & Sheets("Tax Cert Bill").Range("B17").Value
Dim IE As Object
Dim hwnd As Long, IECaption As String
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Width = 624
IE.Height = 756
IE.Navigate NorryLink
Wait 10
DoEvents
' ~~> Take a snapshot
Call keybd_event(VK_SNAPSHOT, 1, 0, 0)
Application.SendKeys "(%{1068})"
DoEvents
IE.Quit
Set IE = Nothing
End Sub
this is what it shows that is missing info
what it should show
<< image removed due to personal data >>
was working then just stopped. it is taking the data from previous item. load page shows right info but when i past not just shows the ie windows with no other info
' IE and OutLook
Dim NorryLink As String
' Link to copy Print Screen
NorryLink = "Home - County of Northumberland" & Sheets("Tax Cert Bill").Range("B17").Value
Dim IE As Object
Dim hwnd As Long, IECaption As String
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Width = 624
IE.Height = 756
IE.Navigate NorryLink
Wait 10
DoEvents
' ~~> Take a snapshot
Call keybd_event(VK_SNAPSHOT, 1, 0, 0)
Application.SendKeys "(%{1068})"
DoEvents
IE.Quit
Set IE = Nothing
End Sub
this is what it shows that is missing info
what it should show
<< image removed due to personal data >>
was working then just stopped. it is taking the data from previous item. load page shows right info but when i past not just shows the ie windows with no other info
Last edited by a moderator: