5,346 Posted Topics
Re: [b]>Please send some sample coding for the Dot Net windows base Storage class or give some tutorials. It is urgent.[/b] Read the forum [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL] and [URL="http://www.daniweb.com/forums/announcement61-2.html"]homework[/URL] policy at daniweb. | |
Re: Welcome qadeer37, Please read the rules before posting. [url]http://www.daniweb.com/forums/faq.php?faq=daniweb_policies[/url] [b]>What's wrong?[/b] Have a look at signature of main(String arg), [code] public static void main(String arg[]) [/code] | |
Re: [b]>how i check if the box is check or not in a number of rows and know how many check boxes are clicked also want to count.[/b] [code] ... For Each row As DataGridViewRow In DataGridView1.Rows If row.Cells("No").Value Then 'Your statements End If Next ... [/code] | |
Re: [b]>How can i retrieve data information displayed on the hyperterminal or is there any way to redirect the information being displayed on hyperterminal to a file?[/b] .NET Serial classes - SerialPort class. | |
Re: [b]>point me in the right direction.[/b] Regular Expression (Regex class) [code] Dim str = "I {love|like} {blue|red|orange|pink} its my {favorite|worst} color " str = Regex.Replace(str, "(\{|\})", "") str = Regex.Replace(str, "((\w+)+\|)", "") Console.WriteLine(str) [/code] | |
Re: [b]>Can anyone suggest me how to block the drop down visibility when i use auto-complete.[/b] Refer [b][URL="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AutoComplete/AutoComplete.aspx"]Animation[/URL][/b] property. | |
Re: [b]>comopsite foreign keys.[/b] Please elaborate your question. Check the syntax - [url]http://dev.mysql.com/doc/refman/5.0/en/innodb-foreign-key-constraints.html[/url] | |
Re: [b]>Now, I've never touched AJAX before and wanted to know which route would be more convenient[/b] 1. (I've never touched AJAX..) Read this book - [url]http://jsninja.com/[/url] 2. (b) 3. I suggest - Beginning [URL="http://www.apress.com/book/view/9781590596678"]Ajax [/URL]with PHP: From Novice to Professional | |
Re: [b]>Need Help in String Manipulation.[/b] Refer this document - [url]http://java.sun.com/docs/books/performance/1st_edition/html/JPMutability.fm.html#19016[/url] | |
Re: [b]>I want to split a form into two section by a line.[/b] Short answer: Splitter control. | |
Re: [b]>I got exception"NoClassDefFoundException"[/b] Show us exception trace. java launcher unable to find that class. compile it >javac ConnectionDB.java -d . run it >java conn.ConnectionDB | |
Re: [b]>I get a Runtime Error. [/b] Show us that error description. | |
Re: [b]>plz,fill the correct blank.[/b] Take a look [URL="http://lmgtfy.com/?q=The technique that allow code to make function calls to .NET applications on other processes and on other machines is"]at[/URL]. [b]PS: Do not use "leet" or SMS speak on a forum.[/b] | |
Re: Welcome lokesh87. Tell us more about your project - [b]Faculty Pages[/b]. Please read the [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL] before posting. | |
Re: [b]sokan[/b] Please read the rules before posting again, in particular the 'keep it organized' one - subject titles such as 'help urgent' are not allowed. If you hit 10 infraction points your account gets an automatic ban, so it is worth obeying the rules if you want to continue to … | |
Re: [b]>Is there any other options and how should I do it?[/b] You need to use WebService. | |
Re: [b]>how to write a code for sql parser to parse select statements in c#[/b] You should use regular expressions. For your reference, visit codeProject article - [url]http://www.codeproject.com/KB/dotnet/SQL_parser.aspx[/url] | |
Re: Is that your thread? [url]http://www.daniweb.com/forums/thread256234.html[/url] | |
Re: [b]>cant display the image in viewing candidates[/b] [code] ... echo "<td><center><img src=\"$row[imgdata]\"></td>"; ... [/code] | |
Re: [b]>I created a masked text box but dont know how to define a mask?[/b] You may use regular expressions and MaskedTextBox control. Take a look at - [url]http://msdn.microsoft.com/en-us/library/ms234064%28VS.80%29.aspx[/url] | |
Re: Note sure but make your subdomain an application in IIS. Take a look at this thread - [url]http://stackoverflow.com/questions/631542/asp-net-profile-across-sub-domains[/url] | |
Re: Use [URL="http://msdn.microsoft.com/en-us/library/system.windows.forms.form.activated.aspx"]Form.Activated[/URL] Event. From MSDN article : To activate a form at run time using code, call the Activate method. You can use this event for tasks such as updating the contents of the form based on changes made to the form's data when the form was not activated. | |
Re: [b]>Issue opening data file with Scanner[/b] Look at the error message : java.io.FileNotFoundException: UserList.data (The system cannot find the file specified). You have to specify the path of data file. [code] ... File datafile=new File("x:\\dir1\\dir2\\UserList.data"); if(!datafile.exists()) { System.out.println("File not found"); return; } Scanner file = new Scanner(datafile); ... [/code] | |
Re: [b]>If IBindableComponent is not there does it mean that the control doesn't implement it?[/b] Yes. [b]>And if indeed the aforementioned property cannot be bound to an application setting, what other alternatives do I have to achieve what I'm trying to do?[/b] 1. Follows the sknake's post #2. Manually databind the … | |
Re: [b]>problems or lackings still u find in discussion[/b] Please elaborate your question. Do not use "leet" or SMS speak on a forum. You've got a full keyboard and plenty of space to write what you mean. | |
Re: [b]>"value can not be null , parameter name String" [/b] [code] .... if (form["name"] != null) { int id; int.TryParse(form["name"], out id); ... } [/code] [b]>how to prevent SQL injections or is it occur while working with LINQ?[/b] Yes, LINQ stops SQL injection. Read this article - [url]http://www.devx.com/dotnet/Article/34653[/url] | |
Re: Take a look at [URL="http://www.mono-project.com/FAQ:_General"]MONO FAQ.[/URL] | |
Re: [b]>Please can you tell me the type of programs testers creating in C#?[/b] Your question sounds "Software" to test C#. Write [URL="http://en.wikipedia.org/wiki/Unit_test"]unit [/URL] tests and use [URL="http://www.nunit.org/"]NUnit [/URL] to run them. If you are looking for static analysis, you should use [URL="http://msdn.microsoft.com/en-us/library/bb429476%28VS.80%29.aspx"]FxCop[/URL], and use [URL="http://www.jetbrains.com/resharper/download/index.html"]ReSharper [/URL] to analyze your program … | |
Re: Learn ADO.NET Data Provider classes. [code] mycommand.Commandtext = "Select [Prodcut Name] FROM Products WHERE ProductID = @pid" mycommand.Connection=conn mycommand.Parameters.AdddWithValue("@pid",ComboBox1.SelectedValue) conn.Open() Dim obj as Object=mycommand.ExecuteScalar() If IsNothing(obj) Then Textbox1.Text = "Not Found" ELSE TextBox1.Text=obj.ToString() End IF conn.Close() [/code] | |
Re: [b]>Should I change code or choose some other datagridview event?[/b] Yes. Think about [URL="http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.cellvalidated.aspx"]CellValidating/CellValidated[/URL] event. | |
Re: [b]>how we can send binary sms to any mobile particularly nokia mobile from pc using smpp.[/b] Through SMS gateway provider or broker. (Make sure that the provider has an API that you can integrate with.) | |
Re: Please read these articles - [URL="http://odetocode.com/articles/172.aspx"]Retrieve Images from a SQL database for display in an Asp.Net Datagrid.[/URL] and [URL="http://aspalliance.com/141_Retrieving_Images_from_SqlServer_and_displaying_in_a_DataGrid__ASP_NET"]Retrieving Images from SqlServer.[/URL] | |
Re: [b]>Whether it is possible to print above format report without using any report tool like Eclipse Birt,Jasper Report, IReport[/b] Take a look at - [url]http://trac.inamik.com/trac/jtable_format[/url] (TableFormatter) | |
Re: [b]>But I want to add a 3rd column city type char(80).[/b] DataTable.Columns.Add method. [code] dt2.Columns.Add("City") da2.Fill(dt2) [/code] | |
Re: [b]>How to get tables and columns from existing sql server backup file without connect to SQL Server?[/b] You can't. | |
Re: [b]>Where should I begin looking for a library that will allow me to do the streaming audio capture capability? Any suggestions?[/b] Start with this tutorial - [url]http://java.sun.com/docs/books/tutorial/sound/capturing.html[/url] | |
Re: For more details on template, please see the FAQ - [url]http://www.parashift.com/c++-faq-lite/templates.html#faq-35.13[/url] | |
Re: Friend kanuri1, "urgent..." sounds unfriendly. Isn't it? Please help us to help you. Please do not post threads with generic subjects such as "URGENT!!" or "HELP ME" or "PROBLEM". Instead, clearly state a phrase describing the problem as the thread's title. I love learning and teaching languages, so feel free … | |
Re: [b]>you should increase the trust level of the assemblies.[/b] Unless you put an assembly in the GAC, it is meant to run in medium trust on an ASP.NET web server, in order to improve security and minimize the possibility of your website getting hacked. For more information read .NET security … | |
Re: [b]>I would like to parse it via C# inside a class that I am creating.[/b] Document Object Model - classes of System.Xml namespace. [code] string str="<?xml version=\"1.0\" encoding=\"utf-8\" ?><string xmlns=\"http://tempuri.org/\">6264021</string>"; System.Xml.XmlDocument doc = new System.Xml.XmlDocument(); doc.LoadXml(str); var value = doc.GetElementsByTagName("string"); if(value.Count!=0) Console.WriteLine(value[0].InnerText); [/code] | |
Re: [b]>Why is this? Is the .EXE in the DEBUG directory not compiled correctly? [/b] I suggest you to read - [url]http://haacked.com/archive/2004/02/14/difference-between-debug-vs-release-build.aspx[/url]. | |
Re: [b]>I tried setting the DataGridView DataSource and DataMember to Nothing and that didn't fix it. [/b] [code] dgVDNResults.Columns.Clear() dgVDNResults.DataSource = Nothing [/code] Show us event handler code. | |
Re: [b]>datagrid is only text and there was some reference on creating custom columns[/b] Override the [B]Paint [/B]method of DataGridColumnStyle. | |
Re: [b]>How do I curve the edge of a User Control?[/b] set [b]Region[/b] data. | |
Re: [b]>connectivity of the database[/b] Learn/Use ADO.NET Data Providers classes. | |
Re: [b]>I want to develop site like GIS system(geographical information system), how to crate it using c#???[/b] [url]http://www.codeplex.com/SharpMap[/url] [QUOTE] SUMMARY: SharpMap is an easy-to-use mapping library for use in web and desktop applications. It provides access to many types of GIS data, enables spatial querying of that data, and renders beautiful … | |
Re: [b]>how can we add data to a list box in asp.net using...[/b] [u]Method - 1[/u] Use [b]Items[/b] collection of ListBox. [code] ListBox1.Items.Add("Item1"); [/code] [u]Method - 2[/u] DataBinding. [code] ListBox1.DataSource = dataSource; ListBox1.DataTextField = "Col1"; ListBox1.DataValueField = "Col2"; ListBox1.DataBind(); [/code] | |
Re: [b]>WMI[/b] ? [b]>I want information about user's logon session.[/b] The server should be able to identify that a series of request from a single client from a single working "session". By associating a specific request to a specific working session, we can distinguish one user from another. | |
Re: Take a look at - [url]http://www.daniweb.com/forums/thread12071.html[/url] | |
Re: [b]>I have a HTML table stored in one of the columns in SQL-table[/b] Store data. Do not store design. [b]>Is it possible to read and show content from .doc and .xls files?[/b] Yes. You can do so using Office InterOp API. |
The End.