Just Basic Lessons 15 - 16 Mr. Kalmes.

Slides:



Advertisements
Similar presentations
An Introduction to Visual Basic Terms & Concepts.
Advertisements

Strategic Teaching PD October 27 CE Hanna. Outcome You will recognize and be able to implement elements of a strategic lesson.
Viewing an Archived Session of Wimba Classroom Instructions for Students.
 An operating system (OS) is a set of computer programs that allow the user to perform basic tasks like copying, moving, saving and printing files. 
Chapter 6 Graphical User Interface (GUI) and Object-Oriented Design (OOD)
Flowchart Start Input weight and height
Text Box controls are used when users are required to type some input (during program execution), or output is displayed on the form (known as the user-
Visual Basic Project 1 IDS 306 Spring 1999 V. Murphy.
Introduction to Visual Basic Chulantha Kulasekere.
Graphical User Interfaces A Quick Outlook. Interface Many methods to create and “interface” with the user 2 most common interface methods: – Console –
Lesson 6. Links in HTML Computer Science Welcome to Virtual University in Pakistanhttp://
ASPIRE TESTING Universal Technology Terminology. Answer Option One of the possible answer choices to a question.
An Introduction to Visual Basic
GTSTRUDL 27 This latest version of GTSTRUDL includes numerous new features, feature enhancements, error corrections, and prerelease features. GTSTRUDL.
Mr C Johnston ICT Teacher BTEC IT Unit 06 - Lesson 01 Introduction to Computer Programming.
Mr C Johnston ICT Teacher
Graphical User Interfaces Tonga Institute of Higher Education.
Introduction to Windows Programming
1 Computer Science of Graphics and Games MONT 105S, Spring 2009 Session 20 Graphical User Interface (GUI)
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
Making Python Pretty!. How to Use This Presentation… Download a copy of this presentation to your ‘Computing’ folder. Follow the code examples, and put.
Sekvence za krmiljenje tiska. Primer izpisa Understanding Operator Precedence.
Applets Yong Choi School of Business CSU, Bakersfield.
Graphical User Interface You will be used to using programs that have a graphical user interface (GUI). So far you have been writing programs that have.
Creating visual interfaces in python
GCSE ICT By the end of this session, you will be able to:  Understand concept of a Windows operating system and have a basic understanding of GUI.
INFORMATION SYSTEM – SOFTWARE TOPIC: GRAPHICAL USER INTERFACE.
Digital Literacy Lesson 2. Hardware Hardware: the physical components of a computer. Includes input devices, processing devices, storage devices, and.
Identify Windows Application Types Windows Development Fundamentals LESSON 1.1.
Visual Basic A Quick Tutorial VB Review for ACS 367.
CS 115 OBJECT ORIENTED PROGRAMMING I LECTURE 6_1 GEORGE KOUTSOGIANNAKIS Copyright: FALL 2015 Illinois Institute of Technology- George Koutsogiannakis 1.
Boxes. SOUNDBOARD Objective: Tap the boxes to play sounds! Demo:
Mr L Challenor ICT Teacher BTEC IT Unit 02 - Lesson 06 Computer Software.
Computer Graphics Lecture 1 Introduction to Computer Graphics
User Input ICS2O.
Read ALL Test Directions Before Beginning the Slide Test
JUST BASIC Lessons 6 – 9 Mr. Kalmes.
An Introduction to Visual Basic
Chapter 14 JavaFX Basics Dr. Clincy - Lecture.
Python Lesson 6 Mr. Kalmes.
Screen Title Screen text Page x of y Graphic: description
Python Lessons 13 & 14 Mr. Kalmes.
BBC Microbit.
Just Basic lesson 16 Mr. Kalmes.
Java Lesson 36 Mr. Kalmes.
Python Lesson 21 Mr. Kalmes.
Section 8.3 Day 1 Multiplying Polynomials
Java Lessons 17 – 20 Mr. Kalmes.
Java Lessons 28 – 32 Mr. Kalmes.
Java Lesson 35 Mr. Kalmes.
Just Basic Lessons Mr. Kalmes.
Java Lessons 5 – 8 Mr. Kalmes.
Screen Title Screen text Page x of y Graphic: description
Just Basic Lesson 17 Part 1 Mr. Kalmes.
Just Basic Lessons 14 Mr. Kalmes.
Python Lesson’S 1 & 2 Mr. Kalmes.
Just Basic Lesson 15 Mr. Kalmes.
Just Basic Lesson 12 Mr. Kalmes.
Just Basic Lessons 9 Mr. Kalmes.
Just Basic Lesson 20 Mr. Kalmes.
Just Basic Lesson 19 Mr. Kalmes.
Python Lessons 7 & 8 Mr. Kalmes.
Chapter 1 Introducing Small Basic
Java Lessons Mr. Kalmes.
JustBasic 16 Mr. Husch.
Just Basic Lesson 13 Mr. Kalmes.
Just Basic Lessons Mr. Kalmes.
Java Lessons 9 – 12 Mr. Kalmes.
BASIC 17 Mr. Husch.
Just Basic Lessons 8 Mr. Kalmes.
Presentation transcript:

Just Basic Lessons 15 - 16 Mr. Kalmes

Learning Targets I will be able to explain what a graphical user interface I will be able to create windows in Just Basic

Lesson 15 & 16 Graphical User Interface (GUI): it is a part of the computer that allows for creation of windows and other images on the computer

Lesson 15 & 16 Window Commands: WindowWidth = changes the size of the window width WindowHeight = changes the size of the window height UpperLeftX = changes where on the screen the window will open UpperLeftY = changes where on the screen the window will open

Lesson 15 & 16 Window Commands: statictext #handle.name, x-pos, y-pos, length, height textbox #handle.name, x-pos, y-pos, length, height button #handle.name, “button text”, [section], UL, x-pos, y-pos, length, height wait & notice print #handle.name, "!contents? string$"

Lesson 15 & 16 Window Commands: trap close: properly closes a window

Lesson 15 & 16 This is an example of a program

Lesson 15 & 16 Challenge Activity: You need to create an window with static text, text boxes, and 3 buttons. The static text must be instructions on how to use the window. One button must open a notice with what was written in the first text box. The second button must open a second window with some static text. The third button will be a close button that closes the window and ends the program. Not a trapclose!

Exit Slip Turn in the following programs: Challenge Activity Answer the following question(s): What type of programs can you make with the GUI