This is so beautiful!
I didn't expect this at all XD It looks like a real soduku ,and man what an organized code! I'll never reach that level,My codes are always messy,maybe it comes with experience :}
Thank you int 10000000th time

I wish you just the best!!
now for the questions

:
I understood most of the code(and i was happy i did!),the part had the most difficult time is :
lbl.ForeColor = lbl.AllowDrop ? Color.Blue : Color.Black; // Set hard numbers Black, and user numbers Blue
//could you explain how does it work? is it like if allowdrop=true then -->blue else black? I've never seen this kind of thing, so simple and beautiful!
passes = 0; // Going to test to see if this is a good value. But limit it to 9 tries.
while (passes++ < 9 && !PassChecks()) // Check to see if this number in this position is okay
{
value = rd.Next(1, 9); // Now we want a good number so min is 1, and max is 9
lbl.Text = value.ToString(); // Set the value as text
_mat[row, col] = value; // set the Matrix value, go back and test, if we fall out of the loop
} // then either it passed,
if (passes >= 9) // or failed, in which case we set it to nothing and the matrix to 0
{
lbl.Text = string.Empty;
_mat[row, col] = 0;
}
}
//comment after the code:
this part was the hardest for me to understand and I'm still confused,the if passes>=9, the max value of passes will be 9 from the while loop, so is there a reason its passes>=9 and not passes==9?maybe i missed something... oh in second thought i understand everything else in the code above now XD
I really liked the using of Passchecks method , and sending true to the row\col\square checking method so it identifies as called from "Clear"

just awesome!
I'm still amazed and shocked! this is like a real game!
Now that I obtained some descent knowledge(not that different from console app as i thought) in the summer I'll make my own project,"Towers of Hanoi" I'll call it(like the legend if you heard), cause next year there will be a project that will give me 5 more units(units are calculated by the university, units*the grade) but it's huge one,Which is high level project.So I'll have to practice, and it's just cool and beautiful!!!
I'm so happy :}
So thank You for everything!
JooClops
P.S
Forgot one thing,
Can i just brush it so it looks like this :
[img=http://img216.imageshack.us/img216/5934/95455806.jpg]
is it difficult?