星期四, 十二月 21, 2006

Tips,VBA里如何扩展一个注释的的长度,超过255限制

上一个Tips里,使用Excel的cell对象的NoteText属性,
但NoteText只能允许255个字符,这是经常不够的。

要想使用更多的字符VBA里的comment对象允许32K的字符说明。

同样,修改 上一个tips的代码如下,就可以使用最多到32K的字符了。

With Cells(1,1).AddComment
.text "说明,最多32k"
.Shape.TextFrame.AutoSize = False
.Shape.width = 400
End With

这里.AddComment是很重要的手法 。