optico Posted June 1, 2007 Share Posted June 1, 2007 I need somme help to a program. I am working in Delphi to a project and there i need to insert somme text, but i don't know how .I need an exemple for the picture that i had atached . Link to comment Share on other sites More sharing options...
FAT64 Posted June 1, 2007 Share Posted June 1, 2007 What type of object are the two large white boxes in the top left? Link to comment Share on other sites More sharing options...
optico Posted June 2, 2007 Author Share Posted June 2, 2007 they are tlistbox Link to comment Share on other sites More sharing options...
FAT64 Posted June 2, 2007 Share Posted June 2, 2007 I'm assuming then that the user types in their first name and last name in the TextBoxes and then click on the Button to copy them to the appropriate ListBoxes?If so, double click on the button to create the click event and type something like the following...ListBox1.Items.Add (TextBox1.Text);ListBox2.Items.Add (TextBox2.Text); Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now