Resize Controls in wpf Programming Software Development by manugm_1987 … are on Grid. Now when i maximize my window the contorls wihtin stackpanel are not getting resized, but stackpanel gets resized… Re: custom pop up menus css driven vs javascript Programming Web Development by Luckychap … want to do on web page. To develope ur own contorls (ex: pop-menu), u must be aware of OOPs javascript… Re: custom pop up menus css driven vs javascript Programming Web Development by thosecars82 … want to do on web page. To develope ur own contorls (ex: pop-menu), u must be aware of OOPs javascript… Re: Accessing Controls / User Controls / Tab Controls Programming Software Development by nccsbim071 … say i have a Windows forms and i have some contorls on it. If i want to access the controls on… Re: foreach Programming Software Development by farooqaaa You can use [I]for loop[/I] like this: [CODE]for (int i = 0; i < 10; i++) { forms[i].Contorls.Add(radiobutton); }[/CODE] Thanks Re: foreach Programming Software Development by walaa.z [QUOTE=farooqaaa;1209633]You can use [I]for loop[/I] like this: [CODE]for (int i = 0; i < 10; i++) { forms[i].Contorls.Add(radiobutton); }[/CODE] Thanks[/QUOTE] using for loop?? how pleas?? Re: foreach Programming Software Development by walaa.z [QUOTE=farooqaaa;1209633]You can use [I]for loop[/I] like this: [CODE]for (int i = 0; i < 10; i++) { forms[i].Contorls.Add(radiobutton); }[/CODE] Thanks[/QUOTE] aha ok but pleas can i use the same way to write the same way to save radiobutton text which user checked in text file?? Re: Printing groupBox contents Programming Software Development by mbowenitj I need to print a picture, labels and textboxes. I need this contorls to be sent to a printer when i click the print button. How to locate templatefield's contorls in C#? Programming Web Development by konczuras Hello Everybody! I have a simple question: where can I get or set a control, which is in a template field? I have a gridview, and I've created a templatefield in it, with a textbox inside. I want to use the data typed in that textbox, but I don't know how to reach it. I've tried the following: GridView1.SelectedRow.Cells[4]. how to … Re: How to locate templatefield's contorls in C#? Programming Web Development by sierrainfo [url]http://msdn.microsoft.com/en-us/library/bb426882.aspx[/url] Re: How to locate templatefield's contorls in C#? Programming Web Development by konczuras Thank you for your reply, but I haven't found the stuff there I was looking for. However, I've figured it out, so I post it to the others: [QUOTE]Control tex1 = GridView1.Rows[RowID].Cells[8].Controls[1]; //Here's the controlsource TextBox box; box = (TextBox)(tex1.FindControl("Name of the …