note:
every example is on code ( just right click on form, and choose view code )
properties:
a)Name: form1, it is for access name.
example:
private sub form_load()
form1.caption = "hi" 'it's make form1 title to "hi" without ".
end sub
so, if we change Name: form1 to Name: newFrm, it would be like this:
private sub form_load()
newFrm.caption = "hi"
end sub
b)Caption: form1 title.
example:
without ".
c)witdh and height, it used for change size of the form and others.
The properties it not only for forms, but others, like command button, label, etc.
end of Lesson 1.
No comments:
Post a Comment