Subj : Re: radio buttons To : borland.public.cpp.borlandcpp From : Bill Date : Wed Jul 14 2004 09:21 pm From your TRadioButton constructor call, I suspect you're running C++ Builder rather than Borland C++ ( post should go into borland.public.cppbuilder.vcl.components.using ). If my suspicion is correct, then http://www.bcbdev.com/faqs/faq1.htm on Harold Howe's BCBDEV site should provide the information you need to assign handlers at run-time. HTH, Bill "GZ" wrote in message news:40f5425b$1@newsgroups.borland.com... > I have an application where I generate radio buttons at run time.Something > like, > RadioButtons[i] = new TRadioButton(this); > RadioButtons[i]->Parent = this; > RadioButtons[i]->Top = 45+ 16*(i%MAX_IN_COLUMN); > RadioButtons[i]->Left = (Column* HORZ_OFFSET) + 15; > Now i need to handle the events generated by these radio buttons. Can > anybody tell me how to go about it. > Thanks > Greg > > .