464 Posted Topics

Member Avatar for Munnazz

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]

Member Avatar for abelLazm
0
97
Member Avatar for g2gayan

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 …

Member Avatar for abelLazm
0
364
Member Avatar for Mark_48

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

Member Avatar for abelLazm
1
699
Member Avatar for LegitHugo

Check This code [CODE] int index = textBox3.Text.IndexOf('['); int length1 = (textBox3.Text.IndexOf(']')-index)+1; MessageBox.Show(textBox3.Text.Substring(index,length1));[/CODE]

Member Avatar for abelLazm
0
158
Member Avatar for abelLazm

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 …

Member Avatar for boyne
0
275
Member Avatar for Wesleyy

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 ?

Member Avatar for Narue
-2
157
Member Avatar for shyla

Remove line number 66 this will call itself all the time and will result in an infinite loop

Member Avatar for kimbokasteniv
0
592
Member Avatar for shyla
Member Avatar for vedro-compota

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

Member Avatar for vedro-compota
0
759
Member Avatar for MSoft

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]

Member Avatar for cretaros
0
98
Member Avatar for sachintha81

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]

Member Avatar for sachintha81
0
318
Member Avatar for duliduli556
Member Avatar for Mark_48

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

Member Avatar for abelLazm
0
131
Member Avatar for Der_sed

[CODE] myRichTextBox.SelectionFont = new Font( currentFont.FontFamily, currentFont.Size, newFontStyle);[/CODE] try using this instead of line# 3

Member Avatar for abelLazm
0
121
Member Avatar for NewtoC++

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 …

Member Avatar for hanvyj
0
116
Member Avatar for xanawa

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

Member Avatar for xanawa
0
83
Member Avatar for xanawa

[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

Member Avatar for Mitja Bonca
0
116
Member Avatar for judithSampathwa

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]

Member Avatar for abelLazm
0
170
Member Avatar for Behseini

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]

Member Avatar for Behseini
0
2K
Member Avatar for kirtee2209

OLEDB is fine to be used in this context but wasn't there any datasource named Microsoft Sql Server?

Member Avatar for abelLazm
0
918
Member Avatar for computerbear

array index is 0---> length -1 Use line number 13 like this [CODE] for (x = 0; x < taxArray.Length; x++)[/CODE]

Member Avatar for spdesigns
0
136
Member Avatar for computerbear
Member Avatar for niketakapoor

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]

Member Avatar for abelLazm
0
98
Member Avatar for studentoflife

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

Member Avatar for abelLazm
0
5K
Member Avatar for ujjankpapua
Member Avatar for SoftwareGuy

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

Member Avatar for SoftwareGuy
0
234
Member Avatar for pooran.c
Member Avatar for JamesCherrill
0
1K
Member Avatar for nawaray82

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

Member Avatar for abelLazm
0
41
Member Avatar for xanawa
Member Avatar for abelLazm
0
220
Member Avatar for Arjun_Sarankulu

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

Member Avatar for abelLazm
0
76
Member Avatar for vigneshkbv

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]

Member Avatar for abelLazm
0
176
Member Avatar for kimbokasteniv

[URL="http://msdn.microsoft.com/en-us/library/system.windows.documents.textpointer.aspx"]Check this for help[/URL]

Member Avatar for abelLazm
0
254
Member Avatar for computerbear

change private to public in [CODE]public int taxOwed // Use read-only accessor. { get { return taxOwed; } [B] private[/B] set { } }[/CODE]

Member Avatar for computerbear
0
636
Member Avatar for nawaray82

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"); …

Member Avatar for abelLazm
0
172
Member Avatar for VasquezPL
Member Avatar for Mark_48

check [URL="http://www.java2s.com/Code/CSharp/Data-Types/ObtainingtheMostSignificantorLeastSignificantBitsofaNumber.htm"]this link[/URL]

Member Avatar for Mark_48
0
127
Member Avatar for muzikhera

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]

Member Avatar for Mitja Bonca
0
385
Member Avatar for meherzad4u

write the delete code where the control is returned after response.end()

Member Avatar for abelLazm
0
118
Member Avatar for WildBamaBoy

Have you checked [URL="http://msdn.microsoft.com/en-us/library/system.windows.forms.numericupdown.aspx"]this link[/URL]

Member Avatar for abelLazm
0
85
Member Avatar for JakeA

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]

Member Avatar for abelLazm
0
348
Member Avatar for virusisfound

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

Member Avatar for virusisfound
0
160
Member Avatar for jingda

[QUOTE]Should we set the questions to are you a spammer? [/QUOTE] :D who will answer such a question?

Member Avatar for Portgas D. Ace
0
289
Member Avatar for Dean_Grobler

i want to be a cat a white chat I want to have superpowers to read every one's eyes :)

Member Avatar for Sulley's Boo
0
66
Member Avatar for m_J

check [URL="http://www.codeproject.com/KB/recipes/phsinglylinkedlists.aspx"]this link[/URL]

Member Avatar for abelLazm
0
36
Member Avatar for abelLazm

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

Member Avatar for savis1
0
102
Member Avatar for bunny07

Check out the parameters you pass to this function and also check the Getsims() function other than them this code has no problem

Member Avatar for bunny07
0
179
Member Avatar for Skeldave

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]

Member Avatar for abelLazm
0
116
Member Avatar for Nikhil R
Member Avatar for kirtee2209
Member Avatar for Mitja Bonca
1
5K
Member Avatar for xanawa

change line # 13 to [CODE] txtImagePath.Text =System.IO.Path.GetFullPath(opf.FileName)[/CODE]

Member Avatar for abelLazm
0
164

The End.