Subj : Re: radio buttons To : borland.public.cpp.borlandcpp From : GZ Date : Thu Jul 15 2004 10:53 am Thanks a lot Bill - that link really helped. Even though I am sorry for posting the question on the wrong group, I am also somewhat glad I did it. Greg "Bill" wrote in message news:40f587ae@newsgroups.borland.com... > 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 > > > > > > .