(If you can not understand something , just read the notes )
First run VB and select "standard EXE" . A form will be created . Now we will work with this form . Now see the "Properties" window , select a "name" and a "back-color" for the form . "BorderStyle" controls the way the form resizes and its maximize , minimize and close buttons , Change it to "1-Fixed Single" . Now your form has just the close button on its top .Option "3-Fixed Dialog" is like option 1 but i option 3 , the form has no tab in the TaskBar while running . You can run the project by the Play button in the middle of the top toolbar or by pressing F5 . Run your project now : You can control the form from taskbar but if you select option 3 you can't .Try it .
"Caption" is like "name" but we use name in the program and caption is the text displayed when program is running and the user see the caption . Caption of the form is the text displayed on its tiltlebar . If you turn the "Conttrol box" to false then the form will have no control button (maximize , minimize and close button) on it .
If "Enabled" is false , the user can not work or control the form . "Fill color" is the forground color of the form eg. the color of the font when you use "print" command .
"Font" is the default font for other control which you add to the form . It means that when you add a control like a command button to the form , its caption will be displayed in this font .
Other important properties of the form are parameters of its size and place on screen . "Width" and "Height" are its width and height . "Top" is the distance between its top part and the top of the screen and "Left" is the distance between its left part and left part of the screen . These sizes are in "Twip" . If you want to change it to pixel or ... change the scale mode . You can Change these parameters by entering numbers or by changing them manually (see below picture) . Also you can change the startup position in the "Form layout" window or select an option in "StartupPosition" in "properties" window .
to be continued ...