Quote:
>I have a particular problem in mind. I have a list of atoms or strings
>as a result of a Prolog predicate (I can process it as a set of
>clauses fact(Atom) or a single list of all the atoms or strings
>facts([Atoms]). I want to display all the atoms returned in a
>list_browser. When the Dialog box is opened. If I can manage this in
>the meantime, I'll post a reply to my own query. Otherwise, How do I
>go about it?
Its a bit unclear what you really want, but appending is easy:
...,
new(LB, list_browser),
forall(fact(X), send(B, append, X)).
Maybe better use the XPCE mailing list. XPCE \== Prolog!
Cheers --- Jan