464 Posted Topics
Re: check [URL="http://docs.codecharge.com/studio3/html/index.html?http://docs.codecharge.com/studio3/html/ProgrammingTechniques/HowTo/ModifyingHTMLOutput/ChangeTextColor.html"]this site[/URL] and [URL="http://www.java2s.com/Code/ASP/Asp-Control/SetLabelbackgroundcolorC.htm"]this site[/URL] | |
Re: declare an int count in you class and update it when you click the button and put the IP and PORT on count location in textboxes Hopefully it will help you [CODE]int count=0; private void button2_Click(object sender, EventArgs e) { //if String IP --> holding ur ip's string PORT-->holding ur … | |
Re: Mark522 modify your code like this [CODE] private void WriteToFile() { string path = @"C:\Users\Mark\Desktop\University\Final Year Project\Results.csv" string textToWrite = null; using (FileStream fs = new FileStream(path, FileMode.OpenOrCreate)) { using (TextWriter tw = new StreamWriter(fs)) { foreach (float A in result) { if (counter1 == 5) { counter1 = 1; … | |
Re: Check This code [CODE] int index = textBox3.Text.IndexOf('['); int length1 = (textBox3.Text.IndexOf(']')-index)+1; MessageBox.Show(textBox3.Text.Substring(index,length1));[/CODE] | |
I have tried this thread in another community of daniweb but was not helpful thought to try here in Geek's Lounge I have to write an article about business software can you share your ideas about business software, their demand, and how free downloading websites are effecting future of software … | |
Re: I think stop arguing about this [B]Wesleyy [/B]....... I cannot see the video(YouTube is inaccessible) can you please tell me briefly about those shortcuts ? | |
Re: Remove line number 66 this will call itself all the time and will result in an infinite loop | |
Re: You are creating a class within another and when you do this the outer parameter is also in scope of inner class and its parameters and as we know 2 variables with one name can not be defined with in same scope because of the naming conventions and clashes | |
Re: You can also check these links hopefully will help you :) [URL="http://download.oracle.com/javase/tutorial/2d/geometry/primitives.html"]1st link[/URL]....[URL="http://www.particle.kth.se/~lindsey/JavaCourse/Book/Part1/Tech/Chapter06/plotDraw.html"] 2nd link[/URL] and [URL="http://www.exampledepot.com/egs/java.awt/DrawBasic.html"]third link[/URL] | |
Re: check these links might be helpful [URL="http://msdn.microsoft.com/en-us/library/2tw134k3.aspx"]1st link[/URL].....[URL="http://www.codeproject.com/KB/cs/CustomConfigurationSectio.aspx"]2nd link[/URL] | |
Re: [QUOTE=;][/QUOTE] Try this code[CODE] for (int l = 1; l < list1.Count; l++) { string[] lineValues = list1[l].Split(','); //float intValue = float.Parse(lineValues[l]); float sum = 0.0F; for (int k = 0; k < lineValues.Length; k++) { // float Total = sum + intValue; sum+=float.Parse(lineValues[k]); } Console.Write(sum); } [/CODE] | |
Re: [CODE] myRichTextBox.SelectionFont = new Font( currentFont.FontFamily, currentFont.Size, newFontStyle);[/CODE] try using this instead of line# 3 | |
Re: this thread should be in Computer Science Forum any way all these statements are true an the answer is C because if you look at the statement you will find the ! which will invert the answer so the (A||B||C) must result in a false to get the right answer … | |
Re: before line number 20 try to check the value of r[4] and if it is null then put null in picture string and if it is not null then convert it to string and perform other steps | |
Re: [ICODE]dataGridView1.Rows[row_index].Cells[column_index].Value = true;[/ICODE] check [URL="http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcheckboxcolumn.aspx"]this link [/URL] and [URL="http://tech.chitgoks.com/2008/11/17/c-add-select-all-deselect-all-checkbox-in-column-header-in-datagridview-control/"]this link [/URL]for detailed view on checkbox column in DataGridView | |
Re: check [URL="http://www.a2zdotnet.com/View.aspx?Id=77"]this link[/URL] and [URL="http://stackoverflow.com/questions/868844/login-to-https-page-via-c"]this link[/URL] | |
Re: write the SelectedIndexChanged event of the list box1 and in that event add the following code[CODE] private void listBox1_SelectedIndexChanged(object sender, EventArgs e) { int i=0; while (listBox1.SelectedItem != listBox2.Items[i]) i++; listBox2.SelectedIndex = i; }[/CODE] | |
Re: OLEDB is fine to be used in this context but wasn't there any datasource named Microsoft Sql Server? | |
Re: array index is 0---> length -1 Use line number 13 like this [CODE] for (x = 0; x < taxArray.Length; x++)[/CODE] | |
Re: Which control are you using to take SSN from user? | |
Re: check the following links 1-[URL="http://msdn.microsoft.com/en-us/library/3707x96z%28v=vs.71%29.aspx"]Link[/URL] 2-[URL="http://msdn.microsoft.com/en-us/library/3707x96z%28v=vs.80%29.aspx"]Link[/URL] 3-[URL="http://snippets.dzone.com/posts/show/3861"]Link[/URL] 4-[URL="http://wap.c-sharpcorner.com/UploadFile/mahesh/dll12222005064058AM/dll.aspx"]Link[/URL] | |
Re: [CODE]//check condition if(dataSet1.Tables[0].TableName == "Table_Name") //getting tables [/CODE] and if you have all the 30 tables together in the DataSet then yes you can use them by [CODE]dataSet1.Tables["Table_name"]......[/CODE] but you must be very accuratly use the names of tables which are present in dataset to avoid exceptions :) | |
Re: Change the location of you project then try debugging it | |
Re: Check the following links... [URL="http://msdn.microsoft.com/en-us/library/aa645739%28v=vs.71%29.aspx"]1st link[/URL], [URL="http://msdn.microsoft.com/en-us/library/aa288459%28v=vs.71%29.aspx"]2nd link[/URL], [URL="http://www.codeproject.com/KB/cs/events.aspx"]3rd link[/URL], [URL="http://www.akadia.com/services/dotnet_delegates_and_events.html"]4th link[/URL], [URL="http://www.developerfusion.com/article/3057/events-and-delegates/"]5th Link[/URL], [URL="http://msdn.microsoft.com/en-us/library/17sde2xt%28v=vs.71%29.aspx"]6th link[/URL], [URL="http://www.codeproject.com/KB/cs/events_and_delegate_in_c_.aspx"]7th link[/URL],[URL="http://www.codeproject.com/KB/cs/delegatesandevents.aspx"]8th link[/URL].... Hope they will help you | |
Re: You are starting your days from 0 and looping to 31 that makes a total of 32 days every month | |
Re: just check [URL="http://www.java2s.com/Code/CSharp/CatalogCSharp.htm"]this link[/URL] it contains all the examples of C# organized by topic and also check [URL="http://ebookee.org/dl/c-sharp-projects-beginners/"] this link[/URL] might be helpful :) | |
Re: convert you datetime to string before using in insert to statement | |
Re: check these links [URL="http://download.microsoft.com/download/f/3/2/f32ff4c6-174f-4a2f-a58f-ed28437d7b1e/Introducing_NET_Framework_35_v1.doc"]1[/URL]...[URL="http://www.shl.com/SHLOnDemand/Documents/Skills_Tests_Factsheets/IT_Skills/Fact_Sheet_NET_Framework_3_5_UKE.pdf"]2[/URL]....[URL="http://dotnetguts.blogspot.com/2007/07/net-framework-35-new-features.html"]3[/URL]....[URL="http://www.dotnetspider.com/resources/4383-Dot-Net-Framework-Features.aspx"]4[/URL]... | |
Re: Check [URL="http://code.google.com/p/google-api-for-dotnet/"]this link [/URL]this gives an introduction to the google api's for .net and their usage also check [URL="http://stackoverflow.com/questions/4059906/using-google-search-api-services-in-the-backend-using-c"]this link[/URL] | |
Re: [URL="http://msdn.microsoft.com/en-us/library/system.windows.documents.textpointer.aspx"]Check this for help[/URL] | |
Re: change private to public in [CODE]public int taxOwed // Use read-only accessor. { get { return taxOwed; } [B] private[/B] set { } }[/CODE] | |
Re: This is the simplest code [CODE]int[] age, salary; String[] address, Name; int n=0; Console.WriteLine("Please enter Number of employees"); n = Int32.Parse(Console.ReadLine()); age=new int[n]; salary=new int[n]; address = new String[n]; Name = new String[n]; for (int i = 0; i < n; i++) { Console.WriteLine("Enter Name"); Name[i] = Console.ReadLine(); Console.WriteLine("Enter Age"); … | |
Re: Can you please elaborate your problem? | |
Re: check [URL="http://www.java2s.com/Code/CSharp/Data-Types/ObtainingtheMostSignificantorLeastSignificantBitsofaNumber.htm"]this link[/URL] | |
Re: Check This code [CODE] private void Form1_Load(object sender, EventArgs e) { String s = "12shshasj"; if (isNumeric(s.ElementAt(0).ToString())) MessageBox.Show(s.ElementAt(0) + " is numeric"); if(!isNumeric(s.ElementAt(s.Length-1).ToString())) MessageBox.Show(s.ElementAt(s.Length - 1) + " is not numeric"); } public bool isNumeric(string val) { double Num; bool isNum = double.TryParse(val, out Num); return isNum; }[/CODE] | |
Re: write the delete code where the control is returned after response.end() | |
Re: Have you checked [URL="http://msdn.microsoft.com/en-us/library/system.windows.forms.numericupdown.aspx"]this link[/URL] | |
Re: Have you already checked [URL="http://www.telerik.com/community/forums.aspx"]this link[/URL] and [URL="http://www.telerik.com/community/forums/silverlight/gridview/telerik-windows-controls-gridviewcolumn-isvisible-not-working.aspx"]this link[/URL] | |
Re: This code will give you the last record [CODE]SELECT * FROM Table_name WHERE ID=( SELECT MAX(ID) FROM Table_name)[/CODE] but for most recent entry you should add a column in your table which holds the time of insertion of record | |
Re: [QUOTE]Should we set the questions to are you a spammer? [/QUOTE] :D who will answer such a question? | |
Re: i want to be a cat a white chat I want to have superpowers to read every one's eyes :) | |
Re: check [URL="http://www.codeproject.com/KB/recipes/phsinglylinkedlists.aspx"]this link[/URL] | |
Hello All I am using window xp. I am facing a problem from past some days that My run command box automatically clears up when I log off and there is no saved command when re login can any one help how to get rid of this situation | |
Re: Check out the parameters you pass to this function and also check the Getsims() function other than them this code has no problem | |
Re: Use listview1.Click event instead of selected text changed event [CODE]this.listView1.Click+=new System.EventHandler(listView1_Click); void listView1_Click(object sender, System.EventArgs e) { //throw new System.NotImplementedException(); }[/CODE] | |
Re: Have you tried this? [CODE]DateTime.Now.AddHours(st)[/CODE] | |
Re: change line # 13 to [CODE] txtImagePath.Text =System.IO.Path.GetFullPath(opf.FileName)[/CODE] |
The End.