How will U encapsulate button trigger event into text_box event of Pressing Enter key?
Answers were Sorted based on User's Feedback
Answer / sandipan4allinterview
protected void Button1_KeyDown(object sender, EventArgs e)
{
if(e.KeyCode == Keys.Enter)
{
///do your stuff
}
}
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / arvind kumar
encapsulation is a process in which we can get all the
imformation .
Is This Answer Correct ? | 0 Yes | 10 No |
What are Memory foot print of an exe?
Constructor to an arbitrary base constructor?
What do you know about WM_CHAR message?
Are constructors inherited c#?
What is the difference between list and dictionary in c#?
How do namespaces work?
While debugging a C# application can you change the value of a variable?
What is dll hell, and how does .net solve it?
What is exe in c#?
i want o/p 011242110 in c# code.
How more than one version of an assembly can keep in same place?
Why static variables are used?