5,346 Posted Topics
Re: [code=jsp] <jsp:useBean id="bId" class="pk.ClassName" scope="session"/> [/code] | |
Re: JQuery is my answer. Have a look at - [URL="http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth-popup-using-jquery/"]http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth-popup-using-jquery/[/URL] | |
Re: Scott, I think @k.vijayakumar wants to edit label of treeview or listview. | |
Re: k.vijayakumar , Use code tags and post ASP.NET question in ASP.NET forum. | |
Re: Read this article - [URL="http://mattberseth.com/blog/gridview/"]http://mattberseth.com/blog/gridview/[/URL] | |
Re: @k.vijayakumar:it should be different from other rows.is it possible? Yes. | |
Re: Read this article - [URL="http://support.microsoft.com/kb/913485"]http://support.microsoft.com/kb/913485[/URL] [QUOTE]SUMMARY:This article discusses cached credentials security in Microsoft Windows Server 2003, in Microsoft Windows XP, and in Microsoft Windows 2000. This article mostly discusses domain credentials.[/QUOTE] | |
Re: Read [URL="http://www.virtualmarketingblog.com/flash-variable-html/"]How to pass text into swf...?[/URL] | |
Re: An article - [URL="http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=115"]http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=115[/URL] | |
Re: Read the meta content of visited page. >I need to get the properties of Internet explorer. [URL="http://www.codeproject.com/KB/shell/"]http://www.codeproject.com/KB/shell/[/URL] | |
Re: Look at this [URL="http://stackoverflow.com/questions/868054/how-to-unblock-website-which-is-blocked-using-c"]thread[/URL] | |
Re: [code=vb.net] Dim n As Integer = 10000 TextBox1.Text = n.ToString("##,##,###.00") [/code] | |
Re: Links: [URL="http://social.msdn.microsoft.com/Forums/en-US/netfxsetup/thread/ed16357b-f7a9-4c17-a22c-edfadb045ec9"]http://social.msdn.microsoft.com/Forums/en-US/netfxsetup/thread/ed16357b-f7a9-4c17-a22c-edfadb045ec9[/URL] [URL="http://www.codeproject.com/KB/dotnet/clickOnce.aspx?msg=1649043"]http://www.codeproject.com/KB/dotnet/clickOnce.aspx?msg=1649043[/URL] | |
Re: MS-SQL server can operate in one of the two security modes: 1. Windows Authentication 2. Sql Server authentication Read more on this subject - [URL="http://msdn.microsoft.com/en-us/library/aa905171(SQL.80).aspx"]http://msdn.microsoft.com/en-us/library/aa905171(SQL.80).aspx[/URL] For Ms-SQL Express edition, use Windows Authentication, [code=cplusplus] pConnection1->ConnectionString = "Provider=SQLOLEDB;Data Source=.\\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=northwind"; [/code] | |
Re: Welcome iamdinesh, Here is a great link - [URL="http://www.codeproject.com/KB/audio-video/cameraviewer.aspx"]http://www.codeproject.com/KB/audio-video/cameraviewer.aspx[/URL] [QUOTE]SUMMARY:A C# video surveillance application, which allows monitoring several IP cameras simultaneously. [/QUOTE] | |
Re: Have a look at FAQ - [URL="http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/7e61aae6-ed5e-4dc4-a67f-d2df493c6f80"]How to programatically generate password protected PDF documents from Reporting Services[/URL] | |
Re: [code] window.parent.focus() // or window.opener.focus(); [/code] Close that newly open window. | |
Re: >the command for the form can be used in console? What are differences between this two? is this the better approached? The console project template adds the necesary items needed to create a console application. A console application is run from the command line with input and output information being … | |
Re: I am not getting "a critical process?". Will you elaborate your question? | |
Re: I think you have to look at - [URL="http://jqueryui.com/"]http://jqueryui.com/[/URL] if your application is web. | |
Re: >Returning a single value from SQL Server query to a C# label, Use ExecuteScalar method of SqlCommand class. [code=c#] ... object val=cmd.ExecuteScalar(); ... [/code] | |
Re: Look at this link - [URL="http://www.programmingforums.org/thread22500.html"]http://www.programmingforums.org/thread22500.html[/URL] Use code tags to post your source code. | |
Re: Close the database connection once record has been save. Post source code. | |
| |
Re: I think you are looking for - [URL="http://www.codeproject.com/KB/webforms/HierDataGrid.aspx"]http://www.codeproject.com/KB/webforms/HierDataGrid.aspx[/URL] | |
Re: Use following properties: [code=vb.net] textBox1.SelectionStart = 1 textBox1.SelectionLength = 10 [/code] | |
Re: Welcome ajijacobm, Check the content of database which is located at Bin folder. | |
Re: Put .properties files into WEB-INF/classes folder. Use JSTL to read properties values. | |
Re: Javascript code to open modal window in html page. [code=javascript] <script type="text/javascript"> function doopen1() { window.showModalDialog ("win1.php",null,"dialogLeft:400,dialogTop:100px;dialogHeight:100px;dialogWidth:300px;"); } </script> [/code] | |
Re: Set Printer's page dimension (height/width). | |
Re: Select the property of Report or Page footer and set NewPageAfter=True or NewPageBefore=True | |
Re: Bind DataTextField, and DataValue Field properties. [code=asp.net] protected void Page_Load(object sender, EventArgs e) { if (IsPostBack == false) { ..... DropDownList1.DataSource = dt; DropDownList1.DataTextField = "Name"; DropDownList1.DataValueField = "ResourceID"; DropDownList1.DataBind(); } } protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { string qry = "select * from tablename where resourceid='" + DropDownList1.SelectedValue … | |
Re: Download code from [URL="http://winprog.org/tutorial/"]http://winprog.org/tutorial/[/URL] and compare it with your code. | |
Re: >many key words in java cryptography and none of them is been recognized in my system. Can you elaborate your post? Read java doc - [URL="http://java.sun.com/j2se/1.4.2/docs/guide/security/CryptoSpec.html"]http://java.sun.com/j2se/1.4.2/docs/guide/security/CryptoSpec.html[/URL] | |
Re: Append text to an edit control. [code=cplusplus] CEdit edit; LPCTSTR pszText; ..... ..... int nLength = edit.GetWindowTextLength(); // put the selection at the end of text edit.SetSel(nLength, nLength); // replace the selection edit.ReplaceSel(pszText); .... [/code] | |
Re: >Can I pass an audio file from one jsp to another using form submit. >If yes, then how do I write this file to another file in the next jsp page. JSP - Java Server Pages are servlets and they are compiled and executed (managed) by the web container (application … | |
Re: First of all, write extracted data into a CSV file and then download that file. | |
Re: Following functionality encapsulated by the base class library. Simple types, IO, Text, Threading, Remoting, Reflection, Debug & Diagnostics, Net, Configuration, and Globalization etc. | |
Re: osirion666, [CODE=JSP] ...... String todelete[] = request.getParameterValues("delete"); if(todelete!=null) { for (int i = 0; i < todelete.length; i++) { String sqld = "DELETE FROM table_name WHERE id='"+todelete[i]+"'"; } } .... [/CODE] | |
Re: "Java Platform Perfomance" by Steve Wilson and Jeff Kesselman. "Java Swing 2nd ed. ( OReilly )" "Swing 2nd ed. (Manning)" A lot of this stuff can be found on Sun web site (tutorials or forums). I would say that the best place to learn advanced topics is on the java.sun.com … ![]() | |
Re: Welcome s1504975, [QUOTE]I'm loooking for somebody willing to write complete working example for:[/QUOTE] I think you must have to read - Rules at daniweb. 1. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework policy[/URL] 2. [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to post source code?[/URL] 3. Title of thread must reflect your question. | |
Re: the great, study this thread - [URL="http://www.daniweb.com/forums/thread78955.html"]void main vs int main [/URL] >I am unable to change the program. Can any one help? I am really in need of it.... Use two dim. character array and put asterisks '*' and spaces. | |
Re: Store the path of file into an array or arraylist. [code=vb.net] Dim Ar(2) as String Dim I as Integer Private Sub Form_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Form1.Load Ar(0)="file1.gif" Ar(1)="file2.gif" Ar(2)="file3.gif" I=0 End Sub [/code] [code=vb.net] Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles … | |
Re: It depends upon the MailServer and API. Use settings/configuration option to set new user information. | |
Re: I think you will get more details from - [URL="http://www.gocosmos.org/index.en.aspx"]C# Open Source Managed Operating System[/URL] and [URL="http://en.wikipedia.org/wiki/Singularity_(operating_system)"]http://en.wikipedia.org/wiki/Singularity_(operating_system)[/URL] - [URL="http://www.brokenwire.net/bw/Programming/62/c-operating-system"]http://www.brokenwire.net/bw/Programming/62/c-operating-system[/URL] | |
Re: Alex_, What happned when user-agent is cookies-disabled. Think about Session & Database. | |
Re: Please read this article - [URL="http://www.lowest-price-web-hosting.com/articles/create-a-website.shtml"]http://www.lowest-price-web-hosting.com/articles/create-a-website.shtml[/URL] | |
Re: Set CausesValidation property of button. If CausesValidation is False: ASP.NET will ignore the validation controls, the page will be posted back, and your event-handling code will run normally. | |
Re: [code=vb.net] public class DBClass ... public Function GetTable(Sql as String) as DataTable Dim Adp as new SqlDataAdapter(sql,CnStr) Dim Dt as New DataTable Adp.Fill(Dt) Return Dt End Function End Class ..... .... Dim cs as new DBClass Dim Ds as new DataSet("TestDS") Ds.Tables.Add(cs.getTable("Select * from Table1"),"Table1") ... [/code] |
The End.