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.
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.
Nice things,i will definitely share valuable informations..............
ReplyDeletei am making an inventory so when i purchase any item and if the same item name exist then only add the quantity
ReplyDeletehi alex, if any user enter same item which is present in your inventory then it will add in quantity.
Deleteyou 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...
how can i create a setup file for c# windows application with database,
ReplyDeletesir i am new in c# windows application so sir,give me steps for creating setup file with database
Hi tejas! Read below links for this:-
ReplyDeletehttp://www.msdotnet.co.in/2013/07/how-to-create-setup-fileexe-with.html
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?
Deleteand plz also tell me how to set product key in this set up file?
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....
Deletehow to use register key in my setup file of c# widows application like installation of msoffice.
Deletehi tejas ! Read below links it will helpful for you...
Deletehttp://www.codeproject.com/Articles/12903/Deploy-your-Application-or-Component-Using-Windows
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?
Deleteis 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.
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..
Deletethen sir how to set connection string in app.config for sql server management studio 2008
DeleteRead Step 8,9 in below link
Deletehttp://www.msdotnet.co.in/2013/07/how-to-create-setup-fileexe-with.html
Hello sir,
ReplyDeleteI 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.
hi uk !
Deleteif 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 .....
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.
ReplyDeletehi uk ! you can talk me on Skype.....
Deleteid - Ramashankerverma OR ramashanker@outlook.com
hello sir
ReplyDeletei 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
hi alax ! follow these below steps:-
Delete1.) 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
ty will try
DeleteHi Sir I want to create a blog and feedback system in my website.So how can I create these in my website.
ReplyDeleteThanks in advance.
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.
ReplyDeleteHello 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...
ReplyDeleteI 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.....
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............
ReplyDeletesir 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
ReplyDeletehi sameer khan,
Deletei will explain it soon...
hi sir,
ReplyDeletemy ques is how to sort records in gridview when datasource is list.
Read below link
Deletehttp://www.c-sharpcorner.com/blogs/sorting-in-grid-view-using-generic-list1