PDA

View Full Version : Solved: can't add commend to customUI file



dschmitt
12-09-2010, 06:49 PM
In a VBA macro one can add commends to describe the function of e.g. a sub routine. See example below.


Sub example()

'the below loop does ...

for i = 1 to 10

'imagine here your script

next i

End Sub


Is it possible to add similar commends to a custom UI file?

Paul_Hossler
12-15-2010, 09:22 AM
You can add comments to the CustomUI XML


<!-- Add Custom group to the Home tab in the ribbon -->


Is that what you meant?

Paul

dschmitt
12-15-2010, 05:47 PM
thanks Paul. That is exactly what I was looking for.

zara678
01-26-2011, 09:51 PM
Thanks paul very helpful for me