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

C#

 
AnswerRe: Change computer name by c# code Pin
Ravi Bhavnani5-Jan-09 1:30
professionalRavi Bhavnani5-Jan-09 1:30 
AnswerRe: Change computer name by c# code Pin
Giorgi Dalakishvili5-Jan-09 1:40
mentorGiorgi Dalakishvili5-Jan-09 1:40 
AnswerRe: Change computer name by c# code Pin
Pete O'Hanlon5-Jan-09 1:41
mvePete O'Hanlon5-Jan-09 1:41 
AnswerAssHat alert Pin
#realJSOP5-Jan-09 2:32
professional#realJSOP5-Jan-09 2:32 
GeneralRe: AssHat alert Pin
mshannaq5-Jan-09 4:16
mshannaq5-Jan-09 4:16 
GeneralRe: AssHat alert Pin
#realJSOP5-Jan-09 4:39
professional#realJSOP5-Jan-09 4:39 
GeneralRe: AssHat alert Pin
mshannaq5-Jan-09 5:24
mshannaq5-Jan-09 5:24 
GeneralRe: AssHat alert Pin
#realJSOP5-Jan-09 9:38
professional#realJSOP5-Jan-09 9:38 
GeneralRe: AssHat alert Pin
Pete O'Hanlon5-Jan-09 11:00
mvePete O'Hanlon5-Jan-09 11:00 
QuestionInetegerating SQL Express 2005 With c# Application Pin
Abdul Rahman Hamidy5-Jan-09 0:17
Abdul Rahman Hamidy5-Jan-09 0:17 
AnswerRe: Inetegerating SQL Express 2005 With c# Application Pin
Not Active5-Jan-09 0:38
mentorNot Active5-Jan-09 0:38 
QuestionExposing class properties for design time use Pin
kanchoette5-Jan-09 0:06
kanchoette5-Jan-09 0:06 
AnswerRe: Exposing class properties for design time use Pin
Omekudo Odafe Kingsley5-Jan-09 0:43
Omekudo Odafe Kingsley5-Jan-09 0:43 
AnswerRe: Exposing class properties for design time use Pin
Member 44703545-Jan-09 1:51
Member 44703545-Jan-09 1:51 
GeneralRe: Exposing class properties for design time use Pin
kanchoette5-Jan-09 2:24
kanchoette5-Jan-09 2:24 
GeneralRe: Exposing class properties for design time use Pin
moon_stick5-Jan-09 2:33
moon_stick5-Jan-09 2:33 
GeneralRe: Exposing class properties for design time use Pin
kanchoette5-Jan-09 2:46
kanchoette5-Jan-09 2:46 
That's interesting. Mmm ... so in the code shown below, exactly where are you inserting the [System.ComponentModel.Browsable(true)] please?

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace MultiColumnComboBox
{
    
    public partial class MultiColumnComboBox : ComboBox
    {
        
        public class Column
        {
            private bool _autoWidth = true;
            private int _columnWidth;

           
            public bool AutoWidth
            {
                get { return _autoWidth; }
                set { _autoWidth = value; }
            }
            
            public int ColumnWidth
            {
                get { return _columnWidth; }
                set { _columnWidth = value; }
            }
        }
        
        public MultiColumnComboBox()
        {
            InitializeComponent();
        }

        public MultiColumnComboBox(IContainer container)
        {
            container.Add(this);

            InitializeComponent();
        }
    }
}

GeneralRe: Exposing class properties for design time use Pin
moon_stick5-Jan-09 2:55
moon_stick5-Jan-09 2:55 
GeneralRe: Exposing class properties for design time use Pin
kanchoette5-Jan-09 3:08
kanchoette5-Jan-09 3:08 
GeneralRe: Exposing class properties for design time use Pin
moon_stick5-Jan-09 3:19
moon_stick5-Jan-09 3:19 
GeneralRe: Exposing class properties for design time use Pin
kanchoette5-Jan-09 3:22
kanchoette5-Jan-09 3:22 
GeneralRe: Exposing class properties for design time use Pin
moon_stick5-Jan-09 3:26
moon_stick5-Jan-09 3:26 
GeneralRe: Exposing class properties for design time use Pin
kanchoette5-Jan-09 3:36
kanchoette5-Jan-09 3:36 
Question[Message Deleted] Pin
Member 44703545-Jan-09 3:23
Member 44703545-Jan-09 3:23 
AnswerRe: Exposing class properties for design time use Pin
kanchoette5-Jan-09 3:25
kanchoette5-Jan-09 3:25 

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.