생성이 가능한가요?빠른 부분Outlook 2010에서 문자열을 하이퍼링크로 자동 바꾸는 기능은 무엇입니까? 질문에 사용된 vba를 피하고 싶습니다.Outlook에서 일반 텍스트를 하이퍼링크로 변환.
예
- 내가 입력하고 F3을 누르면
구글 뭔가
- 하이퍼링크로 대체합니다.
다음 링크:
https://www.google.nl/?q=something#newwindow=1&q=something
답변1
다음을 사용하면 VBA 및 빠른 부품을 피할 수 있습니다.오토핫키작업을 수행하는 키를 발급하는 바로 가기 매크로를 만듭니다.
그러나 Outlook 솔루션을 요청하셨으므로 현재 선택한 텍스트를 요청한 유형의 하이퍼링크로 변환하는 간단한(그리고 다소 테스트된) VBA 매크로가 있습니다.
Sub SelectionToHyperlink()
' Convert the current selection to a hyperlink
If ActiveInspector.EditorType = olEditorText Then
MsgBox "Can't add links to textual mail"
Exit Sub
End If
Dim doc As Object
Dim sel As Object
Set doc = ActiveInspector.WordEditor
Set sel = doc.Application.Selection
doc.Hyperlinks.Add Anchor:=sel.Range, _
Address:="https://www.google.nl/?newwindow=1&q=" & sel.Text, _
SubAddress:="", _
ScreenTip:="", _
TextToDisplay:=sel.Text
End Sub