V
VJ
Sorry this might really a very basic question.. not hitting me now...What am
I doing wrong???
public class Textbox2 : Textbox1
{
public Textbox2() --> gives a error No overload for method
'Textbox1' takes '0' arguments
{
}
}
public class Textbox1 : System.Windows.Forms.TextBox
{
public Textbox1(string temp)
{
}
}
VJ
I doing wrong???
public class Textbox2 : Textbox1
{
public Textbox2() --> gives a error No overload for method
'Textbox1' takes '0' arguments
{
}
}
public class Textbox1 : System.Windows.Forms.TextBox
{
public Textbox1(string temp)
{
}
}
VJ