Consulting

Results 1 to 4 of 4

Thread: Solved: can't add commend to customUI file

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    VBAX Regular
    Joined
    May 2010
    Posts
    65
    Location

    Solved: can't add commend to customUI file

    In a VBA macro one can add commends to describe the function of e.g. a sub routine. See example below.

    [VBA]
    Sub example()

    'the below loop does ...

    for i = 1 to 10

    'imagine here your script

    next i

    End Sub
    [/VBA]

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

  2. #2
    VBAX Sage
    Joined
    Apr 2007
    Location
    United States
    Posts
    8,711
    Location
    You can add comments to the CustomUI XML

    [VBA]
    <!-- Add Custom group to the Home tab in the ribbon -->
    [/VBA]

    Is that what you meant?

    Paul

  3. #3
    VBAX Regular
    Joined
    May 2010
    Posts
    65
    Location
    thanks Paul. That is exactly what I was looking for.

  4. #4

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •