7. C# provides a default constructor for me. I write a
constructor that takes a string as a parameter, but want to
keep the no parameter one. How many constructors should I
write?
what is the need of using interface in program
ex:if we have a program like this
interface1()
{
void method1();
void method();
}
class a1 : interface1
{
a1 b = new b();
b.method1();
b.method2();
}
so without using interface also we can achieve this then
wat is the need to use the interface?
plz give me the answer
17
how to create crystal reports
give one detail example(i want to view age category report)
please give suitable example in my small knowledge
f i give input like 1,1,4,5,6,1,2,5,4,1,2, then output
should be like : 1-4, 2-2, 4-2, 5-1, 6-1 which means 1
occurs 4 times, 2 occurs 2 times like so.
336
3. Use layered architecture for coding.
s.no name description
1 abc
xxxxxxxxx
2 abc
xxxxxxxxx
3
4
5
6
7
8
Select all Clear all Add Delete
Name
Description
Save close
51
the selected inf of other combobox?How do you achieve it?
How to raise an selection changed event associated with
listbox in datagridview control with a sample example?Here
the listbox is a child control associated with datagridview
control.
25
In a C# class we have a SortedList member m_addinProjects
we want to provide an iterator to allow the consumer of
this class access to the items in the collection. Please
provide an iterator method for the AnalyzeAddinsDLL class
below and an example of how it would be used.
namespace AnalyzeAddinsDLL
{
public class AllAddInProjects
{
private SortedList<string, AddInProject>
m_addinProjects;
public AllAddInProjects()
{
m_addinProjects = new SortedList<string,
AddInProject>();
}
}
}
what is be the overhead, if i use binary transmission. and
will it be sent using xml text or how ?
73
Hi Everyone, the design of the form disappear during writing
codes for dataset and data grid. The error show in "line of
assigning dataset". I don't know what's happen. If anyone
know , please share of technical help from someone. Thanks,
Horace Trever