Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #10.5K
Ranked #2K
~8K People Reached
Favorite Forums

16 Posted Topics

Member Avatar for computerbear

You generate getters and setters for your Taxpayer but you don't declare them public. That's why the compiler can't access them from other classes. Since one can't see the context of your methods besides your for-iterations, I guess that this is the problem.

Member Avatar for computerbear
0
647
Member Avatar for VasquezPL

[QUOTE=Saikalyankumar;1537654]In your code, you have some errors at this line of code [CODE]search.Filter = String.Format[B]("managedby={0})"[/B], userName);[/CODE] Correct it to [CODE]search.Filter = String.Format[B]("managedby={0}")[/B], userName);[/CODE] and try once. See only the Bolded part of the code.[/QUOTE] Sorry but you must be kidding. The Error he corrected is unfortunately an error but the …

Member Avatar for VasquezPL
0
2K
Member Avatar for muzikhera

First of all, that kind of expressions you formed in text are "regular expressions". [URL="http://www.radsoftware.com.au/articles/regexlearnsyntax.aspx"]RegEx Howto[/URL] Another way would be to take one character left of the string and try to cast it into an int for example. If you get an exception you know it's not a number. Same …

Member Avatar for Mitja Bonca
0
403
Member Avatar for irisadaf

First of all you would have to create a class like "SortThread" deriving from System.Threading.Thread then you would implement the methods from a simple Thread. After that you can start your "SortThread" as a normal thread and work parallel or whatever you want.

Member Avatar for Wegginho
0
210
Member Avatar for shyla

- Create a Class named "CarInsurance" - Create variables drivers_age and drivers_stateOfResidence - Create a method in that class with parameters age and stateOfResidence (most likely called "constructor" I guess that should be help enough, because nobody won't solve your homework for you.

Member Avatar for Wegginho
0
61
Member Avatar for shack99

First of all your XML should look more like this... [CODE] <Students> <Student id = "a"> <Name>*** </Name> <Age>17 </Age> </Student> <Student id = "b"> <Name>*** </Name> <Age>17</Age> </Student> </Students>[/CODE] ... because Student is the iterating type of Node. The next Part is important. Create yourself an Object named Student! …

Member Avatar for shack99
0
707
Member Avatar for toadzky

You should probably try it with delegation! [url]http://msdn.microsoft.com/de-de/library/system.delegate.aspx[/url] Good luck!

Member Avatar for toadzky
0
247
Member Avatar for arsheena.alam

Hey, could you give some more information, about the Visual Studio you're using? The type of project, like is it an ASP.NET Application or a Website? What are you expecting?

Member Avatar for arsheena.alam
0
196
Member Avatar for KasunL

Hey, I'm pretty new to this board, but you shouldn't spend money on easy things like introductions. Books should give you a deeper look in special areas! If you had searched on google for the exact keywords you used you would have found this: [url]http://www.codeguru.com/csharp/csharp/cs_data/article.php/c4211[/url] (don't know if cross posting …

Member Avatar for techturtle
0
137
Member Avatar for leo88

Hey, I don't know exactly what you're trying to do. But I tried to understand your code and came up with this: [CODE] public static void Display2() { // just some strings for testing purposes string[] exampleDB = new string[] { "this", "is", "a", "test" }; // indexed List with …

Member Avatar for leo88
0
387
Member Avatar for sourav_kings

Google would help you with that exact keywords: [url]http://www.dotnetperls.com/sqlconnection[/url] [url]http://www.sql-server-performance.com/articles/dba/stored_procedures_basics_p1.aspx[/url] Good luck, if you have any questions regarding anything you really read by yourself feel free to ask. Noone will give you any code if you're not into it.

Member Avatar for Wegginho
0
142
Member Avatar for ppatryk

You have to explain a little bit more, like what is your input and what shall be your output? What kind of type is your tblGameBindingSource ? A SQL-Datasource? maybe like this? [CODE] string tmp = textBox.Text; string filterString = string.Format("[Platform] LIKE '%{0}%' OR [Game Title] LIKE '%{0}%'",tmp); this.tblGameBindingSource.Filter = …

Member Avatar for Wegginho
0
139
Member Avatar for Arjun_Sarankulu
Member Avatar for akshintlakalyan
0
110
Member Avatar for glyvery.happy

Hey, first of all: [CODE] //replace this OleDbDataAdapter daa = new OleDbDataAdapter("SELECT * FROM STUDENT WHERE STUD_ID=" + "'" + comboBox1.Text + "'", conn); // with this String cbxText = comboBox1.Text; if(!String.IsNullOrEmpty) { String strSelect = String.Format("SELECT * FROM STUDENT WHERE STUD_ID='{0}'", comboBox1.Text); OleDbDataAdapter daa = new OleDbDataAdapter(strSelect, conn); } …

Member Avatar for rohand
0
2K
Member Avatar for borkarparesh

Avoiding to open Google cached pages is not possible. They're going over IP's to a mixture or cached data and the actual page. If you want to have something really effective, try Microsoft Forefront Threat Management ([url]http://www.microsoft.com/germany/forefront/default.mspx[/url]) and don't try to write block-code yourself.

Member Avatar for Wegginho
-1
720
Member Avatar for jameslittle2104

Global.asax Application_Start is what you need. You want to use server side code in the server. You're absolutely correct with that idea of a small method looking for data. If there is no data or tables present, create it, or write back an error or redirect to your setup page.

Member Avatar for Wegginho
0
101

The End.