Get benefited from interview Q/A and Online Test section. Subscribe to this blog to get updates directly in your mail box.
Best View in Google Crome, Mozilla firefox or IE 7 or above

Wednesday, May 6, 2009

Learning/Academic projects in dotnet

I am writing this blog to share my mini Projects created for learning purpose. Also, these projects can guide you to create your Academic project in DOTNET for Computer Science or MCA courses.

I will post my original projects here. The projects will be in C#, dotnet, ASP.Net, ADO.Net, SQL Server, AJAX, JavaScript/VBScript, WebServices, WPF, WCF etc.

Please visit my blog regularly to get all the new projects posted.

12 comments:

  1. Great....It will be a good learning experience...

    ReplyDelete
  2. In .NET (C#)…..

    1) I have 1 Windows form. There are (say) 2 to 3 buttons in it. All of which, when clicked pop up another window, respectively

    E.g. There is a button called ADMIN…When clicked this gives the 2nd form or you can call a child form, in which we have to enter the user name and password for the admin…..

    2) My query here is that….When I click that ADMIN….the first form that is the parent is not getting disappeared….I have tried Form.show.disable()…….and another which I could do……….But the end result the same……….

    ReplyDelete
  3. Hello MK,

    You have to handle this situation using Delegate Event mechanism.

    Find the code below:

    private void Admin_Click(object sender, EventArgs e)
    {
    Form2 frm2 = new Form2();
    frm2.FormClosed += new FormClosedEventHandler(frm2_FormClosed);
    frm2.Show();
    this.Hide();
    }

    private void frm2_FormClosed(object sender, FormClosedEventArgs e)
    {
    this.Close();
    }

    Here, in the button click, we are hiding the parent form. And we are closing it when we are closing the child form.

    Hope this helps..

    ReplyDelete
  4. ya i ll try and let u know...thank you very much....

    ReplyDelete
  5. Hi sir can u send me the leave management source code in .net

    ReplyDelete
  6. HI...
    Nice sharing.and if you some projects of dotnet so please send to my id at praveen.share@yahoo.co.in

    ReplyDelete
  7. Hi if you have project in wcf and wpf please send to my mail id,another help also how to use silverlight in my asp.net application..tell me the steps..thanks..ask2sowba@gmail.com..

    ReplyDelete
  8. hi i want some new mini project titles in ASP.Net...can u give some idea.....

    ReplyDelete
  9. Before i developing a project what we do first.
    I mean how to analyze project in real time environments.....

    ReplyDelete
  10. how to provide security with out having backspace in the web application can suggest me the code

    ReplyDelete
  11. Hi
    if you have some projects in WCF and dotnet so please send to my id at bhandarkarsg@gmail.com

    ReplyDelete
  12. Hi
    if you have some projects in WCF ,silverlight,and dotnet so please send to my id at laddy221982@gmail.com

    ReplyDelete

  © Blogger templates Shiny by Ourblogtemplates.com 2008

Back to TOP