home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2000 October / tst.iso / tutorials / VTC / vtcmovies / VB6 / VB6outline < prev    next >
Encoding:
Text File  |  2000-02-06  |  2.6 KB  |  73 lines

  1. 01 Introduction and Getting Started
  2. 0101 Introduction & Visual Basic Overview
  3. 0102 The VB 6 Environment (window orientation)
  4. 0103 The VB 6 Environment (placing controls on form)
  5. 0104 The First Project ("Hello World")
  6. 0105 Writing Code
  7. 0106 Modifications to "Hello World"
  8. 0107 Saving and Running the Project
  9. 0108 Common errors, Debugging
  10. 0109 Code Window Views
  11. 0110 Naming Rules and conventions for controls
  12. 0111 Form Properties (startup position, window state, Visible)
  13.  
  14. 02 More Controls and Code
  15. 0201 Text Box vs. Label
  16. 0202 Frames with Options Buttons & Check Boxes
  17. 0203 Images (using graphical images on the form)
  18. 0204 Multiple Control manipulation
  19. 0205 User-Friendly Features (Access keys, Tab Index)
  20. 0206 User-Friendly Features (default, cancel properties)
  21. 0207 Tab Stop, Focus, Max Length, Tool Tips
  22. 0208 Code for user convenience (clearing text boxes, labels, Set Focus)
  23. 0209 VB color Constants, Font object, With-End With Coding
  24. 0210 Concatenation
  25. 0211 Demo of "Name & Address Maker"-User Perspective
  26. 0212 Demo of "Name & Address Maker"-Programmer Perspective
  27.  
  28. 03 Variables and Code for Calculations
  29. 0301 What is variable?
  30. 0302 Variables vs. Constants
  31. 0303 Data Types supported by VB
  32. 0304 Naming rules and conventions for Variables: Option Explicit
  33. 0305 The VAL Function and Calculations
  34. 0306 Putting it together - "Book Sales" Program (part 1)
  35. 0307 Formatting for output
  36. 0308 Accumulating & Module-Level Variables
  37. 0309 "Book Sales" Program (Wrap up)
  38. 0310 Another Demo - "Shipping Charges"
  39.  
  40. 04 Coding Decision (IF-Else)
  41. 0401 Project Overview - "Coffee Sales"
  42. 0402 Variables; IF - THEN - ELSE statements
  43. 0403 Using IF Statements with the MsgBox Function
  44. 0404 Clear button with message boxes
  45. 0405 The CALL Statement
  46. 0406 Other options with message boxes
  47. 0407 Another demonstration program - More data validation
  48. 0408 UCase/Lease functions
  49.  
  50. 05 Debugging, Immediate Window, Stand-alone Projects
  51. 0501 Using Breakpoints; Stepping through code
  52. 0502 Using the Immediate Window
  53. 0503 Common Errors and Things to Avoid
  54. 0504 Using the Object Browser
  55. 0505 The Form Icon; Creating an Executable Project (.EXE file)
  56.  
  57. 06 Other Event Procedures
  58. 0601 MsgBox vs. the Input Box
  59. 0602 Click and Change Events
  60. 0603 GotFocus/LostFocus Events
  61. 0604 KeyPress and Mouse Events
  62. 0605 Form Load and Form Activate Events
  63. 0606 More on LostFocus, SetFocus and the Visible Property
  64. 0607 Miscellaneous Form Properties
  65. 0608 Validate Event
  66.  
  67. 07 Creating Menus
  68. 0701 The Menu Editor
  69. 0702 Creating Submenus and Flyout Menus
  70. 0703 More menu options
  71. 0704 Adding and About Form with a Menu item
  72. 0705 Adding a menu to an existing Project
  73. 0706 Wrapping up the menu demo (enabled property)