Sub getQR() ' ' getQR Macro ' Dim resource As String 'filter out non-text cells (remove this line if you want to return QR codes for other cell types) Set sel = Selection.SpecialCells(xlTextValues) 'add a new sheet for the output Set news = Worksheets.Add() news.Name = "QR codes" Set op = news.Range("A1" ) 'do da biz For Each acc In sel resource = acc.Value 'technically you should probably escape the string, but it works without resource = "qrcode.kaywa.com/img.php?s=8&d=" & resource '140,140 is the size of the shape. This was arbitrary and is probably wrong 'using a shape is a hack to avoid a problem with Office 2007 not inserting pics from web resources Set newshape = news.Shapes.AddShape(msoShapeRectangle, op.Left, op.Top, 140, 140) 'name it in case we want to use it again later (we don't use this at the moment though) newshape.Name = resource 'get rid of the surrounding line newshape.Line.Visible = False 'load that there QR code up into the graphic newshape.Fill.UserPicture (resource) 'move to the next position on the output sheet Set op = op.Offset(11, 0).Range("A1" ) op.Value = acc.Value Set op = op.Offset(2, 0).Range("A1" ) Next ' End Sub |
Subscribe to:
Post Comments (Atom)
Hack: Shutdown your Computer with a Cell Phone
The Sydney Morning Herald Technology Headlines
- Man flu? When 'the flu' is really just a cold - 4/22/2014
- Aboriginal scientific achievements recognised - 4/22/2014
- Procrastinator? Blame it on your genes - 4/22/2014
TechCrunch
- Top 10 AI Tools That Will Transform Your Content Creation in 2025 - 1/2/2025
- LimeWire AI Studio Review 2023: Details, Pricing & Features - 12/12/2023
- Top 10 AI Tools in 2023 That Will Make Your Life Easier - 1/25/2023
- Top 10 AI Content Generator & Writer Tools in 2022 - 11/15/2022
- Beginner Guide to CJ Affiliate (Commission Junction) in 2022 - 9/10/2022
Mashable!
- NYT Strands hints, answers for April 11 - 4/11/2025
- NYT Connections hints today: Clues, answers for April 11, 2025 - 4/11/2025
- Wordle today: Answer, hints for April 11, 2025 - 4/11/2025
- Google invented new ways to alter movies with AI for The Sphere. Its sure to be controversial. - 4/10/2025
- REAL ID deadline is weeks away. Heres what you need to know. - 4/10/2025
Engadget
- Tech founder charged with fraud for 'AI' that was secretly overseas contract workers - 4/10/2025
- You'll have to wait until April 24 to know if Motorola was brave enough to make a wooden Razr - 4/10/2025
- Sony's first PS5 exclusive of 2025 is... The Last of Us - 4/10/2025
- Razer's PC Remote Play app is now available - 4/10/2025
- Panic will showcase the second season of Playdate games on April 17 - 4/10/2025
No comments:
Post a Comment