Put Your Views,Problems and Solutions

By
Hi Friends ! I want your views ,problems and Solutions (if any) ,so that i can easily solve your problems in our coming posts.I want your help because every person expert in one field (area). So please share your different-different views so that it will helpful for me and others.We can solve every problems in .NET,Security and other Fields if all students and Developers provide full support to each others.So please visit this page every day and solve each employee,students problems through your valuable comments.I want to connect those persons who provide support to the persons.Please share your suggestions ,it is more need to me and others.   
             You can send your knowledge or post with your Name and Email address at ramashanker@outlook.com . I will publish it as your post on website  http://www.msdotnet.co.in
           We all have come in life,do something so that people remember you for long time. I have  built this website so that every people (student) can share your valuable information (knowledge) across the world and World's people know every one Name.   

I hope you will participate in his program soon and visit this page every day to solve each persons problems. I will always feel your problem as my problem.

Note:-
Every Comment posted by you ,will be published on website after 2-3 hours ,so please post your same comment only one time.

28 comments:

  1. Nice things,i will definitely share valuable informations..............

    ReplyDelete
  2. i am making an inventory so when i purchase any item and if the same item name exist then only add the quantity

    ReplyDelete
    Replies
    1. hi alex, if any user enter same item which is present in your inventory then it will add in quantity.
      you can check your text box value which is entered by user== exist in table or not
      if exist
      increase the counter
      else
      show message no item exist in this inventory.
      you have to follow this algorithm.
      i think you can write c# codes for this algorithm.
      if any problem ask again...

      Delete
  3. how can i create a setup file for c# windows application with database,
    sir i am new in c# windows application so sir,give me steps for creating setup file with database

    ReplyDelete
  4. Hi tejas! Read below links for this:-
    http://www.msdotnet.co.in/2013/07/how-to-create-setup-fileexe-with.html

    ReplyDelete
    Replies
    1. i am using database so is it mandory to use sql server managment studio or can i use inbuilt database sql server of visual studio?
      and plz also tell me how to set product key in this set up file?

      Delete
    2. you can use another database also,but sql server is more compatible with visual studio.so you have to use sql server only .you can set a key in your c# coding.i will tell you latter after implement it on own setup file....

      Delete
    3. how to use register key in my setup file of c# widows application like installation of msoffice.

      Delete
    4. hi tejas ! Read below links it will helpful for you...
      http://www.codeproject.com/Articles/12903/Deploy-your-Application-or-Component-Using-Windows

      Delete
    5. i have one application just like one type of bill project. in this project i am using sql server management studio 2008 for storing and retrieving data.now i want to install on different-different computer.how can i install this project with this database?
      is this mandatory to install sql server management studio 2008 on each computer?if yes then how can i set connection string in app.config file.

      Delete
    6. hi tejas ! when you create setup file with database then all the configuration files save in your setup file.when you will install it on other computer by clicking on setup file then they (database and other files) will install automatically.there is no need to install database separately. your connections strings will be for other computer also..

      Delete
    7. then sir how to set connection string in app.config for sql server management studio 2008

      Delete
    8. Read Step 8,9 in below link
      http://www.msdotnet.co.in/2013/07/how-to-create-setup-fileexe-with.html

      Delete
  5. Hello sir,
    I am very happy about find that website and i am join with u.
    Now my question is :: I am confuse about the "Object Data Source" which type of code use in and difference the other DataSource in Asp.net.

    ReplyDelete
    Replies
    1. hi uk !
      if we added the ObjectDataSource to the page and configured it, we're ready to add data Web controls to the page to display the data returned by the ObjectDataSource's Select,update ,insert ,delete method.

      if you want step by step tutorial on object data source visit below link:-
      http://msdn.microsoft.com/en-us/library/aa581783.aspx

      you will understand whole concepts from here.if any problem ask .....

      Delete
  6. Thanks Sir giving me a rply for my question...but if possible then give me your personal skype id for more communication so if you suitable then give me id.

    ReplyDelete
    Replies
    1. hi uk ! you can talk me on Skype.....
      id - Ramashankerverma OR ramashanker@outlook.com



      Delete
  7. hello sir
    i am making a bill based on windows form and using sql server 2008
    how to continue entry of data into data base for eg:- i have purchased a item(dettol) and another item(crocin) so i want to make entry of both these item in database and delete from stocks at same time

    ReplyDelete
    Replies
    1. hi alax ! follow these below steps:-
      1.) first create two table ,first for purchased item and second stock items.
      2.) when any user purchase any item then you have to save these value in purchased database.
      sql connection strings codes................here
      insert value in purchased database......
      cmd .command Addwithvalue ("item"),Textbox1.text or Drownlist.selecteditems or others)
      ..................................similarly..........................................................................................
      int i == cmd.execute.Nonquery();
      if (i>1)//means if item purchaged
      {
      1.) show any message to your user item purchased by label or other.
      2.) delete purchased item from stock table here.(use sql connection if you are using sql database)
      }
      else
      {
      show some error message here......
      }
      done....
      Refer my website posts ...one is below:
      http://www.msdotnet.co.in/2013/12/how-to-use-different-connection-strings.html

      Delete
  8. Hi Sir I want to create a blog and feedback system in my website.So how can I create these in my website.
    Thanks in advance.

    ReplyDelete
  9. Hi Hemant kumar ! First create your blog on blogger or WordPress separately .You can create only feedback system on your website. After that put a link of your blog on your website.It is best way.You will have seen that many website have your own separate blog.

    ReplyDelete
  10. Hello Sir.... I have created an application on hospital management and also created setup file.I want to know that how can i install this setup file in multiple computers so that multiple users can perform insert,update,delete at a time and data should be stored in a single sql server...
    I also want to know that whether i take my asp.net website files as an offline installer like windows form setup file and run it anywhere with sql server....Please Help sir...

    Thanks.....

    ReplyDelete
  11. hi Nandan ! First Make one computer as a server and create your sql database on that computer. After that install your setup on other computers also which are connected to LAN or WIFI to server computer. Your connection strings should be same as server computer.Then it will work ... yes you can create asp.net website's setup file but window applications setup files are mostly used than web application.So you have to use window application setup file. If any problem ask again............

    ReplyDelete
  12. sir your explanation is very awesome and i am learning from your website. so sir one request... plz upload about crystal report with example....because I have no idea about the crystal report

    ReplyDelete
  13. hi sir,

    my ques is how to sort records in gridview when datasource is list.

    ReplyDelete
    Replies
    1. Read below link
      http://www.c-sharpcorner.com/blogs/sorting-in-grid-view-using-generic-list1

      Delete

Powered by Blogger.