Click here to Skip to main content
15,920,708 members
Home / Discussions / C#
   

C#

 
GeneralRe: setting focus on masked textbox control added in datagridview Pin
yogesh_kumar_agarwal7-Apr-10 21:16
yogesh_kumar_agarwal7-Apr-10 21:16 
GeneralRe: setting focus on masked textbox control added in datagridview Pin
Nouman Bhatti7-Apr-10 21:22
Nouman Bhatti7-Apr-10 21:22 
GeneralRe: setting focus on masked textbox control added in datagridview Pin
yogesh_kumar_agarwal7-Apr-10 23:49
yogesh_kumar_agarwal7-Apr-10 23:49 
QuestionWhat OracleType to use for table of record output parameter Pin
whiteadi7-Apr-10 20:51
whiteadi7-Apr-10 20:51 
QuestionMessage Removed Pin
7-Apr-10 20:30
arun_pk7-Apr-10 20:30 
AnswerRe: xml reading Pin
SeMartens7-Apr-10 21:03
SeMartens7-Apr-10 21:03 
GeneralRe: xml reading Pin
arun_pk8-Apr-10 1:36
arun_pk8-Apr-10 1:36 
AnswerRe: xml reading Pin
Mirko19807-Apr-10 23:23
Mirko19807-Apr-10 23:23 
QuestionCSV files in C# Pin
i gr87-Apr-10 20:11
i gr87-Apr-10 20:11 
AnswerRe: CSV files in C# Pin
SeMartens7-Apr-10 21:05
SeMartens7-Apr-10 21:05 
AnswerRe: CSV files in C# Pin
yujianchi7-Apr-10 23:29
yujianchi7-Apr-10 23:29 
AnswerRe: CSV files in C# Pin
PIEBALDconsult8-Apr-10 3:40
mvePIEBALDconsult8-Apr-10 3:40 
QuestionHow to Find the Control of a window opened in c# Pin
svt gdwl7-Apr-10 18:22
svt gdwl7-Apr-10 18:22 
AnswerRe: How to Find the Control of a window opened in c# Pin
Ravi Bhavnani7-Apr-10 18:51
professionalRavi Bhavnani7-Apr-10 18:51 
QuestionPublic Enum in UserControl is crashing Visual Studio 2008 Pin
Corayzon7-Apr-10 15:08
Corayzon7-Apr-10 15:08 
AnswerRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Dan Mos7-Apr-10 15:32
Dan Mos7-Apr-10 15:32 
First thing that jumped right(not leftSmile | :) ) into my eyes was the lack of the Flags atributte.

You must use it if you want to create combination(s) of the Enums wich you are doing by using the bitwise or (|) operator.

Something like this:

[Flags]
enum Days
{
    None = 0x0,
    Sunday = 0x1,
    Monday = 0x2,
    Tuesday = 0x4,
    Wednesday = 0x8,
    Thursday = 0x10,
    Friday = 0x20,
    Saturday = 0x40
}

GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Corayzon7-Apr-10 15:43
Corayzon7-Apr-10 15:43 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
PIEBALDconsult7-Apr-10 17:21
mvePIEBALDconsult7-Apr-10 17:21 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Dan Mos7-Apr-10 18:34
Dan Mos7-Apr-10 18:34 
AnswerRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Not Active7-Apr-10 15:32
mentorNot Active7-Apr-10 15:32 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Corayzon7-Apr-10 15:47
Corayzon7-Apr-10 15:47 
AnswerRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
DaveyM697-Apr-10 16:03
professionalDaveyM697-Apr-10 16:03 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
Corayzon7-Apr-10 16:30
Corayzon7-Apr-10 16:30 
GeneralRe: Public Enum in UserControl is crashing Visual Studio 2008 Pin
DaveyM697-Apr-10 16:34
professionalDaveyM697-Apr-10 16:34 
QuestionMessage Removed Pin
7-Apr-10 15:06
arucied7-Apr-10 15:06 

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.