Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Cyclic Group

A bit of technical know how is needed on this one.

I have a Cyclic Group with a list of fields what I am after is when my client returns to the main page via a Button I need my Cyclic Group to re set to the first field in the list. Any one got an idea or how this can be done without them scrolling through the groups.

2 Replies
m_woolf
Master II
Master II

This can be done with a macro.

sub set_group_field

      set gp = ActiveDocument.GetGroup("GroupName")

      do while gp.GetActiveField.Name <> "FieldName"

           gp.Cycle 1

      loop

end sub

Not applicable
Author

Thanks Mike

I did mention the Macro but they seem determined not to use Macro's on any of there projects. Do you know of any other way.