How can i load the text box and label at the runtime based
on the existing text box and tabel
Answer Posted / dhara
public void labelcontrol()
{
label l=new label();
l.visible=true;
l.location =new point(100,100);
l.text="Name";
this.controls.add(l);
}
FOR CREATING LABEL AT RUNTIME.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is tpl in c#?
Is c# an open source language?
Explain the difference between boxing and unboxing.
Can abstract class have constructor?
What is an inheritance ?Give an example in which inheritance is used?
What is a linked list c#?
What are the Types of assemblies that can be created in dotnet
What is the difference between ref and out in c#?
What are methods c#?
Can an array be null c#?
What will a loop recorder show?
Why do we write system in c#?
What is the difference between gettype and typeof in c#?
State two different types of access modifiers.
What is the difference between finalize() and dispose() methods?