I took a button in form.I have two classes emp and bonus.bonus class is inherited from emp class.If bonus is giving ie in dialog box if we select ‘Yes’ b ie bonus
Latest Answer : Hi aarruunnaa,You try this code, if it is useful for you send me reply otherwise ask me again dont hesitate class emp {public int eno,sal; public emp(){}public emp(int eno,int sal) {this.eno=eno;this.sal=sal; }public virtual void print() {MessageBox.Show("eno ...
How to use messagebox in C#? What is the process for creating message box?
Latest Answer : you could do that byMessageBox.Show("hai");or if u want the symbols then u could go forMessageBox.Show(string mesasage,string caption,messageboxbuttons buttons) ...
How to display and create Message box in ASP.NET using C# code?