Click here to Skip to main content
15,913,610 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: How to set focus in CheckBox placed in User Control. Pin
Shameel27-Nov-09 1:57
professionalShameel27-Nov-09 1:57 
GeneralRe: How to set focus in CheckBox placed in User Control. Pin
Madhumanjuri Mitra27-Nov-09 2:22
Madhumanjuri Mitra27-Nov-09 2:22 
GeneralRe: How to set focus in CheckBox placed in User Control. Pin
Shameel27-Nov-09 2:41
professionalShameel27-Nov-09 2:41 
GeneralRe: How to set focus in CheckBox placed in User Control. Pin
Madhumanjuri Mitra27-Nov-09 2:57
Madhumanjuri Mitra27-Nov-09 2:57 
GeneralRe: How to set focus in CheckBox placed in User Control. Pin
Shameel27-Nov-09 3:06
professionalShameel27-Nov-09 3:06 
GeneralRe: How to set focus in CheckBox placed in User Control. Pin
freakyit27-Nov-09 3:39
freakyit27-Nov-09 3:39 
GeneralRe: How to set focus in CheckBox placed in User Control. Pin
Madhumanjuri Mitra30-Nov-09 20:12
Madhumanjuri Mitra30-Nov-09 20:12 
QuestionHow to decide whether a class is "internal" by .net reflection ? Pin
yoyota26-Nov-09 22:28
yoyota26-Nov-09 22:28 
We use reflection to get properties of a type. Here is a class :
namespace Test
{
    internal class MyClass 
    {
        public MyClass(){}                 
    }

    class MyTest
    {
        public static int Main(string[] args)
        {
            Assembly asm = Assembly.GetExecutingAssembly();
            Type[] types = asm.GetTypes();
            foreach(Type type in types)
                Console.WriteLine(String.Concat(type.Name,":\t",type.IsPublic);
        }
    
    }

}

"MyClass" is a "intenal" class. However, there seems no property for decide this in Type Class.
Type.IsPublic, Type.IsNestedAssembly ... all these properties seems not work.

Is there any method to take care of this ?

Thanks.
AnswerRe: How to decide whether a class is "internal" by .net reflection ? Pin
dan!sh 26-Nov-09 23:58
professional dan!sh 26-Nov-09 23:58 
GeneralRe: How to decide whether a class is "internal" by .net reflection ? Pin
yoyota27-Nov-09 14:06
yoyota27-Nov-09 14:06 
GeneralRe: How to decide whether a class is "internal" by .net reflection ? Pin
dan!sh 28-Nov-09 5:49
professional dan!sh 28-Nov-09 5:49 
QuestionDisplaying a form from another Form Pin
Madhumanjuri Mitra25-Nov-09 20:58
Madhumanjuri Mitra25-Nov-09 20:58 
AnswerRe: Displaying a form from another Form Pin
Shameel25-Nov-09 23:39
professionalShameel25-Nov-09 23:39 
AnswerRe: Displaying a form from another Form Pin
dan!sh 26-Nov-09 19:35
professional dan!sh 26-Nov-09 19:35 
GeneralRe: Displaying a form from another Form Pin
Madhumanjuri Mitra26-Nov-09 21:18
Madhumanjuri Mitra26-Nov-09 21:18 
GeneralRe: Displaying a form from another Form Pin
dan!sh 26-Nov-09 21:52
professional dan!sh 26-Nov-09 21:52 
GeneralRe: Displaying a form from another Form Pin
Madhumanjuri Mitra26-Nov-09 22:33
Madhumanjuri Mitra26-Nov-09 22:33 
GeneralRe: Displaying a form from another Form Pin
dan!sh 26-Nov-09 23:17
professional dan!sh 26-Nov-09 23:17 
QuestionADO .NET & Parameterized Stored Procedures [modified] Pin
T210225-Nov-09 20:24
T210225-Nov-09 20:24 
AnswerRe: ADO .NET & Parameterized Stored Procedures Returning Recordset Pin
Ashfield25-Nov-09 21:17
Ashfield25-Nov-09 21:17 
GeneralRe: ADO .NET & Parameterized Stored Procedures Returning Recordset [modified] Pin
T210225-Nov-09 21:42
T210225-Nov-09 21:42 
GeneralRe: ADO .NET & Parameterized Stored Procedures Returning Recordset Pin
Ashfield26-Nov-09 1:14
Ashfield26-Nov-09 1:14 
GeneralRe: ADO .NET & Parameterized Stored Procedures Returning Recordset Pin
T210226-Nov-09 2:02
T210226-Nov-09 2:02 
QuestionCoding Buddy! Pin
venomation25-Nov-09 6:19
venomation25-Nov-09 6:19 
AnswerRe: Coding Buddy! Pin
T210225-Nov-09 20:28
T210225-Nov-09 20:28 

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.