0% found this document useful (0 votes)
34 views

Control Properties

This document describes the properties of controls on a form, including labels with captions, a text box, and a command button. The command button has a caption of "Print" and its click event handler concatenates the text from two text boxes and assigns it to the caption of a third label. An item is also added to a list.

Uploaded by

midhungbabu88
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views

Control Properties

This document describes the properties of controls on a form, including labels with captions, a text box, and a command button. The command button has a caption of "Print" and its click event handler concatenates the text from two text boxes and assigns it to the caption of a third label. An item is also added to a list.

Uploaded by

midhungbabu88
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Control Properties

Label1 Caption
Enter Ur Name
Label2 Delete Caption
Textbox1 Delete text
Command button
Caption
Print
Private sub command1_click
Label3.caption=text1.text & text2.text
End sub

List1.additem=”Das”

You might also like