Microsoft® Small Basic Clock, Desktop, and Dictionary Objects Estimated time to complete this lesson: 1 hour.

Slides:



Advertisements
Similar presentations
Microsoft® Small Basic
Advertisements

INTRODUCTORY MICROSOFT ACCESS Lesson 1 – Access Basics
Microsoft® Small Basic Graduating to the Microsoft Visual Basic® development environment Estimated time to complete this lesson: 1 hour.
Microsoft® Small Basic
Insert an image Screen Shots How to insert an image.
Microsoft® Small Basic
Microsoft® Small Basic Statements, Properties, and Operations Estimated time to complete this lesson: 1 hour.
Microsoft® Small Basic
Microsoft® Small Basic
Using Microsoft Office Excel 2007
Microsoft® Small Basic
XP Tutorial 4 New Perspectives on Microsoft Windows XP 1 Microsoft Windows XP Personalizing Your Windows Environment Tutorial 4.
Operating Systems Concepts 1/e Ruth Watson Chapter 5 Chapter 5 Customizing Your Environment Ruth Watson.
Operating Systems First Program to load. Controls Hardware And software. Enable User to operate PC( Personal Computer) –Examples: DOS: Disk Operating.
Pasewark & Pasewark Microsoft Office XP: Introductory Course 1 INTRODUCTORY MICROSOFT ACCESS Lesson 4 – Finding and Ordering Data.
Microsoft® Small Basic Clock, Desktop, and Dictionary Objects Estimated time to complete this lesson: 1 hour.
Access Lesson 2 Creating a Database
Things Your Mother Never Taught You (that every 6-year old already knows)
MCT260-Operating Systems I Operating Systems I Customizing the User Interface.
Microsoft® Small Basic The Math Object Estimated time to complete this lesson: 1 hour.
Microsoft® Small Basic Sharing Code Estimated time to complete this lesson: 1 hour.
Microsoft® Small Basic The Controls Object Estimated time to complete this lesson: 1 hour.
JavaScript Events and Event Handlers 1 An event is an action that occurs within a Web browser or Web document. An event handler is a statement that tells.
Microsoft® Small Basic
Pasewark & Pasewark Microsoft Office 2003: Introductory 1 INTRODUCTORY MICROSOFT ACCESS Lesson 1 – Access Basics.
Web Design-Lecture2-QN-2003 Web Design Microsoft FrontPage®
Innovative Training Works Digital Literacy Computing Fundamentals Using an Operating System (Microsoft® Windows XP)
CMPF124 Personal Productivity with Information Technology Chapter 1 – Part 4 Introduction To Windows Operating Systems Basic Windows Admin Introduction.
Power Point Presentations A Step by Step Guide. Contents The very first step Choosing slide layout Adding text boxes Custom Animation Changing slide design.
Microsoft® Small Basic
1 After completing this lesson, you will be able to: Start Word. Explore the Word window. Enter text in a document. Save a document. Close a document and.
Screen ViewModule Title: Notes: Branching Instructions: Audio Script: Page: Use Microsoft Outlook 1 Create a Distribution List A distribution list is a.
Computing Fundamentals Module Lesson 3 — Changing Settings and Customizing the Desktop Computer Literacy BASICS.
Instructor’s Guide to Teaching SolidWorks Software Lesson 1 School’s Name Teacher’s Name Date.
Key Applications Module Lesson 21 — Access Essentials
Project 6 Advanced File and Web Searching. 2 CHAPTER OBJECTIVES  Begin a new file or folder search, save a search, and find a file using a saved search.
Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
Unit 5, Lesson 1 Working with Databases. Objectives Identify the parts of the Access screen. Identify the parts of the Access screen. Understand the purpose.
Microsoft® Small Basic Collision Detection Estimated time to complete this lesson: 1 hour.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
CMPF124: Basics Skills for Knowledge Workers Manipulating Windows GUI.
Chapter Eleven The X Window System. 2 Lesson A Starting and Navigating an X Window System.
Intermacs Form Download Excel Tutorial Pivot Tables, Graphic Tools, Macros By: Devin Koehl.
Windows 7 - The User Interface. Applying Themes : Themes Styles are called as Themes and Windows 7 Themes or Styles are a formal combination of desktop.
Intermacs Form Download Excel Tutorial Pivot Tables, Graphic Tools, Macros By: Devin Koehl.
1 After completing this lesson, you will be able to: Get around the Internet with your browser. Connect to the Internet. Print Web pages. Save Web pages.
AL A. LAURIO Teacher Microsoft Windows Vista. DESKTOP is the main screen area that you see after you turn on your computer and log on to Windows. it serves.
Microsoft® Small Basic Exploring Shapes Estimated time to complete this lesson: 1 hour.
Designing a Relational Database 13.4 Page A database should be created based on a design  Three steps Determine what information should be stored.
Starter (June 2011) Explain two methods by which someone could find a website on the internet. [4]
Microsoft® Small Basic Flickr, ImageList, and Network Objects Estimated time to complete this lesson: 1 hour.
Parts of the Clock Click on the minute hand. Click on the clock’s face.
Microsoft® Small Basic Conditions and Loops Estimated time to complete this lesson: 2 hours.
Pasewark & Pasewark 1 Office Lesson 1 Microsoft Office 2007 Basics and the Internet Microsoft Office 2007: Introductory.
TELEPORT PRO Website to Hard Drive Completely download a website, enabling you to “Browse Offline” at much greater speeds than if you were to browse the.
School’s Name Teacher’s Name Date
Computer Literacy BASICS
Choose a Count down Time by Clicking a Button Below.
Chapter 2 Looking at Windows
Instructor’s Guide to Teaching SolidWorks Software Lesson 1
Instructor Name Instructor Title Library Name
The Desktop RECYCLE BIN
Microsoft® Small Basic
Setting the Permissions
Microsoft® Small Basic
Microsoft® Small Basic
Access Lesson 2 Creating a Database
Microsoft® Small Basic
Instructor’s Guide to Teaching SolidWorks Software Lesson 1
Presentation transcript:

Microsoft® Small Basic Clock, Desktop, and Dictionary Objects Estimated time to complete this lesson: 1 hour

Clock, Desktop, and Dictionary Objects In this lesson, you will learn about: Using different properties of the Clock object. Using different properties and operations of the Desktop object. Using different operations of the Dictionary object.

The Clock Object Small Basic provides you with a Clock object to include this logic in your programs. You can use the Clock object to write programs that use the system clock. The Clock object has different properties, such as Date, Hour, Time, and Year. While programming, you may encounter situations where you need to calculate time or perform certain actions based on the date and time. Let’s explore some properties of the Clock object…

Date, Weekday, and Time You can use the Date property, the WeekDay property, and the Time property of the Clock object to get the current system date, day, and time respectively. Let’s look at an example that displays the current system date, day of the week, and time on the graphics window…

The Year Property You can use the Year property of the Clock object to get the current system year. Let’s take an example that uses the Year property of the Clock object to calculate age… Click the button on the toolbar.

You can use the Month and the Day property of the Clock object to get the current month and current day, respectively. Month and Day How about writing a program that greets you on your birthday? In this example, the output window displays birthday wishes only if the month and the day entered by the user matches with the current system month and day.

You can get the current hour, minute, and second of the day with the help of the Hour, Minute, and Second properties of the Clock object. Hour, Minute, and Second Let’s combine the Hour, the Minute, and the Second properties of the Clock object to display a digital clock on the graphics window…

The Desktop Object Small Basic provides another object called Desktop. You can use this object to set a desktop wallpaper of your choice. In addition, you can also retrieve the size of your current desktop and use the information to specify the location of objects on the screen. Let’s explore the SetWallPaper operation of the Desktop object. You can choose your wallpaper from any local file or network file, or from an Internet URL.

The Desktop Object You can use the Height and Width properties of the Desktop object to get the screen height and width, respectively, of the primary desktop. Let’s apply these properties on the graphics window.

The Dictionary Object Dictionary is a useful resource that you can include as part of your Small Basic program. Small Basic provides a Dictionary object that you can use to retrieve the meaning of a specified word from the online Dictionary service. The Dictionary object has two operations— GetDefinition and GetDefinitionInFrench

The Dictionary Object You can use the GetDefinition operation to obtain the meaning of a word, in English. For the definition in French, use the GetDefinitionInFrench operation. For example, let’s use the GetDefinition operation to find out the meaning of the word, “Magnanimous.”

Let’s Summarize… Congratulations! Now you know how to: Use different properties of the Clock object. Use different properties and operations of the Desktop object. Use different operations of the Dictionary object. Use different properties of the Clock object. Use different properties and operations of the Desktop object. Use different operations of the Dictionary object.

It’s Time to Apply Your Learning… Create a program to set an alarm that plays a bell ring sound and changes the wallpaper of your desktop.