Need help for project

merciless

New member
Joined
Mar 2, 2005
Messages
4
Programming Experience
Beginner
Hi. new to VB.net and making my first project.

Just got a couple of questions.

1. How can i make the text boxes no more than 8 characters long

2. When someone enters a data on the text boxes how can i get them seprated on the results.

like someone puts their first name and their last name on a text box, how can i get them to show up in different categories in a list box.

please help :D
 
1. use the MaxLength property, change it to an 8
2. use the .split(" ") meathod (assuming theres a single space between the first and last names)
 
Back
Top