Forum: C# Apr 5th, 2007 |
| Replies: 3 Views: 1,558 http://www.codeproject.com/cs/database/linkAccessInCSharp.asp
Try that site. |
Forum: C# Apr 2nd, 2007 |
| Replies: 12 Views: 6,883 And for your other problem:
if (textBox1.Text is equal to what you want)
{
// Move on
}
else
{
// Dont
} |
Forum: C# Mar 6th, 2007 |
| Replies: 2 Views: 2,457 To make it invisible use this code:
this.Hide();
BUT if you are hiding your main form, then you will have to use Application.Exit(); when you want to shut down the application. Otherwise it... |
Forum: C# Mar 6th, 2007 |
| Replies: 7 Views: 5,248 God you are fond of python ain't ya, mentioned all the time lol. Treat C# like a completely different language, don't try to make comparisons as that just leads to trouble:
StreamReader reader =... |