5,346 Posted Topics

Member Avatar for khcns

[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.

Member Avatar for kvprajapati
0
45
Member Avatar for qadeer37

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]

Member Avatar for stultuske
0
170
Member Avatar for rp_prakash

[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]

Member Avatar for kvprajapati
-1
133
Member Avatar for ravikiran32

[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.

Member Avatar for ravikiran32
0
111
Member Avatar for pablo989

[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]

Member Avatar for pablo989
0
86
Member Avatar for RAMAN2233

[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.

Member Avatar for kvprajapati
0
33
Member Avatar for cane23

[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]

Member Avatar for kvprajapati
0
63
Member Avatar for pac-man

[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

Member Avatar for kvprajapati
0
135
Member Avatar for kazmi_salman

[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]

Member Avatar for kazmi_salman
0
109
Member Avatar for Ap0ca1ypse
Member Avatar for Ap0ca1ypse
0
72
Member Avatar for sswati.sri

[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

Member Avatar for sswati.sri
0
245
Member Avatar for woznickis
Member Avatar for kvprajapati
0
106
Member Avatar for Pari13

[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]

Member Avatar for kvprajapati
0
55
Member Avatar for lokesh87

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.

Member Avatar for kvprajapati
0
43
Member Avatar for sokan

[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 …

Member Avatar for kvprajapati
-1
65
Member Avatar for samuel_1991
Member Avatar for samuel_1991
0
187
Member Avatar for muthu1802

[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]

Member Avatar for kvprajapati
0
159
Member Avatar for tqmd1

Is that your thread? [url]http://www.daniweb.com/forums/thread256234.html[/url]

Member Avatar for tqmd1
0
123
Member Avatar for takeshi

[b]>cant display the image in viewing candidates[/b] [code] ... echo "<td><center><img src=\"$row[imgdata]\"></td>"; ... [/code]

Member Avatar for takeshi
0
78
Member Avatar for vivek4020

[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]

Member Avatar for jamesonh20
0
91
Member Avatar for JPByD

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]

Member Avatar for JPByD
0
293
Member Avatar for Ap0ca1ypse

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.

Member Avatar for Ap0ca1ypse
0
122
Member Avatar for clisen

[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]

Member Avatar for clisen
0
146
Member Avatar for teatime

[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 …

Member Avatar for teatime
0
2K
Member Avatar for sumangala

[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.

Member Avatar for kvprajapati
0
73
Member Avatar for sakhi kul

[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]

Member Avatar for kvprajapati
0
341
Member Avatar for lewashby
Re: Mono

Take a look at [URL="http://www.mono-project.com/FAQ:_General"]MONO FAQ.[/URL]

Member Avatar for vivek4020
0
131
Member Avatar for redrose123

[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 …

Member Avatar for kvprajapati
0
123
Member Avatar for Tucker0

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]

Member Avatar for Tucker0
0
88
Member Avatar for vbdotnetlover

[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.

Member Avatar for vbdotnetlover
0
128
Member Avatar for sweetyyyy

[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.)

Member Avatar for verruckt24
0
219
Member Avatar for bharanidharanit

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]

Member Avatar for sakhi kul
0
104
Member Avatar for guravharsha

[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)

Member Avatar for JamesCherrill
0
195
Member Avatar for vbdotnetlover

[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]

Member Avatar for vbdotnetlover
0
335
Member Avatar for venkatseerla

[b]>How to get tables and columns from existing sql server backup file without connect to SQL Server?[/b] You can't.

Member Avatar for kvprajapati
0
102
Member Avatar for plobby

[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]

Member Avatar for kvprajapati
0
88
Member Avatar for termatt56

For more details on template, please see the FAQ - [url]http://www.parashift.com/c++-faq-lite/templates.html#faq-35.13[/url]

Member Avatar for termatt56
0
109
Member Avatar for kanuri1

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 …

Member Avatar for apegram
0
88
Member Avatar for sasidhars

[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 …

Member Avatar for kvprajapati
0
59
Member Avatar for justapimp

[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]

Member Avatar for apegram
0
620
Member Avatar for OldQBasicer

[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].

Member Avatar for OldQBasicer
0
205
Member Avatar for RTK

[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.

Member Avatar for RTK
-1
7K
Member Avatar for samuel_1991

[b]>datagrid is only text and there was some reference on creating custom columns[/b] Override the [B]Paint [/B]method of DataGridColumnStyle.

Member Avatar for kvprajapati
0
57
Member Avatar for yorro
Member Avatar for kvprajapati
0
162
Member Avatar for rocker9186

[b]>connectivity of the database[/b] Learn/Use ADO.NET Data Providers classes.

Member Avatar for raorane.swagat
0
58
Member Avatar for sakhi kul

[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 …

Member Avatar for kvprajapati
0
80
Member Avatar for ankitayadav

[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]

Member Avatar for kvprajapati
0
34
Member Avatar for MARKAND911
Re: WMI

[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.

Member Avatar for MARKAND911
0
67
Member Avatar for webdragon89
Member Avatar for kvprajapati
0
110
Member Avatar for Nfurman

[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.

Member Avatar for kvprajapati
0
79

The End.