It would help to know which line the error occurred on (and I don't mean for you to answer with "line 46" .. i mean "if(currentColumn < calculations column maximum)" )
(Just a note to say I'm making a personal decision NOT to help out with this, because I don't agree with the [lack of] principles behind creating automated players for games that are designed to be...
i should point out that this code is massively inconsiderate and badly behaved because there's no rate control; it just hammers out a new request as soon as the old one finishes. You should consider...
Try a different browser to rule out the possibility that your page is cached and the styles are never actually being loaded properly (now) from the server, only from cache
Redirect tells the user's browser to go and get another page
UserBrowser> Hi server, give me page1's response to button1 being clicked
Server> Hi browser, request page2 from me
UserBrowser> Hi...
Hoping it wont be too difficult.. dsquery is a tool to query active directory services.. I've never done it myself but the following article on querying anything about AD in C# is well rated and...
Indeed; welcome to the concept of threads. You can read a vast quantity more on the net about threads than I will present here but for a quick run-down:
Mmm.. youre using recursion to stay in your program, you should perhaps use a loop in main. Perhaps the biggest problem is that you hvent written your logic out in plain english first, either pen and...
When you start learning to program, first write the program in english (or your native language) then translate it into code.. write it in comments, that way you already have a commented program when...
you know what's even weirder? I just F10'ed again while control was pointing to the "throw exception" line, and no exception was throown, the code just carried on as normal..
I'm getting that at the moment.. bugging me for the past few hours. The condition in my IF is evaluating to false, but VS2010 Pro runs the if block anyway. Noone in my team can explain it; this is a...
DataSet ds = new DataSet();
ds.ReadXml(PATH_TO_FILE_OR_OTHER_XML_SOURCE_GOES_HERE);
foreach(DataTable dt in ds)
foreach(DataColumn dc in dt.Columns){
MessageBox.Show(dc.ColumnName);
...