Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~245 People Reached
Favorite Forums
Member Avatar for GT2010

I have a form with 4 different textboxes. Each box needs to have a certain number of characters entered in so I'm writing if/else statements. For example: [CODE] if ((dlg.nameText.Length > 5) || (dlg.nameText.Length < 8)) this.DialogResult = DialogResult.None; MessageBox.Show("Error message goes here"); else this.DialogResult = DialogResult.OK; [/CODE] It goes …

Member Avatar for LizR
0
148
Member Avatar for GT2010

I have 3 classes, a student class, a studentList class, and a form. The ToString method is implemented in the student class, and a few students have been created and added in the studentList class. In the form, I'd like my current list of students to show up in a …

Member Avatar for ddanbe
0
97