Forum: C# Sep 14th, 2008 |
| Replies: 4 Views: 562 >> the connections strings which i used in vs.net2003 isnot working here
Maybe a little mistake. Just post your connection string. Btw visit this site... |
Forum: C# Jun 25th, 2008 |
| Replies: 2 Views: 757 First you must to know the pattern of prime number then u can write the code.
see wikipedia (http://en.wikipedia.org/wiki/Prime_number) and FactMonster (http://www.factmonster.com/ipka/A0876084.html) |
Forum: C# Jun 3rd, 2008 |
| Replies: 5 Views: 9,352 label1.Text = dateTimePicker1.Value.ToShortDateString(); |
Forum: C# May 5th, 2008 |
| Replies: 4 Views: 1,918 Should be :
outputTextBox.Text ="\t\t ..........\r\n"; |
Forum: C# Apr 15th, 2008 |
| Replies: 3 Views: 580 Search on Google :)
Visit this link (http://www.codeguru.com/csharp/.net/net_general/patterns/article.php/c12805/) |
Forum: C# Apr 12th, 2008 |
| Replies: 1 Views: 5,170 handle it with keydown event :
private void TextBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if (e.KeyCode == Keys.Delete)
{
MessageBox.Show("you pressed delete key");... |
Forum: C# Apr 11th, 2008 |
| Replies: 3 Views: 6,419 |
Forum: C# Apr 11th, 2008 |
| Replies: 3 Views: 6,419 I added one line code...see the red one :
private void cmdtam_Klik(object sender, EventArgs e)
{
string cstr;
cstr = "data source=knight;initial catalog=latihan;uid=sa;pwd=sri";... |
Forum: C# Mar 20th, 2008 |
| Replies: 9 Views: 8,055 |