Click here to Skip to main content
16,006,749 members
Home / Discussions / C#
   

C#

 
GeneralRe: Gantt & Calendar control Pin
Jordi Corominas4-Nov-04 21:47
Jordi Corominas4-Nov-04 21:47 
GeneralRe: Gantt & Calendar control Pin
Anonymous5-Nov-04 12:50
Anonymous5-Nov-04 12:50 
GeneralFormat specifier Pin
Luis Alonso Ramos4-Nov-04 10:08
Luis Alonso Ramos4-Nov-04 10:08 
GeneralRe: Format specifier Pin
Stefan Troschuetz4-Nov-04 23:12
Stefan Troschuetz4-Nov-04 23:12 
GeneralRe: Format specifier - that won't do it. Pin
Luis Alonso Ramos5-Nov-04 5:33
Luis Alonso Ramos5-Nov-04 5:33 
GeneralOpenFileDialog - multiple extensions on filter Pin
benjymous4-Nov-04 10:08
benjymous4-Nov-04 10:08 
GeneralRe: OpenFileDialog - multiple extensions on filter Pin
benjymous4-Nov-04 10:41
benjymous4-Nov-04 10:41 
Generaltwo questions about propertrygrid Pin
AlanJones4-Nov-04 9:55
AlanJones4-Nov-04 9:55 
1)how can I make properities or attributes in order(NOT SORT-LIKE) or take control them in order?
For example:
public string List
{
get { return m_strList; }
set { m_strList = value; }
}
public string List2
{
get { return m_strList2; }
set { m_strList2 = value; }
}
public string List3
{
get { return m_strList3; }
set { m_strList3 = value; }
}
it went like this:
List1
List3
List2
I dont know how did it do that.
I want to go like this
List2
List1
List3

can you tell me how to control these properties?

2)I am having struggle with changing color with using readonly
I am using those codes:
[ReadOnly(true)]
public string List
{
get { return m_strList; }
set { m_strList = value; }
}

I wanted to prevent the user to change the List but it changed the color black to light gray bec of readonly changed its color text. I tried to changed its text color(like ViewForeColor). No luck. what are your suggestions that how to change its text color?

Thanks in advance
Generalusing windows messages Pin
sianatia4-Nov-04 7:02
sianatia4-Nov-04 7:02 
GeneralRe: using windows messages Pin
Dave Kreskowiak4-Nov-04 7:08
mveDave Kreskowiak4-Nov-04 7:08 
GeneralRe: using windows messages Pin
sianatia4-Nov-04 7:18
sianatia4-Nov-04 7:18 
GeneralRe: using windows messages Pin
Dave Kreskowiak4-Nov-04 8:17
mveDave Kreskowiak4-Nov-04 8:17 
GeneralRe: using windows messages Pin
sianatia4-Nov-04 20:18
sianatia4-Nov-04 20:18 
GeneralRe: using windows messages Pin
Dave Kreskowiak5-Nov-04 0:25
mveDave Kreskowiak5-Nov-04 0:25 
GeneralRe: using windows messages Pin
Jay Shankar4-Nov-04 15:47
Jay Shankar4-Nov-04 15:47 
GeneralRe: using windows messages Pin
Nick Parker4-Nov-04 16:27
protectorNick Parker4-Nov-04 16:27 
GeneralParsing Pin
webhay4-Nov-04 6:39
webhay4-Nov-04 6:39 
GeneralRe: Parsing Pin
Luis Alonso Ramos4-Nov-04 6:59
Luis Alonso Ramos4-Nov-04 6:59 
GeneralRe: Parsing Pin
Charlie Williams4-Nov-04 7:22
Charlie Williams4-Nov-04 7:22 
GeneralCustom Control Properties Pin
MrEyes4-Nov-04 6:10
MrEyes4-Nov-04 6:10 
Generalincrementing ascii characters in c# Pin
JeromeKJerome4-Nov-04 6:06
JeromeKJerome4-Nov-04 6:06 
GeneralRe: incrementing ascii characters in c# Pin
JeromeKJerome4-Nov-04 7:20
JeromeKJerome4-Nov-04 7:20 
GeneralRe: incrementing ascii characters in c# Pin
leppie4-Nov-04 7:44
leppie4-Nov-04 7:44 
GeneralRe: incrementing ascii characters in c# Pin
Ami Bar4-Nov-04 8:12
Ami Bar4-Nov-04 8:12 
GeneralRemoting server Pin
Gavin Jeffrey4-Nov-04 3:30
Gavin Jeffrey4-Nov-04 3:30 

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.