Advertisement
Nothy

Uncomfortable stock photo guy

Nov 14th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Set objExplorer = CreateObject("InternetExplorer.Application")
  2. With objExplorer
  3.     .Navigate "about:blank"
  4.     .Visible = 1
  5.     .Document.Title = "what are you doing here?"
  6.     .Toolbar=False
  7.     .Statusbar=False
  8.     .Top=400
  9.     .Left=800
  10.     .Height=300
  11.     .Width=450
  12.     .Document.Body.InnerHTML = "<img src='http://i.imgur.com/Jbd4ncY.jpg'>"
  13. End With
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement