5,346 Posted Topics
Re: You have to create proxy class in c# to consume web-service methods. Please read this article - [url]http://articles.techrepublic.com.com/5100-10878_11-5768122.html[/url] | |
Re: Welcome @yaje. [b]>is this applicable in visual basic 2005?[/b] Yes. Please do not resurrect old or solved threads. If you want to ask question, start your own thread. Thread Closed. | |
Re: Have a look at this article - [URL="http://msdn.microsoft.com/en-us/library/zt27tfhy.aspx"]Custom Controls in ASP.NET[/URL]. | |
Re: I know this has been marked as solved, but thought i'd chime in. Completely agree with Mr. jwenting. The only effect is on the readability of code and code maintainability. [icode]The purpose of including multiple classes (non-public top-level, nested and inner classes) in one source file is to bundle related … | |
Re: Have a look at this thread - [url]http://www.daniweb.com/forums/thread240617.html[/url] | |
Re: Welcome smith!. We understand your problem. We only give help to those who show effort. You might want to read the [URL="http://www.daniweb.com/forums/announcement58-2.html"]homework[/URL] policy if you run into problems and want to ask for help here. Please do not resurrect old threads. Read the rules before posting again - [url]http://www.daniweb.com/forums/thread78223.html[/url] | |
Re: Remove line #12. | |
Re: [b]>Is there any article or magazine which u can send describing how to develop a news website in asp.net.[/b] Please! Go Google yourself. [b]>I'm confused with these stuff.[/b] Have a look at these articles: 1. [url]http://support.microsoft.com/kb/893663[/url] 2. [url]http://msdn.microsoft.com/en-us/library/ms345119%28SQL.90%29.aspx[/url] | |
Re: Now, you have to configure MySqlCommand object to execute select query against that database connection. [code] conn = New MySqlConnection() conn.ConnectionString = "server=" & TextBox1.Text & ";" _ & "user id=" & TextBox2.Text & ";" _ & "password=" & TextBox3.Text & ";" & "database=test" Try conn.Open() Dim cmd as New … | |
Re: [b]>I looked online, but didn`t find much.[/b] Read this doc - [url]http://java.sun.com/docs/books/tutorial/deployment/applet/index.html[/url] Please make correction: 1. Applet subclass must be public. [code] ..... public class WelcomeApplet extends JApplet { .... ... } [/code] 2. Create html document using any text editor. sample.htm [code] <html> <applet code="WelcomeApplet" width="300" height="45"> </applet> </html> … | |
Re: [b]>constantly updating without interfering with the user.[/b] You have to look at - [url]http://www.asp.net/Ajax/Documentation/Live/overview/UsingTimerControlTutorial.aspx[/url] | |
Re: Have a look System.Web.HttpUtility.ParseQueryString method. (add reference of System.Web.Dll). [code] string uri="http://xyz.com?file_name=filename.wmv&path=pathname"; System.Collections.Specialized.NameValueCollection coll; coll=System.Web.HttpUtility.ParseQueryString(uri); foreach (string v in coll ) Console.WriteLine(v + " : " + coll[v]); [/code] | |
Re: You may use databind feature of combobox. Have a look, [code] .... DataTable dt = new DataTable(); dt.Columns.Add("c_id"); dt.Columns.Add("c_name"); dt.Rows.Add("1", "A"); dt.Rows.Add("2", "B"); comboBox1.DataSource = dt; comboBox1.DisplayMember = "c_name"; comboBox1.ValueMember = "c_id"; ... [/code] Use SelectedItem property of combobox to get a row [code] .... DataRowView dr = (DataRowView)comboBox1.SelectedItem; if … | |
Re: Welcome. [b]>you can provide me any project which is most simple.[/b] Sorry!! Try to implement it yourself and if you run into problems and want to ask for help here. | |
Re: [b]>Now I want to record that URL as well,what do I need to add to my project???[/b] Have look at [URL="http://msdn.microsoft.com/en-us/library/ms709461%28VS.85%29.aspx"]MCI[/URL] - Media Control Interface and Recording and Playing Sound with the [URL="http://msdn.microsoft.com/en-us/library/aa446573.aspx"]Waveform Audio Interface[/URL] | |
Re: Please read these documents thoroughly. 1. [url]http://java.sun.com/docs/books/tutorial/javabeans/[/url] 2. [url]http://java.sun.com/devseloper/onlineTraining/Beans/bean01/[/url] | |
Re: [b]>how can i delete the item i just transfered from the listbox?[/b] ListBox1.Items.RemoveAt method. | |
Re: Try out this, [code] ... function GetRowValue() { window.opener.document.getElementById("TextBox1").value = document.getElementById("lstItem").value; window.close(); } ... [/code] | |
Re: Please do not resurrect old threads. If you have any questions, start your own thread. Thread Closed. | |
Re: Have a look at this article - [url]http://www.codeguru.com/csharp/.net/net_security/authentication/article.php/c7415[/url] | |
Re: Distribution list are stored by default into Contacts folder. You may create public folder but it requires exchange server e-mail account. | |
Re: [b]>the database is not getting updated with the entered value.[/b] Maybe that particular code/event is not fired. Show us your code please. | |
Re: [b]>How to save user input from text box and radio button to the SQL database using C# in ASP.Net?[/b] 1. Store input from textbox and radio button into the variables. [code] String name=TextBox1.Text; String gender="Female"; if(RadioButton1.Cheched) gender="Male"; [/code] 2. Create connection and command object. [code] SqlConnection cn=new SqlConnection("put_connection_string"); SqlCommand cmd=new … | |
Re: [b]>But I make the same code uploaded on Server and the on the required Event the outlook application is not getting started.[/b] Maybe correct version of Office Outlook api is missing OR There is a permission (rights) issue with asp.net guest user. | |
Re: [b]>will you provide some real good example on backgroundworker control in vb.net for doing some process in background.[/b] Not the real question. [URL="http://www.lmgtfy.com?q=BackgroundWorker+Tutorials"]Let me google that for you.[/URL] | |
Re: Tutorials: 1. Visual Basic Developer [URL="http://msdn.microsoft.com/en-us/vbasic/default.aspx"]Center[/URL]. 2. [url]http://www.startvbdotnet.com/[/url] | |
Re: [b]>How to reload method form module.[/b] I guess you want to call a method. Isn't it? | |
Re: Show us code of main.asp. Maybe you need to set seesion key for username or something like this at line #142. | |
Re: [b]>On questions change means question selected answers should display according to Question only!!!![/b] Think about nested gridview. | |
Re: Have a look at - [url]http://www.daniweb.com/forums/thread208059.html[/url] | |
Re: You should have to read - [URL="http://msdn.microsoft.com/en-us/library/bb264562%28SQL.90%29.aspx"]Embedding SQL Server Express into Custom Applications[/URL]. | |
Re: Welcome balarajenra. If you want to ask question, start your own thread. Please do not resurrect old or solved thread. Thread Closed. | |
Re: You may exclude Ch1Deg column, [code] SQLMdb = "INSERT INTO [AllData] ([Date]) VALUES ('" & dDate1 & "')" [/code] OR Use parameter query to assign DBNull.Value. [code] cmd=new OledbCommand("INSERT INTO [ALLDATA] VALUES (@mdate,@mch1deg)" cmd.Parameters.Add("@mdate",OleDbType.Date,8).Value = dDate1 cmd.Parameters.Add("@mch1deg",OleDbType.Varchar,40).Value=DBNull.Value ... .. [/code] | |
Re: Please read this [URL="http://www.google.com/support/forum/p/Google+Apps/thread?tid=43f6e3d4dad04cfa&hl=en"]FAQ[/URL]. | |
Re: [b]>Looking to write a language on the JVM[/b] [URL="http://en.wikipedia.org/wiki/Da_Vinci_Machine"]Da Vinci Machine.[/URL]. [b]>and if so are there any tutorials, any examples that spell it out?[/b] [URL="http://javadude.com/articles/antlr3xtut/"]Tutorials[/URL]. | |
Re: [b]>can anyone tell me how to get it...Its urgent[/b] [URL="http://social.msdn.microsoft.com/Forums/en/isvvba/thread/ab821d14-bfbc-4c08-b44b-7a5d293ecb2c"]Office[/URL] [URL="http://www.c-sharpcorner.com/Articles/ArticleListing.aspx?SectionID=1&SubSectionID=146"]Interop[/URL]. | |
Re: [b]>Where to begin to select the code editor to write the program.[/b] [code] Module Module1 Sub Main() Console.WriteLine("Hello, world!") End Sub End Module [/code] | |
Re: Try this code. (It is from mscorlib.dll) [code] Dim outdt As Date = Date.Parse("12/31/2009") Console.WriteLine(outdt.ToString("dd-MM-yyyy")) [/code] | |
Re: Change template parameters, [code] ... SortedList<string, int> s1 = new SortedList<string, int>(); foreach (string k in Words) { if (s1.ContainsKey(k)) s1[k]++; else s1.Add(k, 1); } foreach (KeyValuePair<string, int> kvp in s1) Response.Write(kvp.Key + " : " + kvp.Value); ... [/code] | |
Re: [b]>How can I best troubleshoot to find exactly why it won't auto start?[/b] Maybe it is that a dependency did not start correctly. [b]>What's the best place to keep my .exe and .dll?[/b] I think you have a deployment issue. Please refer these documents: 1. [url]http://msdn.microsoft.com/en-us/library/d56de412.aspx[/url] 2. [url]http://www.codeproject.com/KB/tips/EasyDebugWindowsServices.aspx[/url] 3. [url]http://www.codeproject.com/KB/dotnet/simplewindowsservice.aspx?msg=3236525[/url] | |
Re: [b]>How to resolve webDev.webserver.exe problem in vb 2008 in xp sp-2[/b] Please be more specific about your problem. | |
Re: Set [b]DrawMode[/b] with OwnerDrawFixed and handle DrawItem event. | |
Re: Method - System::IO::File::ReadAllLines will read all lines of a file. [code] using namespace System; using namespace System::IO; int main(array<System::String ^> ^args) { array<String ^> ^lines=System::IO::File::ReadAllLines("sample.txt"); for(int i=0;i<lines->Length;i++) Console::WriteLine(lines[i]); return 0; } [/code] You may use another method - System::IO::File::ReadAllText to read all lines of a file. [code] using namespace System; … | |
Re: Read BestJewSinceJC's post #2. [code] .. c1.print(100.00,"March"); .. [/code] | |
Re: Request form collection is read-only so, we cannot directly modify it but reflection api will do that. [code] MethodInfo WritableMethod; MethodInfo ReadOnlyMethod; BindingFlags Flags = BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static; WritableMethod = Request.Form.GetType().GetMethod("MakeReadWrite", Flags); ReadOnlyMethod = Request.Form.GetType().GetMethod("MakeReadOnly", Flags); FieldInfo FormField = Request.GetType().GetField("_form", Flags); WritableMethod.Invoke(Request.Form, null); Request.Form["no"] = "100"; FormField.SetValue(Request, Request.Form); … | |
Re: [b]>Can anyone explain why ?[/b] ViewState stores every changed property. Initializing the control in the page (any event) counts as a change, so any changes in control property during page execution will be persisted in viewstate. | |
Re: Hi de buurman. I appreciate your help. Have you noticed that the current thread is two years old? Please do not resurrect old threads and have a look at forum [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL]. | |
Re: [b]>3. Is it possible if I JUST add up the comparing part of the Speech API?[/b] Yes but don't say how? In fact I suggest you to use [URL="http://www.codeproject.com/KB/audio-video/tambiSR.aspx"]SAPI[/URL]. | |
Re: [b]>.Add reference to add[/b] MS-Excel 5.0 or 7.0, select the Microsoft Excel 5.0 Object Library. MS-Excel 97, select the Microsoft Excel 8.0 Object Library. MS-Excel 2000, select the Microsoft Excel 10.0 Object Library. MS-Excel 2003, select the Microsoft Excel 11.0 Object Library. MS-Excel 2007, select the Microsoft Excel 12.0 Object … | |
Re: Web-Methods can return any [b][URL="http://msdn.microsoft.com/en-us/library/bb552900.aspx"]serializable[/URL][/b] data type. |
The End.