M mypeoplelxt Unregistered / Unconfirmed GUEST, unregistred user! 2002-06-20 #1 用TWordDocument操作文档,现在要在word文档的每一页都分为两栏,在程序中的这个 分栏用的属性是哪个?
Y yzhshi Unregistered / Unconfirmed GUEST, unregistred user! 2002-06-20 #2 看VBA代码,如下,主要是TextColumns的SetCount属性 With Selection.PageSetup.TextColumns .SetCount NumColumns:=2 .EvenlySpaced = True .LineBetween = False .Width = CentimetersToPoints(6.95) .Spacing = CentimetersToPoints(0.75) End With ShowVisualBasicEditor = True
看VBA代码,如下,主要是TextColumns的SetCount属性 With Selection.PageSetup.TextColumns .SetCount NumColumns:=2 .EvenlySpaced = True .LineBetween = False .Width = CentimetersToPoints(6.95) .Spacing = CentimetersToPoints(0.75) End With ShowVisualBasicEditor = True
Y yzhshi Unregistered / Unconfirmed GUEST, unregistred user! 2002-06-20 #4 呵呵,为什么?可以继续灌嘛。 我还没有写出来代码呀。 建议你看一下http://www.delphibbs.com/delphibbs/dispq.asp?lid=737517 这个帖子里面有解决这一类问题的方法。
呵呵,为什么?可以继续灌嘛。 我还没有写出来代码呀。 建议你看一下http://www.delphibbs.com/delphibbs/dispq.asp?lid=737517 这个帖子里面有解决这一类问题的方法。