Last active
April 28, 2019 00:53
-
-
Save timothycarambat/104b30044af124027439099256be1754 to your computer and use it in GitHub Desktop.
TinyURL Convertor For Excel for u/BradzleyB123 https://www.reddit.com/r/programmingrequests/comments/a7gjm2/request_tinyurl_batch_link_generator/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Function TINYURL_GENERATOR(base_url As String) As String | |
Set objIE = CreateObject("InternetExplorer.Application") | |
objIE.Top = 0 | |
objIE.Left = 0 | |
objIE.Width = 800 | |
objIE.Height = 600 | |
objIE.Visible = False | |
objIE.Navigate ("http://tinyurl.com/api-create.php?url=" + base_url) | |
Do | |
DoEvents | |
Loop Until objIE.readystate = 4 | |
TINYURL_GENERATOR = objIE.document.getElementsByTagName("pre")(0).innerText | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment