36) When I add text to a scrolling text widget how can I get the new

text to show?

Answer: Use the call undocumented in Motif 1.0

        void XmTextShowPosition(w, position)
        Widget w;
        XmTextPosition position;

where the position is the number of characters from the beginning of the
buffer of the text to be displayed. If you don't know how many characters are
in the buffer, use another call undocumented in Motif 1.0

        position = XmTextGetLastPosition(w)
Go Back Up

Go To Previous

Go To Next