- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
10 Posted Topics
I was started a thread for how to do the setup. You was told me the solution, I have publish my project 1. [B]In Build menu - publish the project.[/B] I have publish a setup in Visual Studio 2008. It's running very well on my PC. But when i tried …
Hello, I had start a thread for how to attach a database on our program. I was really thankful to daniweb. I have create project on windows application (C#) back end is SQL server2005 I have dettach my database from SQL servr2005 and attach database in Visual Studio 2008 But …
where you have write the above code on form load or button click tell me first
[code] SqlConnection cn = new SqlConnection(); cn.ConnectionString = ""; [B]//In above "" add your database path[/B] cn.Open(); SqlCommand cmd = new SqlCommand("update tableRegister set IpAddType =@IpAddType where SerialNo="+TextBox1.ToString() + "", cn); cmd.Parameters.AddWithValue("SerialNo", textBox1.Text); int n = cmd.ExecuteNonQuery(); if (n > 0) { MessageBox.Show("Record Updated"); } cn.Close(); [/code] try this aCommand.Parameters.AddWithValue("TextBox1", …
Hi, I have develop a project on "Hospital Managment System". I want to run that project on client server system. what code or any chages I have to perform to run the project. Thank You prajaktaran
Hi, I want to print the crystal Reports what coding i have to type or what changes i have to do on my windows application.
I want to print the crystal reports devepolped in Windows Applicaton (C#)Directly and word document.
Take a timer contor,label on your form & write following code on timer label1.Text = DateTime.Noe.ToString(); It cna store and display the current date time.
hey, how can i update the database of SQL server 2008 while using win application as front end thanks prajaktaran
Hello, I have created a project on "Hospital Management". With Front end is Microsoft Visual studio2008 Windows Application (C#)& Back end is Microsoft SQL server 2008 It's Working Successfully. But the problem is setup is working only on that system where the project is done. If i try to start …
The End.
prajaktaran