Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ms 访问中有一个运行这行代码的子程序
wrdDoc.Hyperlinks.Add Anchor:=wrdDoc.Bookmarks("LCEmail").Range, Address:="abc@yahoo.com"
如何将插入电子邮件的字体更改为 Microsoft sans serif 并将字体大小更改为 10?
你可以;
With wrdDoc.Hyperlinks.Add(Anchor:=wrdDoc.Bookmarks("LCEmail").Range, Address:="abc@yahoo.com") .Range.Font.Name = "Microsoft sans serif" .Range.Font.Size = 10 End With