1 / 34

Working with Intrinsic Controls and ActiveX Controls

Working with Intrinsic Controls and ActiveX Controls. Project 2. Introduction. Intrinsic Controls – the basic set of twenty controls in the toolbox. Are a part of the .exe VB program. ActiveX Controls – exists as separate files. Files have a .ocx extension. Introduction cont……….

dana-holman
Download Presentation

Working with Intrinsic Controls and ActiveX Controls

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Working with Intrinsic Controls and ActiveX Controls Project 2

  2. Introduction • Intrinsic Controls – the basic set of twenty controls in the toolbox. • Are a part of the .exe VB program. • ActiveX Controls – exists as separate files. • Files have a .ocx extension.

  3. Introduction cont………. • Many routines and procedures are built into applications that are not designed for the end user.

  4. Creating the Interface • Consists of sizing and locating the GUI and then adding the controls necessary for the user to use the form.

  5. Form Size and Position • Height and Width property values can change the size of the form. • Top and Left property values change the position of the form.

  6. AutoSize and BackStyle Properties • AutoSize – when set to True, the size of the control (label) will depend on the size of the caption property. • BackStyle – when set to Transparent, the color of the control below the label displays within the label’s border.

  7. Copying Controls • You can copy and paste controls. • A message will ask you if you want to create a control array. • Click “NO” if you just want a copy of the control. • We will work with control arrays later on.

  8. ListBox and ComboBox Controls • Used to present the end user with choices from a list. • When a list is longer than the list box, scroll bars automatically appear.

  9. ListBox and ComboBox

  10. Shape Control • Used to add shapes to the form • Square • Circle • Rectangle

  11. CheckBox Control • Used to turn controls on or off. • Indicate the selection of deselection of check boxes on a form.

  12. Frame Control • Used as a container for other controls, such as option buttons. • A frame can only have a rectangle shape. • A frame can have a caption. • When option buttons are added to the frame, only one can be selected at a time.

  13. Option Button Control • Presents a set of choices. • Placed in groups, such as on a frame control. • Must be drawn directly on the frame to be a part of the group.

  14. CommonDialog Control • Allows you to add the Open, Save As, Color, Print and Font commands. • Not visible during run time. • Activate the CommonDialog control by using one of the Show methods.

  15. Aligning Controls • Used to align controls in the form. • Vertically • Horizontally • Format menu

  16. Naming Controls • The name of a control is a property of a control. • Helps the programmer know what control he/she is working with when writing code. • Table 2-2

  17. Writing Code Project 2

  18. Changing Control Properties • Basic Format • controlname.property = value

  19. Variables • Temporary storage locations. • Each variable has a • Name • Data Type – determines the type of data the variable can hold.

  20. Variables cont……….. • Must follow these rules when choosing names for variables. • The name must begin with a letter. • The name cannot be more than 255 characters. • Then name cannot contain punctuation or blank spaces.

  21. Declaring Variables • You must declare, or create, a variable. • This will be done by Explicitly Declaring them. • Dim variablename As datatype • There can be a wide variety of different data types • Byte, date, string, integer, variant, double

  22. Assigning values to a variable • Variables can hold one value at a time. • We use assignment statements to give variables a value. • dblRate = 10.5 • strName = “Mr. Preheim”

  23. Variable Scope • Refers to whether or not the variable is visible to other sub routines. • Variables declared in a sub routine are not visible by other sub routines in the program. • Variables declared in the General Declarations are visible to all subroutines for that form.

  24. Arithmetic Expressions • Code that contains statements to perform mathematical operations. • Order of Precedence – the order in which the calculation will take place. • Can change the order of precedence by using parentheses. • Refer to table 2-7

  25. Arithmetic Expression Examples • dblPayRate = dblHours * curWage • dblTotal = intNumber1 + 100

  26. If..Then…Else Statements • Used to execute one statement or another based on whether a condition is True or False. • A condition is made up of a 2 expressions and a comparison operator. • =, <, >, <=, >=, <>

  27. Key words in an If…Then…Else Statement • If • Then • Else • End If

  28. If Statement Structure • If condition ThenBlock of code if the condition is TrueElseBlock of code if the condition is FalseEnd If

  29. If Structure Flowchart Example Is Matinee Check Box Checked F T Price = 5 Price = 3.5

  30. If Structure VB Code Example • If chkMatinne.Value = 1 Then Price = 3.5Else Price = 5End IF

  31. Constants • Similar to a variable in the idea that it uses space in memory. • However, the value of a constant does not change. • Defined by using the Const statement in the General Declarations.

  32. Concatenation • The process of adding strings together is called concatenation. • Performed by using the ampersand (&) character. Example: textRecord.Text = num & “ ” & cboShow.Text & vbNewLine & txtRecord.Text

  33. Items in a ComboBox • When items are added to a ComboBox, they are assigned an Index number. • The first item is assigned an index of 0. • When an item is selected from the list during runtime, that index number is assigned to the ListIndex property.

  34. Writing Code for the Common Dialog Control • To display the Color dialog box, you will apply the ShowColor method.

More Related