Aloha all,
I’m adding a little bell or maybe half a whistle to my Excel phone directory. I’m trying to set up a quick jump to a web-based text paging utility that most of our staff are registered on.
The idea is that user clicks a button, and for the directory entry on the row where the active cell is, the individual’s pager number is copied to the clipboard, the user’s web browser launches and pager number is pasted into the only edit field.
What I’d like to do, and can’t figure my way past, is make it so the pager number is automatically entered or pasted, saving user the tedium of another menu click or pressing Ctrl-V. It’s always the little things. The FollowHyperlink method launches the browser great but I cannot get the pager number in. my code snippet is brief and simple, as follows:
Cells(ActiveCell.Row, 8).Copy ‘ pager numbers are in Column H
Application.CutCopyMode = False
ActiveWorkbook.FollowHyperlink _
Address:=”http://www.arch.com/message/”, _
NewWindow:=True
…so then what? Excel loses focus. SendKeys doesn’t work. Other FollowHyperlink parameters don’t work. Any Ideas?
Would DDE work, and if so, what would Internet Explorer’s appname be?
Mahalo in advance for your comments and suggestions,
JohnJ