呵呵,观者如云和者稀,吾心也凄。
1:分列,要求分成两列,第一列宽度为4厘米,第二列文字左对齐,无框线(注意,不要被文字描述所迷惑)
直接使用查找与替换即可。
2:将所有网址变成超级链接形式。
使用格式/自动套用格式即可。
3:如果使用VBA,你会怎么将它们变为超级链接?
Option Explicit Sub AddHyperLinks() Dim i As Paragraph, myRange As Range Dim KeyPosition As Long Application.ScreenUpdating = False With ActiveDocument For Each i In .Paragraphs Set myRange = i.Range With myRange KeyPosition = VBA.InStr(.Text, "http://") If KeyPosition > 0 Then .SetRange .Start + KeyPosition - 1, .End - 1 .Hyperlinks.Add Address:=.Text, Anchor:=myRange End If End With Next End With Application.ScreenUpdating = True End Sub
[此贴子已经被作者于2006-3-20 6:59:20编辑过] |