Click here to Skip to main content
15,900,511 members
Home / Discussions / C#
   

C#

 
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 
QuestionXmlSerializer fail loading myproj.XmlSerializers.dll Pin
JoZ CaVaLLo4-Jan-09 23:09
JoZ CaVaLLo4-Jan-09 23:09 
AnswerRe: XmlSerializer fail loading myproj.XmlSerializers.dll Pin
JoZ CaVaLLo5-Jan-09 4:14
JoZ CaVaLLo5-Jan-09 4:14 
QuestionAdoNetAccelerator-10 [modified] Pin
wmedwardc4-Jan-09 22:57
wmedwardc4-Jan-09 22:57 
AnswerRe: AdoNetAccelerator-10 Pin
Ashfield5-Jan-09 1:24
Ashfield5-Jan-09 1:24 
GeneralRe: AdoNetAccelerator-10 Pin
wmedwardc5-Jan-09 15:05
wmedwardc5-Jan-09 15:05 
GeneralRe: AdoNetAccelerator-10 Pin
Ashfield5-Jan-09 21:38
Ashfield5-Jan-09 21:38 
QuestionGridview / Table - Cell Backcolor blinking (2 colors) Pin
nimmi_friends4-Jan-09 21:17
nimmi_friends4-Jan-09 21:17 
AnswerRe: Gridview / Table - Cell Backcolor blinking (2 colors) Pin
Ben Fair5-Jan-09 3:25
Ben Fair5-Jan-09 3:25 
QuestionRunning Third Party Applications Programmatically Pin
Soptik Dutta4-Jan-09 21:08
Soptik Dutta4-Jan-09 21:08 

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.