Click here to Skip to main content
15,890,412 members
Home / Discussions / C#
   

C#

 
GeneralRe: beginer 1 Pin
papa198029-Nov-05 19:37
papa198029-Nov-05 19:37 
GeneralRe: beginer 1 Pin
Dan Neely30-Nov-05 2:14
Dan Neely30-Nov-05 2:14 
GeneralRe: beginer 1 Pin
papa198030-Nov-05 5:02
papa198030-Nov-05 5:02 
GeneralRe: beginer 1 Pin
J4amieC30-Nov-05 6:54
J4amieC30-Nov-05 6:54 
QuestionSoftware protection Pin
mirano29-Nov-05 1:15
mirano29-Nov-05 1:15 
AnswerRe: Software protection Pin
Christian Graus29-Nov-05 17:20
protectorChristian Graus29-Nov-05 17:20 
QuestionHelp on Accessing enum Pin
rnvrnv29-Nov-05 0:14
rnvrnv29-Nov-05 0:14 
AnswerRe: Help on Accessing enum Pin
S. Senthil Kumar29-Nov-05 2:27
S. Senthil Kumar29-Nov-05 2:27 
Because you put the enum inside a class, you have to prefix the classname before it.
class A
{
   public enum B
   {Good, Bad}
}

class C
{
   void Method()
   {
      A.B b = A.B.Bad;
   }
}


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
GeneralRe: Help on Accessing enum Pin
mcljava29-Nov-05 7:31
mcljava29-Nov-05 7:31 
QuestionAdding more Worksheets in Windows Forms Pin
meeram39528-Nov-05 23:41
meeram39528-Nov-05 23:41 
QuestionPrinter Tray Pin
mimei28-Nov-05 23:07
mimei28-Nov-05 23:07 
QuestionHow to asign event to data grid? Pin
orlya28-Nov-05 20:09
orlya28-Nov-05 20:09 
AnswerRe: How to asign event to data grid? Pin
DarkAngel78629-Nov-05 5:03
DarkAngel78629-Nov-05 5:03 
GeneralRe: How to asign event to data grid? Pin
orlya29-Nov-05 20:37
orlya29-Nov-05 20:37 
Questionhow to hide windows TitleBar Pin
liming28-Nov-05 19:20
liming28-Nov-05 19:20 
AnswerRe: how to hide windows TitleBar Pin
Christian Graus28-Nov-05 19:26
protectorChristian Graus28-Nov-05 19:26 
GeneralRe: how to hide windows TitleBar Pin
liming29-Nov-05 6:43
liming29-Nov-05 6:43 
GeneralRe: how to hide windows TitleBar Pin
Christian Graus29-Nov-05 11:35
protectorChristian Graus29-Nov-05 11:35 
GeneralRe: how to hide windows TitleBar Pin
liming29-Nov-05 17:16
liming29-Nov-05 17:16 
GeneralRe: how to hide windows TitleBar Pin
Christian Graus29-Nov-05 17:18
protectorChristian Graus29-Nov-05 17:18 
GeneralRe: how to hide windows TitleBar Pin
liming29-Nov-05 17:34
liming29-Nov-05 17:34 
GeneralRe: how to hide windows TitleBar Pin
Christian Graus29-Nov-05 17:37
protectorChristian Graus29-Nov-05 17:37 
QuestionGetUnmanagedThunkForManagedMethodPtr... Pin
Clickok28-Nov-05 15:56
Clickok28-Nov-05 15:56 
AnswerRe: GetUnmanagedThunkForManagedMethodPtr... Pin
leppie28-Nov-05 21:34
leppie28-Nov-05 21:34 
QuestionHelp on C# Pin
momoo28-Nov-05 14:44
momoo28-Nov-05 14:44 

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.