Forum: C#
Mar 3rd, 2005, 8:09 PM
|
|
Replies: 2
Views: 269
|
Forum: C#
Mar 3rd, 2005, 7:00 PM
|
|
Replies: 9
Views: 944
|
Forum: C#
Feb 26th, 2005, 8:01 AM
|
|
Replies: 9
Views: 944
gencor45,
I have given you the code for your...
gencor45,
I have given you the code for your previous school projects in regards to the non repeating random number generation and the input validation problem threads that you posted.
Personally I...
|
Forum: C#
Feb 18th, 2005, 6:45 PM
|
|
Replies: 13
Views: 701
|
Forum: C#
Feb 18th, 2005, 6:36 PM
|
|
Replies: 13
Views: 701
|
Forum: C#
Feb 17th, 2005, 10:22 PM
|
|
Replies: 13
Views: 701
Ok... Here ya go...
using System;
using...
Ok... Here ya go...
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace RandomNumber
|
Forum: C#
Feb 17th, 2005, 1:56 PM
|
|
Replies: 13
Views: 701
Try something like this...
lblHint.Text =...
Try something like this...
lblHint.Text = "";
char[] hintArray = {"-","-","-","-"};
for(int i = 0; i < 4; i++)
{
if(randomArray[i] == textboxArray[i]
{
hintArray[i] = "+"
lblHint.Text +=...
|
Forum: C#
Feb 15th, 2005, 11:57 PM
|
|
Replies: 8
Views: 435
Try this...
using System;
using...
Try this...
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace RandomNumber
|
Forum: C#
Feb 15th, 2005, 9:41 PM
|
|
Replies: 8
Views: 435
|
Forum: C#
Feb 15th, 2005, 6:23 PM
|
|
Replies: 8
Views: 435
If you just want to see if your textbox number...
If you just want to see if your textbox number matches your random number, you only need to check for a match. If all other conditions are invalid then there is no need to check for non-numbers or...
|
Forum: C#
Feb 9th, 2005, 11:28 PM
|
|
Replies: 3
Views: 399
|
Forum: C#
Feb 9th, 2005, 11:23 PM
|
|
Replies: 1
Views: 370
|
Forum: C#
Feb 9th, 2005, 11:08 PM
|
|
Replies: 3
Views: 399
|
Forum: C#
Feb 9th, 2005, 1:11 AM
|
|
Replies: 2
Views: 1,020
|
Forum: C#
Feb 9th, 2005, 12:32 AM
|
|
Replies: 61
Views: 2,266
I took a course at Penn State. It was about 7...
I took a course at Penn State. It was about 7 months and 5 classes each with 7 sessions. At the end I got a certificate.
I think if you are already familliar with programming and OOP. You should...
|
Forum: C#
Feb 8th, 2005, 11:56 PM
|
|
Replies: 0
Views: 185
Handling exceptions when using threads
Hi, I am having a bit of trouble handling exceptions for a process running on a thread. I will try to explain this as best I can.
The main form creates a sub form...
The sub form creates a client...
|