Top "Dynamic-controls" questions

Removing dynamic controls from panel

I have dynamically generated controls on the panels of windows form and i have also generated a button for removing …

c# winforms panel dynamic-controls
Add controls dynamically in flowlayoutpanel

In a windows form, I can add control dynamically by doing this: for (int i = 0; i < 5; i++) { Button button = …

c# winforms dynamic-controls flowlayoutpanel
ASP.Net: drop down list and data source created dynamically

I have about 10 drop down list controls that get populated. Instead of copying/pasting and modifying a few fields on …

asp.net drop-down-menu sqldatasource dynamic-controls
Adding Control to Gridview Cell

I want to add a button on GridView cell on certain condition. I did the following in RowDatabound event if( …

c# asp.net gridview dynamic-controls rowdatabound
Dynamic created controls inside UpdatePanel?

I want to create control that will allow user to design his own website structure. I imagined that inside UpdatePanel …

asp.net dynamic-controls
Adding and removing dynamic controls Windows Forms using C#

I have three Tabs in my Windows Forms form. Depending on the selected RadioButton in the TabPages[0], I added few …

c# winforms dynamic-controls
Dynamically Created User Controls In C#

I am working in a C# winforms project and I have a user control which gets loaded upon its selection …

c# .net winforms dynamic-controls
dynamic dropdownlist in asp.net

I created dropdownlist at runtime when a button is clicked.and i palced another button to get the selected text …

c# asp.net drop-down-menu dynamic-controls
flowlayout control keeps adding control in the wrong direction in winforms

I have a flowlayout control in winforms, i have set its flow direction to TopDown but it keeps adding controls …

c# winforms user-controls dynamic-controls flowlayoutpanel
Dynamically Create controls and save the controls values across postback - ASP.Net C#

Consider this - I allow the end user to create a tab control dynamically in an ASP.Net page by …

c# asp.net dynamic-controls