From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_05,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b94d93471ab7a957,start X-Google-Attributes: gid103376,public From: "bhj" Subject: Question about ObjectAda GUI Builder Date: 1998/09/02 Message-ID: <6sia9d$eql$1@news.kornet.nm.kr>#1/1 X-Deja-AN: 386985443 Organization: Korea Telecom X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Newsgroups: comp.lang.ada Date: 1998-09-02T00:00:00+00:00 List-Id: I'm a novis of ObjectAda and GUI builder. I have a ObjectAda 7.1 version. I want to make a ListBox, select one item of the listbox, and display this item to another text box. But I can't select item from the listbox. Soure code I wrote is like below : procedure ListBox1_Selected is ttt : String(1..20); begin SelectItem(window1.ListBox1, ttt); -- ?? not worked Text(Window1.Text1, ttt); -- display ttt to another text box end ListBox1_Selected; I study GUI of ObjectAda with GUI builder v.7.1.0 online help and gbObjects.ads source file. But this is not enough data for me. Do you have any sample programs for using the GUI builder? Or any other data which is useful for me? help me, please....... H.J. from Korea.