Click here to Skip to main content
15,892,927 members
Home / Discussions / C#
   

C#

 
AnswerRe: Images on form are not seen some times Pin
KeithF27-Feb-07 2:52
KeithF27-Feb-07 2:52 
GeneralRe: Images on form are not seen some times Pin
Martin#27-Feb-07 3:15
Martin#27-Feb-07 3:15 
GeneralRe: Images on form are not seen some times Pin
KeithF27-Feb-07 3:17
KeithF27-Feb-07 3:17 
GeneralRe: Images on form are not seen some times Pin
Martin#27-Feb-07 3:26
Martin#27-Feb-07 3:26 
GeneralRe: Images on form are not seen some times Pin
KeithF27-Feb-07 3:29
KeithF27-Feb-07 3:29 
AnswerRe: Images on form are not seen some times Pin
engsrini27-Feb-07 5:50
engsrini27-Feb-07 5:50 
QuestionInternal and internal protected Pin
Pankaj Garg27-Feb-07 2:08
Pankaj Garg27-Feb-07 2:08 
AnswerRe: Internal and internal protected Pin
kubben27-Feb-07 3:10
kubben27-Feb-07 3:10 
You are correct that internal means that it is accessible in the pribate assembly. The prodtected access modifier means that it is accessible within its class and by derived classes. Here is an example for Protected from Microsoft help:
using System;
class A
{
protected int x = 123;
}

class B : A
{
static void Main()
{
A a = new A();
B b = new B();

// Error CS1540, because x can only be accessed by
// classes derived from A.
// a.x = 10;

// OK, because this class derives from A.
b.x = 10;
}
}

Hope that helps.
Ben
QuestionColor of tab control. Pin
Vikram.....27-Feb-07 1:43
Vikram.....27-Feb-07 1:43 
AnswerRe: Color of tab control. Pin
Martin#27-Feb-07 1:56
Martin#27-Feb-07 1:56 
GeneralRe: Color of tab control. Pin
Vikram.....27-Feb-07 2:26
Vikram.....27-Feb-07 2:26 
GeneralRe: Color of tab control. Pin
Martin#27-Feb-07 2:41
Martin#27-Feb-07 2:41 
QuestionCalling a Method in C# Pin
sivainfo27-Feb-07 1:06
sivainfo27-Feb-07 1:06 
AnswerRe: Calling a Method in C# Pin
Seishin#27-Feb-07 2:00
Seishin#27-Feb-07 2:00 
GeneralRe: Calling a Method in C# Pin
sivainfo27-Feb-07 17:32
sivainfo27-Feb-07 17:32 
GeneralRe: Calling a Method in C# Pin
Matglas27-Feb-07 21:26
Matglas27-Feb-07 21:26 
QuestionRunning SQL Files Pin
N a v a n e e t h27-Feb-07 0:58
N a v a n e e t h27-Feb-07 0:58 
AnswerRe: Running SQL Files Pin
andre_swnpl27-Feb-07 1:30
andre_swnpl27-Feb-07 1:30 
GeneralRe: Running SQL Files Pin
N a v a n e e t h27-Feb-07 2:15
N a v a n e e t h27-Feb-07 2:15 
GeneralRe: Running SQL Files Pin
sam#27-Feb-07 2:55
sam#27-Feb-07 2:55 
GeneralRe: Running SQL Files Pin
N a v a n e e t h27-Feb-07 2:58
N a v a n e e t h27-Feb-07 2:58 
QuestionLinkButton click event in custom web control Pin
Matglas27-Feb-07 0:29
Matglas27-Feb-07 0:29 
AnswerRe: LinkButton click event in custom web control Pin
Stefan Troschuetz27-Feb-07 0:33
Stefan Troschuetz27-Feb-07 0:33 
GeneralRe: LinkButton click event in custom web control Pin
Matglas27-Feb-07 1:34
Matglas27-Feb-07 1:34 
GeneralRe: LinkButton click event in custom web control Pin
Stefan Troschuetz27-Feb-07 3:01
Stefan Troschuetz27-Feb-07 3:01 

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.