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=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,2746dae4f161c04e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-21 03:01:02 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.ems.psu.edu!news.cis.ohio-state.edu!news.maxwell.syr.edu!newsfeed00.sul.t-online.de!newsmm00.sul.t-online.com!t-online.de!news.t-online.com!not-for-mail From: "Lars Heppler" Newsgroups: comp.lang.ada Subject: Re: Gtkada-Prob Date: Wed, 21 Nov 2001 11:57:13 +0100 Organization: T-Online Message-ID: <20011121.115713.706043324.1437@web.de> References: <20011121.053507.496987743.3460@web.de> <20011121.113942.76065818.1437@web.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: news.t-online.com 1006340252 07 26095 Q2j6TKHGSlAfAA 011121 10:57:32 X-Complaints-To: abuse@t-online.com X-Sender: 520045374923-0001@t-dialin.net User-Agent: Pan/0.9.7 (Unix) Xref: archiver1.google.com comp.lang.ada:16784 Date: 2001-11-21T11:57:13+01:00 List-Id: Hi! > Can you show a bit more how you tried this? yep, -- this is in the window_pkg made with glade Gtk_New (Window1.Checkbutton2, -"Disable Extra-Paranoia"); Set_Active (Window1.Checkbutton2, True); Pack_Start (Window1.Vbox1, Window1.Checkbutton2, False, False, 5); Gtk_New (Window1.Radiobutton1, Vbox1_Group, -"WAV"); Vbox1_Group := Group (Window1.Radiobutton1); Set_Active (Window1.Radiobutton1, True); Pack_Start (Window1.Vbox1, Window1.Radiobutton1, False, False, 5); -- this is how i want to check it and want to do... if Get_Active (Window1.Checkbutton1) = True then rip_args(1) := new String'("-Z"); elsif Get_Active (Window1.Checkbutton2) = True then rip_args(2) := new String'("-Y"); elsif Get_Active (Window1.Radiobutton1) = True then rip_args(4) := new String'("-w"); I hope this is enough... Lars