5,346 Posted Topics
| |
Re: Use [b]WHERE[/b] clause. [code] UPDATE TableName SET Column1=Value1 WHERE Column2=Value2 [/code] | |
Re: Not sure but try this: [code] void tryThis() { Console.ReadLine(); Console.WriteLine(); } [/code] | |
Re: You [I]may[/I] use [U]jQuery Tooltip[/U] plugins. | |
Re: Use [URL="http://msdn.microsoft.com/en-us/library/ms188365.aspx"]BULK INSERT[/URL] | |
Re: Traverse Rows collection of DataGridView control and use ADO.NET/LINQ-SQL/EDM to write those rows into database. | |
Re: >I'm considering serialization as a means of creating a simple database for an application. Please read [URL="http://en.wikipedia.org/wiki/Serialization"]Serialization[/URL] wiki. | |
| |
Re: Add Browser control and load html/JavaScript code. Reference links: 1. [url]http://social.msdn.microsoft.com/forums/en-US/winforms/thread/0a3b90b1-e834-41c3-834d-b45815e32c7c[/url] 2. [url]http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript[/url] | |
Re: >I want to know what types of useful softwares can be made by using ASP.net/C# ? As per my understanding you can develop any kind of software except system software. | |
Re: Take a look at [URL="http://msdn.microsoft.com/en-us/library/ms252085(v=vs.80).aspx"]How to Rebind and update datasource?[/URL] | |
Re: You need to use SELECT statement. (SELECT * FROM SensorEvent) | |
Re: Please read this blog post - [url]http://weblogs.asp.net/scottgu/archive/2007/07/30/asp-net-ajax-in-net-3-5-and-vs-2008.aspx[/url] | |
Re: Put code files under the special purpose App_Code folder. | |
Re: You may execute multiple queries with the mysqli interface requires a call to mysqli_multi_query(). | |
Re: Please read this article - [url]http://learn.iis.net/page.aspx/28/installing-iis-7-on-windows-vista-and-windows-7/[/url] | |
Re: @Christoven Please create a new thread to post your question and also post code part and csv file content. | |
Re: Use [URL="http://msdn.microsoft.com/en-us/library/1t4362sd.aspx"]DataSet[/URL] class. | |
Re: Please take a look at this [URL="http://stackoverflow.com/questions/309884/code-golf-number-to-words"]Code Golf: Number to Words [/URL] | |
Re: Use System.Data.Oledb classes to read/update excel file data. | |
Re: Good concept indeed! Have a look at [URL="http://net.tutsplus.com/tutorials/php/creating-a-file-hosting-site-with-codeigniter/"]this[/URL] tutorial. | |
Re: Change the printer's paper size. (Custom paper). | |
Re: I have the same file in the same folder you pointed out. I had installed Visual Studio Team System 2008. | |
Re: [QUOTE=Tank50;875498]Hi I want to create text box array at desing time.It means i want to create text box like Text box1[1],TextBox[2],TextBox[3]. [B]How do [COLOR="Red"]u[/COLOR] create it in desing time in C#.[/B] Thanks Tank50[/QUOTE] You may create an array of TextBox at runtime (dynamically). [CODE] ..... .... TextBox []t=new TextBox[5]; // … | |
Re: May be this will help you. [code] private void button1_Click(object sender, EventArgs e) { SqlConnection cs = new SqlConnection("Data Source = raaj-pc; Initial Catalog = BookSellerNescom; Integrated Security = True"); SqlCommand da; da = new SqlCommand("INSERT INTO tblBooks VALUES(@Book_ID, @Title, @ISBN_No, @Author, @Publisher, @Date_Published, @Available, @Price)", cs); da.Parameters.Add("@Book_ID", SqlDbType.Int).Value = … | |
Re: The common language system defines a specific set of construct and constraints that serves a guide for people who write libraries and compilers. The CLS defines rules that range from naming conventions for interface members, to rules governing method overloading. | |
Re: >How can I learn to work with databases? 1. Choose a database product - Oracle or MSSQL, MySql etc. 2. Buy a good book. I'd suggest C.J. Date's -Introduction to Database Systems. (RDBMS theory) | |
Re: Set Connection property of SqlCommand object. [code] .. sqlcmd.Connection=con [/code] | |
Re: [b]>when hidden it give me a black bitmap.[/b] Have a look at [URL="http://blogs.msdn.com/oldnewthing/archive/2005/06/24/432229.aspx"]blog[/URL]. | |
| |
Re: Declare a[b]loginAttempts[/b] variable outside the method. [code] int loginAttempts = 0; private void btnEnter_Click(object sender, EventArgs e) { ... if(loginAttempts==3) { ..... // statements } if(Invalid_username_orpassword_then) loginAttempts++; } [/code] | |
Re: Have a look at this thread - [url]http://www.daniweb.com/software-development/csharp/threads/251893/1122852#post1122852[/url] | |
Re: Take a look at this thread - [url]http://stackoverflow.com/questions/32260/sending-email-in-c-net-through-gmail/489594#489594[/url] | |
Re: [code] Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim SQLCmd As String = "Update [Stock] SET [DefaultOrderListID] =@ordId WHERE StockID IN (SELECT DISTINCT StockID FROM StockManufacturer WHERE ManufacturerID = @manuId)" Dim cmd As New SqlCommand(SQLCmd, SQLCon) cmd.Parameters.AddWithValue("@ordId",ComboBox2.SelectedValue) cmd.Parameters.AddWithValue("@manuId",ComboBox1.SelectedValue) SQLCon.Open() cmd.ExecuteNonQuery() SQLCon.Close() MessageBox.Show("Query Completed") End Sub … | |
Re: Do not add <script> tag. [code] ClientScript.RegisterStartupScript(this.GetType(),"ex", "alert('" + ex + "');", true); [/code] | |
Re: >windows authentication to log into an application Use WMI or DirectoryServices. | |
Re: I'd like to suggest you to read this [URL="http://geekswithblogs.net/AaronLi/archive/2007/05/20/112615.aspx"]post[/URL]. | |
Re: You likely want to try [URL="http://download.oracle.com/javase/tutorial/extra/fullscreen/exclusivemode.html"]Full-Screen Exclusive mode.[/URL] | |
Re: You can't do this using hyperlink because value of TextBox1.Text property is empty when a page is requested first time. Use LinkButton/Button/Image button and set PostBackUrl property. [code] ... <asp:Label ID="Label2" runat="server" Text="Name"></asp:Label> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <br /> <br /> <asp:Label ID="Label3" runat="server" Text="Label"></asp:Label> <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> <br /> <br … | |
Re: Have a look at [URL="http://msdn.microsoft.com/en-us/library/aa446573.aspx"]this[/URL] article. | |
Re: Please refer the [URL="http://reference.sitepoint.com/html/mime-types-full"]MIME[/URL] types list. | |
Re: Text from [URL="http://msdn.microsoft.com/en-us/library/sz4949ks(v=VS.100).aspx"]MSDN[/URL]: [QUOTE]The Literal control differs from the Label control in that the Literal control does not add any HTML elements to the text. (The Label control renders a span element.) As a consequence, the Literal control [icode]does not support any style attributes, including position attributes.[/icode] However, the Literal … | |
Re: You need to use query string or session to persist data between page requests. | |
| |
Re: Have a look at official Microsoft [URL="http://www.silverlight.net/learn/"]Silverlight[/URL] site. - |
The End.