Click here to Skip to main content
15,914,111 members
Home / Discussions / C#
   

C#

 
GeneralRe: Config Files Pin
Not Active23-Jan-09 11:29
mentorNot Active23-Jan-09 11:29 
QuestionActing on an indeterminate checkbox checkstate Pin
Lodeclaw23-Jan-09 10:34
Lodeclaw23-Jan-09 10:34 
AnswerRe: Acting on an indeterminate checkbox checkstate Pin
DaveyM6923-Jan-09 10:38
professionalDaveyM6923-Jan-09 10:38 
GeneralRe: Acting on an indeterminate checkbox checkstate Pin
Lodeclaw23-Jan-09 10:41
Lodeclaw23-Jan-09 10:41 
GeneralRe: Acting on an indeterminate checkbox checkstate Pin
DaveyM6923-Jan-09 10:57
professionalDaveyM6923-Jan-09 10:57 
GeneralRe: Acting on an indeterminate checkbox checkstate Pin
Lodeclaw23-Jan-09 11:01
Lodeclaw23-Jan-09 11:01 
GeneralRe: Acting on an indeterminate checkbox checkstate Pin
DaveyM6923-Jan-09 11:14
professionalDaveyM6923-Jan-09 11:14 
Questioncreate propertie list<> [modified] Pin
khaled_basher23-Jan-09 10:17
khaled_basher23-Jan-09 10:17 
i have problem in this control
please help me
when i put the my control in form give me error message
but not define error Cry | :(( D'Oh! | :doh:
public partial class rado : UserControl
    {
     
  
        protected internal List<RadioButton> rd = new List<RadioButton>();
        public List<RadioButton> Rd
        {
            get
            {
                return rd;
            }
            set
            {
          
                rd=value;
                dro();
            }
        }
        public RadioButton this[int index]
        {
            get
            {
                return rd[index];
            }
            set
            {

                rd[index] = value;

            }
        }

        public rado()
        {
            InitializeComponent();
        }
      
        private void dro()
        {
            this.Controls.Clear();
            for (int i = 0; i < rd.Count; i++)
            {
                this.Controls.Add(rd[i]);
            }   
        }
        
      
    }


modified on Friday, January 23, 2009 5:03 PM

AnswerRe: create propertie list<> Pin
DaveyM6923-Jan-09 10:20
professionalDaveyM6923-Jan-09 10:20 
GeneralRe: create propertie list<> Pin
khaled_basher23-Jan-09 10:35
khaled_basher23-Jan-09 10:35 
GeneralRe: create propertie list<> Pin
Guffa23-Jan-09 10:38
Guffa23-Jan-09 10:38 
GeneralRe: create propertie list<> Pin
khaled_basher23-Jan-09 10:51
khaled_basher23-Jan-09 10:51 
GeneralRe: create propertie list<> Pin
DaveyM6923-Jan-09 11:10
professionalDaveyM6923-Jan-09 11:10 
GeneralRe: create propertie list<> [modified] Pin
khaled_basher23-Jan-09 11:32
khaled_basher23-Jan-09 11:32 
GeneralRe: create propertie list<> Pin
DaveyM6923-Jan-09 11:52
professionalDaveyM6923-Jan-09 11:52 
QuestionSAPI 5 Dictation, how do I define a limited domain grammar? Pin
brossen23-Jan-09 9:48
brossen23-Jan-09 9:48 
QuestionDeploying Database Pin
ziwez023-Jan-09 9:21
ziwez023-Jan-09 9:21 
AnswerRe: Deploying Database Pin
EliottA23-Jan-09 9:23
EliottA23-Jan-09 9:23 
GeneralRe: Deploying Database PinPopular
User 665823-Jan-09 9:57
User 665823-Jan-09 9:57 
JokeRe: Deploying Database Pin
PIEBALDconsult23-Jan-09 12:58
mvePIEBALDconsult23-Jan-09 12:58 
GeneralRe: Deploying Database Pin
ziwez016-Feb-09 21:16
ziwez016-Feb-09 21:16 
AnswerRe: Deploying Database Pin
Ennis Ray Lynch, Jr.23-Jan-09 9:47
Ennis Ray Lynch, Jr.23-Jan-09 9:47 
AnswerRe: Deploying Database [modified] Pin
PIEBALDconsult23-Jan-09 13:05
mvePIEBALDconsult23-Jan-09 13:05 
AnswerRe: Deploying Database Pin
Alex Casals23-Jan-09 23:32
professionalAlex Casals23-Jan-09 23:32 
QuestionC# Populate Multi column (2) combobox with existing dataset (hide record #) Pin
Wheels01223-Jan-09 9:13
Wheels01223-Jan-09 9:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.