Size: px
Start display at page:

Download ""

Transcription

1

2 108 II 11-1 Timer Windows Visual Basic Animation Animation

3 Animation Animation RLE AVI AVI 11-2 Visual Basic Animation / Microsoft Windows Common Controls Animation 11-2 Animation AVI RLE AVI Audio Video Interleave Windows 30 30fps RLE Run Length Encoding RLE

4 110 II Animation 11-1 Animation 11-1 Animation Open Play AVI AVI 3 1 repeat 2 start 3 3 Stop Close AVI AVI AVI Visual Basic "\Common\Graphics\AVIs\" AVI Visual Basic AVI filecopy.avi filedel.avi filedelr.avi filemove.avi filenuke.avi findcomp.avi findfile.avi search.avi

5 Animation "filecopy. avi" Animation Private Sub Form_Load( ) filecopy.avi Animation1.Open App.Path + "\filecopy.avi" Private Sub Command1_Click( ) Animation1.Play Private Sub Command2_Click( ) Animation1.Stop App.Path Private Sub Form_Unload(Cancel As Integer) Animation1.Close 11-4 "Ch11-1a.vbp" Animation avi" "Sp11-a.frm" "Sp11-a.vbp" "filenuke.

6 112 II Timer PaintPicture.PaintPicture Pic, X1, Y1 [, Width1 [, Height1 [, X2 [, Y2 [, Width2 [, Height2]]]]]] 1. Pic Picture Form PictureBox Image 2. X1, Y1 3. Width1, Height1 Width1 Height1 4. X2, Y2 5. Width2, Height2

7 Image (450, 100) (2500, 725) Image "Ch11-1b.vbp" Timer PaintPicture PaintPicture Image1, 2500, 725, 2000, 1800, 450, 100, 1250, PaintPicture PaintPicture Private Sub Timer1_Timer( ) Dim x As Integer, y As Integer, i As Integer i = Int(Rnd * 3) x = Rnd * ScaleWidth x y = Rnd * ScaleHeight y PaintPicture Image1(i), x, y

8 114 II 11-7 Cls "Ch11-1c.vbp" b.frm" 1 Image 3 Command PaintPicture "Sp11-b.vbp" "Sp11- (1) Image "face.gif" (2) 3 Caption eyes nose mouth (3) eyes

9 PaintPicture Width1 Height1 Form1 2500, PaintPicture (2500,725) Image PaintPicture 3000 "Ch11-1d.vbp" Private Sub Command1_Click( ) PaintPicture Image1, 2500, 725, 3000, 3200 Image Image 1. Image Stretch True 2. Image Width Height

10 116 II Image1 Image Image1 Image Image1.Height = 3200 Image1.Width = 3000 "Ch11-1e.vbp" Private Sub Command1_Click( ) Image1.Stretch = True Image1 Image1.Width = 3000 Image1 Image1.Height = 3200 Image1 PaintPicture Image Image Width Height 1. "Ex11-c.vbp" Timer PaintPicture

11 "Ex11-c.vbp" Image (1) Image Stretch Width Height (2) "Sp11-c.frm" "Sp11-c.vbp" 3. "Ex11-d.vbp" (1) 4 x y Image1 zoomx zoomy (2) PaintPicture Image1 (3) "Sp11-d.frm" "Sp11-d.vbp" 10% 10%

12 118 II PaintPicture PaintPicture Image bmp 1.bmp 2.bmp 3.bmp PaintPicture Dim i As Integer Image Dim j As Integer Private Sub Timer1_Timer( ) 200Twips PaintPicture Image1(i).Picture, j * 200, 300 i = (i + 1) Mod 4 0,1,2,3 j = j + 1 If j * 200 > ScaleWidth Then Exit Sub "Ch11-1f.vbp"

13 Image Top Left Image1 Left Image Left Dim i As Integer Dim j As Integer Private Sub Timer1_Timer( ) 0.bmp, 1.bmp, 2.bmp, 3.bmp Image1.Picture = LoadPicture(App.Path & "\" & i & ".bmp") Image1.Left = j * Twips i = (i + 1) Mod 4 0, 1, 2, 3 j = j + 1 If j * 200 > ScaleWidth Then Exit Sub "Ch11-1g.vbp" Image Move (x, y) Image.Move x, y Image1 Move 11-16

14 120 II Image Move Dim i As Integer Dim j As Integer Private Sub Timer1_Timer( ) 0.bmp,1.bmp,2.bmp,3.bmp Image1.Picture = LoadPicture(App.path & "\" & i & ".bmp") 200Twips Image1.Move j * 200, 300 i = (i + 1) Mod 4 0, 1, 2, 3 If j * 200 > ScaleWidth Then Exit Sub j = j Image Move "Ch11-1h.vbp" Visual Basic PaintPicture Image Top Top Left Image Left Image Move Move Image vbp" "Ch11-1h.

15 Step

16 122 II Form1 Caption Command1 Caption Image1 Picture 0.gif Image1 Stretch True Image2 Picture 0.gif Image2 Stretch True Label1 Caption Timer1 Interval 500 Timer1 Enabled False Step2 1. Timer Twips Twips 3. If-ElseIf Step3 Timer1_Timer Form_Click Dim start As Integer start Dim win As Integer win Private Sub Command1_Click( ) Timer1.Enabled = True start = 1 start = 1

17 Private Sub Form_Click( ) Static i As Integer i If start = 1 Then i = (i + 1) Mod 3 0, 1, 2 Image2.Picture = LoadPicture(App.Path + "\ " & i & ".gif") Image2.Left = Image2.Left If win <> 1 And (Image2.Left + Image2.Width >= 6240) Then Image2.Left = Image2.Width MsgBox " ",, " " win = 2 win 2 ElseIf win = 1 Then Exit Sub End If End If Private Sub Timer1_Timer( ) Static j As Integer i j = (j + 1) Mod 3 0, 1, 2 Image1.Picture = LoadPicture(App.Path + "\ " & j & ".gif") Image1.Left = Image1.Left If win <> 2 And (Image1.Left + Image1.Width >= 6240) Then Image1.Left = Image1.Width MsgBox " ",, " " Timer1.Enabled = False win = 1 win 1 ElseIf win = 2 Then Timer1.Enabled = False End If

18 124 II 10~20 30~40 Timer1 start 1 60~90 start 1 i Twips ~130 win 1 X 6240 (1) (2) (3) win 2 140~170 win 1 190~ j 500 Twips 220~260 win 2 X 6240 (1) (2) (3) Timer (4) win 1 270~290 win 2 Timer 5 (1) 1 Timer2 Label2 Timer2_Timer 1 i (2) If-Then 5

19 ( )1. Visual Basic AVI (A) Animation (B)Form (C)Image (D)PictureBox ( )2. Visual Basic (A)Cls (B)Print (C)PaintPicture (D)Point ( )3. (A)PaintPicture Image1, 200, 200 (B)PaintPicture Image1, 2500, 200 (C)PaintPicture Image1, 200, 200, 2500, 200 (D)PaintPicture Image1, 2500, 200, 200, 200 (200, 200) (2500, 200) Image ( )4. Image (D) Stretch Height Width Picture (A) (B) (C) ( )5. Image (A)Height Width (B)Picture Stretch (C)Enabled Visible (D)Left Top

20 126 II 1. "Ex11-e.vbp" (1) Timer1_Timer (2) Select Case (3) "Sp11-e.frm" "Sp11-e.vbp" 11-2 Visual Basic Visual Basic

21 Animation / Microsoft Multimedia Control

22 128 II Prev 2 Next 3 Play 4 Pause 5 Back 6 Step 7 Record 8 Stop 9 Eject Visible False RecordVisible False RecordVisible = False CD MID WAV AVI VCD VCR MPEG

23 Beep Beep Beep Beep Windows Beep ( ) Beep 11-23( ) Private Sub Command1_Click( ) Beep

24 130 II DeviceType DeviceType.DeviceType = " " 11-6 DeviceType 11-6 DeviceType cdaudio sequencer waveaudio avivideo videodisc vcr mpegvideo CD Mid Wav Avi VCD VCR MPEG 1 1.DeviceType = "cdaudio" CD 2 2.DeviceType = "videodisc" VCD FileName FileName.FileName = " "

25 FileName = "D:\Music\water.wav" D "Music" water.wav 2.FileName = App.Path & "\forest.avi" forest.avi Command Command.Command = " " Command Open Play Stop Close Seek 5 1.Command = "Open" 1 2.Command = "Play" hwn- Display Visual Basic 0 hwndisplay hwndisplay hwnd hwnd hwndisplay hwndisplay.hwndisplay =.hwnd

26 132 II hWnDisplay = Picture1.hWnd Picture1 2.hWnDisplay = Form1.hWnd Form PictureBox AVI AVI Private Sub Form_Activate( ) 1.DeviceType = "avivideo" AVI 1.hWndDisplay = Picture1.hWnd PictureBox flog AVI 1.FileName = App.Path + "\flog.avi" 1.Command = "open" 1 Private Sub Form_Unload(Cancel As Integer) 1.Command = "stop" 1.Command = "close" AVI AVI "Ch11-2a.vbp" MPEG (1) 1 DeviceType (2) MPEG "anole.mpg"

27 Step1 TimeFormat.TimeFormat = TimeFormat 0~ A-2 Step2 Windows Media Player

28 134 II Track Tracks Position TrackPosition Length TrackLength x Step Int(1.TrackLength / 1000 / 60) Int(1.TrackLength / 1000) Mod 60 Int((1.Position - 1.TrackPosition)/ 1000 /60) Int((1.Position - 1.TrackPosition) / 1000) Mod 60 Int(1.Length / 1000 / 60) Int(1.Length / 1000) Mod 60 Step4 UpdateInterval StatusUpdate.UpdateInterval =

29 UpdateInterval UpdateInterval = UpdateInterval = CD StatusUpdate 1 CD CD Dim min As Integer Dim sec As Integer Dim allmin As Integer Dim allsec As Integer Private Sub Form_Unload(Cancel As Integer) 1.Command = "stop" 1.Command = "close" Private Sub Form_Activate( ) 1.FileName = App.Path + "\music0.mid" 1.DeviceType = "sequencer" MID 1.Command = "open" 1 1.UpdateInterval =

30 136 II Private Sub 1_StatusUpdate( ) 1.TimeFormat = 0 allmin = Int(1.TrackLength / 1000 / 60) allsec = Int((1.TrackLength) / 1000) Mod 60 min = Int((1.Position - 1.TrackPosition) _ / 1000 / 60) sec = Int((1.Position - 1.TrackPosition) _ / 1000) Mod 60 Label1.Caption = " " & allmin & " " & _ allsec & " " Label2.Caption = " " & min & " " & sec & " " CD "Ch11-2b.vbp"

31 ( )1. (A)DeviceType (B)Command (C)FileName (D)Visible ( )2. (D)Visible (A)DeviceType (B)Command (C)FileName ( )3. (A)TrackLength (B)Length (C)Position (D)Command 1. AVI (1) P (2) AVI "dragonfly.avi" (3) "Sp11-f.frm" "Sp11-f.vbp"

32 138 II ( )1. Visual Basic RLE AVI (A)Animation (B)Image (C) (D) PictureBox ( )2. Visual Basic Image Image X Y (A)Drag (B)Move (B)Top (D)Refresh ( )3. Visual Basic (A) /Project1 (B) / (C) / (D) / ( )4. Visual Basic 2 Image (A)Label (B)Timer (C) PictureBox (D)Shape ( )5. Image1 Left Top "Image1.Move 500, 600" Image X, Y (A)500, 600 (B)850, 800 (C)350, 200 (D)250, 400 ( )6. (D)Position (A)hWndDisplay (B)hWnd (C)Track ( )7. (A)UpdateInterval (B)Filter (C)FilterIndex (D)FileName ( )8. CD (A)TrackLength (B)Length (C)Track (D)Tracks

Visual Basic

Visual Basic 12-1 12-2 12-3 12-1.1 12-1.2 12-2.1 12-2.2 12-3.1 12-3.2 12-4 12-5 12-4.1 12-4.2 12-5.1 12-5.2 140 II 12-1 data file 12-1.1 record field 4 12-1 4 12 141 12-1... 12-1.2 sequential file random file binary

More information

Visual Basic Visual Basic

Visual Basic Visual Basic 9-1 9-2 9-1.1 9-1.2 9-1.3 9-2.1 9-2.2 9-2.3 9-3 Visual Basic 9-3.1 Visual Basic 9-3.2 9-4 9-4.1 9-4.2 2 II 9-1 GoTo http://noi.stinfo.net/ xbqj/xbqj_12.htm structured programming 9-1 9-1 a goto b c goto

More information

Chapter 1. Block Diagram. Text .. 1

Chapter 1. Block Diagram. Text .. 1 Chapter 1 ก Visual Basic Scilab ก ก Visual Basic Scilab ก ก (Temporary File) ก ก ก ก ก ก Visual Basic ก (Interface) ก Scilab Text File ก Visual Basic ก ก ก ก Block Diagram ก ก Visual Basic ก Scilab ก.sce

More information

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x HELP - VB TIPS Load an image to an image box from a certain folder If you use this method, won t work on N:\ To load an image to a image control Image1.Picture = LoadPicture("H:\MyVBfolder\stop.gif") Load

More information

Visual Basic 6 Lecture 7. The List Box:

Visual Basic 6 Lecture 7. The List Box: The List Box: The function of the List Box is to present a list of items where the user can click and select the items from the list or we can use the List Box control as a simple memory to save data.

More information

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II)

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II) Session 1 Start Visual Basic Use the Visual Basic programming environment Understand Essential Visual Basic menu commands and programming procedure Change Property setting Use Online Help and Exit Visual

More information

Learn Visual Basic 6.0

Learn Visual Basic 6.0 7-1 Learn Visual Basic 6.0 7. Graphics Techniques with Visual Basic Review and Preview In past classes, we've used some graphics tools: line tools, shape tools, image boxes, and picture boxes. In this

More information

(0,0) (600, 400) CS109. PictureBox and Timer Controls

(0,0) (600, 400) CS109. PictureBox and Timer Controls CS109 PictureBox and Timer Controls Let s take a little diversion and discuss how to draw some simple graphics. Graphics are not covered in the book, so you ll have to use these notes (or the built-in

More information

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara LAMPIRAN FORM 1 Private Sub Text2_KeyPress(KeyAscii As Integer) If KeyAscii = vbkeyreturn Then Set tbladministrator = New ADODB.Recordset With tbladministrator.open "SELECT * FROM Administrator WHERE userid

More information

( ) 1.,, Visual Basic,

( ) 1.,, Visual Basic, ( ) 1. Visual Basic 1 : ( 2012/2013) :. - : 4 : 12-14 10-12 2 http://www.institutzamatematika.com/index.ph p/kompjuterski_praktikum_2 3 2 / ( ) 4 90% 90% 10% 90%! 5 ? 6 "? : 7 # $? - ( 1= on 0= off ) -

More information

Programming with visual Basic:

Programming with visual Basic: Programming with visual Basic: 1-Introdution to Visual Basics 2-Forms and Control tools. 3-Project explorer, properties and events. 4-make project, save it and its applications. 5- Files projects and exercises.

More information

Customizable Progress Bar for VB6 Based on graphics in picture boxes dec 23, 2017 by Gerard Hageman

Customizable Progress Bar for VB6 Based on graphics in picture boxes dec 23, 2017 by Gerard Hageman Customizable Progress Bar for VB6 Based on graphics in picture boxes dec 23, 2017 by Gerard Hageman 3 Versions Select in demo window: version 1 version 2 version 3 version 1 version 2 version 3 Version

More information

PROGRAM 1: SIMPLE CALCULATOR

PROGRAM 1: SIMPLE CALCULATOR PROGRAM 1: SIMPLE CALCULATOR Option Explicit Dim operand1 As Double, operand2 As Double Dim op1 As Double, op2 As Double Dim operator As String Dim cleardisplay As Boolean Private Sub Cmdclear_Click()

More information

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY UNESCO-NIGERIA TECHNICAL & VOCATIONAL EDUCATION REVITALISATION PROJECT-PHASE II NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY OOBASIC/VISUAL BASIC PROGRAMMING COURSE CODE: COM 211 YEAR I SEMESTER II PRACTICAL

More information

Before Operation. Basic Operation. Operating Instructions

Before Operation. Basic Operation. Operating Instructions PF1501 14 Before Operation Basic Operation 2 3 3 6 6 7 Connect to PC 7 Operating Instructions Set-Up... 9 Selecting Which Media to View... 9 Viewing Photos... 9 Adjust Speed of Slideshow... 10 Adjust the

More information

Movie Maker How-To s

Movie Maker How-To s Movie Maker How-To s Two Views Storyboard Timeline Switch between Storyboard and Timeline view using the and icon Add Pictures, Video, Transitions, Video Effects, Titles/Credits

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Grade 10 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Duration: 3.00 Hours Part 1 Choose the appropriate answer 1) Find the correct type

More information

2-26 Learn Visual Basic 6.0

2-26 Learn Visual Basic 6.0 2-26 Learn Visual Basic 6.0 cmdcompute Click Event: Private Sub cmdcompute_click() Dim Mean As Single Dim StdDev As Single txtinput.setfocus Make sure there are at least two values If NumValues < 2 Then

More information

5.) In which direction will the statement picplayer.left -= 5 animate picplayer? A. to the right B. to the left C. up the screen D.

5.) In which direction will the statement picplayer.left -= 5 animate picplayer? A. to the right B. to the left C. up the screen D. Visual Basic Practic Final Exam Name: Period: Choose the best answer. 1.) Which concept has to do with strings such as "Mr." and "Minich"? A. Concatenation B. Boolean logic C. Collision Detection D. Boundary

More information

Inserting multimedia objects in Dreamweaver

Inserting multimedia objects in Dreamweaver Inserting multimedia objects in Dreamweaver To insert a multimedia object in a page, do one of the following: Place the insertion point in the Document window where you want to insert the object, then

More information

3.01C Multimedia Elements and Guidelines Explore multimedia systems, elements and presentations.

3.01C Multimedia Elements and Guidelines Explore multimedia systems, elements and presentations. 3.01C Multimedia Elements and Guidelines 3.01 Explore multimedia systems, elements and presentations. Multimedia Fair Use Guidelines Guidelines for using copyrighted multimedia elements include: Text Motion

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Grade 11A & C Duration: 3.00 Hours Part 1 Choose the most appropriate answer. 1) Find the

More information

1. Summarize. This tool is used for transforming media files into the AMV/AVI format which can be played on the Media Player.

1. Summarize. This tool is used for transforming media files into the AMV/AVI format which can be played on the Media Player. Video Convert of G188 Instruction Manual 1. Summarize This tool is used for transforming media files into the AMV/AVI format which can be played on the Media Player. 1.1 Following video types can be converted:

More information

2Practicals Visual Basic 6.0

2Practicals Visual Basic 6.0 2Practicals Visual Basic 6.0 Practical 1: 1. Navigation of Visual Basic Integrated Development Environment The Visual Basic IDE is made up of a number of components Menu Bar Tool Bar Project Explorer Properties

More information

The Control Properties

The Control Properties The Control Properties Figure Before writing an event procedure for the control to response to a user's input, you have to set certain properties for the control to determine its appearance and how it

More information

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code Your comments and suggestions on the operation of this software are welcome. Please address them to: ICONICS 100 Foxborough Blvd. Foxborough, MA 02035 Tel: 508-543-8600 Fax: 508-543-1503 E-mail: support@iconics.com

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

Get QuickTime Pro. QuickTime 3 Pro: MoviePlayer for Mac OS. Overview. Find Out More

Get QuickTime Pro. QuickTime 3 Pro: MoviePlayer for Mac OS. Overview. Find Out More QuickTime 3 Pro: MoviePlayer for Mac OS Overview This page provides an index to the Macintosh MoviePlayer 3 Primer. The documents are geared for the novice user as well as anyone who wants to learn more

More information

User s Manual USB 2.0 TV-BOX

User s Manual USB 2.0 TV-BOX User s Manual USB 2.0 TV-BOX Table of Contents Safety Instructions. 1 Introduction. 1 Features. 1 System Requirements. 2 Package Contents. 2 Products of TV Box. 3 Specification. 4 Hardware Installation

More information

Overview 1. Foreword 2. Warnings

Overview 1. Foreword 2. Warnings Overview 1. Foreword Thank you for choosing our product. Please read this manual carefully before using the product. Specifications and software updates may be subject to change without notice. Some pictures

More information

WebCam-Control-Center

WebCam-Control-Center WebCam-Control-Center CrazyPixels 2012 (www.crazypixels.com) Manual 1 Part 1: Features Part 2: Dialogs Part 3: General Remarks Part 4: Development History Part 5: Included Files / JAVA applet First Steps

More information

Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer

Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer (9) Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer. (9). Abstract This research aims to propose a mathematical formula

More information

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses.

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses. IS 320 Spring 96 Page 1 Please use your own paper to answer the following questions. Point values are shown in parentheses. 1. (10) Consider the following segment of code: If txtansicode.text < "0" Or

More information

Standard File Formats

Standard File Formats Standard File Formats Introduction:... 2 Text: TXT and RTF... 4 Grapics: BMP, GIF, JPG and PNG... 5 Audio: WAV and MP3... 8 Video: AVI and MPG... 11 Page 1 Introduction You can store many different types

More information

Microsoft Office 2007

Microsoft Office 2007 Microsoft Office 2007 Adding Slide Transitions Transition Sound Transitions Transition Speed Apply to All A slide transition is the way one slide changes to the next in Slide Show view. Animations Tab:

More information

HTML5: MULTIMEDIA. Multimedia. Multimedia Formats. Common Video Formats

HTML5: MULTIMEDIA. Multimedia. Multimedia Formats. Common Video Formats LEC. 5 College of Information Technology / Department of Information Networks.... Web Page Design/ Second Class / Second Semester HTML5: MULTIMEDIA Multimedia Multimedia comes in many different formats.

More information

Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init

Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init Option Strict On Imports System.Drawing.Imaging Imports System.Drawing Imports System Imports System.Collections Imports System.Configuration Imports System.Data Imports System.IO Imports System.Web Imports

More information

UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0

UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0 UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0 The VB6 IDE (Integrated Development Environment) is a very simple and fully featured IDE. If you start out programming in VB6 you may end up being too spoiled to

More information

M4.2-R4: INTRODUCTION TO MULTIMEDIA

M4.2-R4: INTRODUCTION TO MULTIMEDIA M4.2-R4: INTRODUCTION TO MULTIMEDIA NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be answered in the TEAR-OFF

More information

Universitas Sumatera Utara

Universitas Sumatera Utara 43 L A M P I R A N 44 Penulisan Kode Program Aplikasi Game Tetris A. Kode program aplikasi game tetris untuk form1 ( MainF.frm ) adalah sebagai berikut. Dim BANK As Database Dim RS As DAO.Recordset Private

More information

LED STUDIO USER MANUAL

LED STUDIO USER MANUAL BLAIR COMPANIES LED STUDIO USER MANUAL Part # 33-19-14 5107 Kissell Avenue Altoona PA 16601 814-949-8287 blaircompanies.com TABLE OF CONTENTS Chapter 1 Introduction... 1 Chapter 2 Install and Uninstall...

More information

QuickTime 3 Pro: MoviePlayer for Windows 95/NT 4

QuickTime 3 Pro: MoviePlayer for Windows 95/NT 4 QuickTime 3 Pro: MoviePlayer for Windows 95/NT 4 Overview This page provides an index to the Windows MoviePlayer 3 Primer. The documents are geared for the novice user as well as anyone who wants to learn

More information

Easy School Net Evolution Specifications

Easy School Net Evolution Specifications Easy School Net Evolution Specifications Version 14 (FEB-2012) INDEX 1. System Connection Diagram 2. Easy School Net Evolution Management Console 3. Easy School Net Evolution Digital Video Recorder (Option)

More information

GPDR 1 PERSONAL ENTERTAINMENT SYSTEM USER GUIDE GOODMANS HELPLINE PHONE NUMBER

GPDR 1 PERSONAL ENTERTAINMENT SYSTEM USER GUIDE GOODMANS HELPLINE PHONE NUMBER PERSONAL ENTERTAINMENT SYSTEM GPDR 1 USER GUIDE GOODMANS HELPLINE PHONE NUMBER 0870 873 0080 Warning: In the event of return of this product, it will only be accepted by the retailer with the supplied

More information

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm.

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm. Visual Basic 6.0 1.,. Caption Hello, On Off. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm...!"# 2/59 3...

More information

Visual Basic ,

Visual Basic , Visual Basic 6.0..!"# !"# $#%$$"& ( ( 6.0) 2 $, -&, - 1.,. Caption Hello, On O ff. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm. 2/59 !"# $#%$$"& ( ( 6.0) 3 $, -&, - 3/59 !"# $#%$$"&

More information

Multimedia. File formats. Image file formats. CSE 190 M (Web Programming) Spring 2008 University of Washington

Multimedia. File formats. Image file formats. CSE 190 M (Web Programming) Spring 2008 University of Washington Multimedia CSE 190 M (Web Programming) Spring 2008 University of Washington Except where otherwise noted, the contents of this presentation are Copyright 2008 Marty Stepp and Jessica Miller and are licensed

More information

Creating a Basic A/V presentation

Creating a Basic A/V presentation Morriston Camera Club Pictures to Exe Version 6.5 Creating a Basic A/V presentation Setting the Project Options. Main Ensure Synchronize music and slides is checked, and set the time interval to 5secs.

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 61 LAMPIRAN 61 Listing Program Form 1 ( Barang ) Dim CnSuzuya As ADODB.Connection Dim CommBar As ADODB.Command Dim rsbar As ADODB.Recordset Dim StrSql As String Dim psn As Byte Private Sub Form_Load()

More information

Table of Contents. Major Functions 02. Description of Buttons/Interfaces..03. Description of Display Screen 04. Basic Operation 07

Table of Contents. Major Functions 02. Description of Buttons/Interfaces..03. Description of Display Screen 04. Basic Operation 07 Table of Contents Major Functions 02 Description of Buttons/Interfaces..03 Description of Display Screen 04 Basic Operation 07 Master Interface 09 Music Mode 10 Video Playing 12 FM Radio 14 Picture Browse

More information

PROGRAM BASCOM AVR. ' inisialisasi '

PROGRAM BASCOM AVR. ' inisialisasi ' PROGRAM BASCOM AVR '--------------------------------------- inisialisasi '----------------------- $prog &HFF, &HC4, &HD9, &H00 ' generated. Take care that the chip supports all fuse bytes. $regfile = "m8def.dat"

More information

ACD Systems at the hub of digital imaging... 1

ACD Systems at the hub of digital imaging... 1 User Guide Table of Contents ACD Systems at the hub of digital imaging... 1 Getting Started... 2 Minimum system requirements... 2 Installing and uninstalling... 3 Starting ACD VideoMagic... 3 Starting

More information

Chapter 6 Sub Procedures

Chapter 6 Sub Procedures Sub Procedures A set of statements that perform a specific task. Divide a program into smaller, more manageable blocks of code. An event procedure is written for a specific object event, while a sub procedure

More information

HD PLAYER SOFTWARE USER GUIDE Chapter 1- Install and Uninstall... Error! Bookmark not defined.

HD PLAYER SOFTWARE USER GUIDE Chapter 1- Install and Uninstall... Error! Bookmark not defined. HD PLAYER SOFTWARE USER GUIDE Chapter 1- Install and Uninstall... Error! Bookmark not defined. 1. Software instal...... 1 2. Software uninstall...... 4 Chapter 2- Network setting...... 4 Chapter 3- Edit

More information

Upgrading Applications

Upgrading Applications C0561587x.fm Page 77 Thursday, November 15, 2001 2:37 PM Part II Upgrading Applications 5 Your First Upgrade 79 6 Common Tasks in Visual Basic.NET 101 7 Upgrading Wizard Ins and Outs 117 8 Errors, Warnings,

More information

GETTING STARTED WITH VBA

GETTING STARTED WITH VBA Split Your Windows Click & Retrieve Source CODE! Add a Splitter class to your application to give it a Windows 95 Explorer-style splitter bar. by Chris Barlow n the last few columns I ve looked at the

More information

HyperMedia User Manual

HyperMedia User Manual HyperMedia User Manual Contents V3.0 Chapter 1 : HyperMedia Software Functions... 3 1.1 HyperMedia Introduction... 3 1.2 Main Panel... 4 1.2.1 Information Window... 4 1.2.2 Keypad... 4 1.2.3 Channel Index...

More information

Video to USB 2.0 Adaptor USB 201 Operation Manual

Video to USB 2.0 Adaptor USB 201 Operation Manual Video to USB 2.0 Adaptor USB 201 Operation Manual Introduction This unit is a plug-n-play real-time video capture box with a USB 2.0 interface to PC. The user can preview, record or playback videos from

More information

Genesis Webinar-To-Go Quick Reference Guide

Genesis Webinar-To-Go Quick Reference Guide Genesis Webinar-To-Go Quick Reference Guide This document is intended to provide you with helpful information and basic usage tips for Genesis Webinar-To-Go. 09-23-2010 Page 1 of 1 WEBINAR_A2 Logging in

More information

Download the files from you will use these files to finish the following exercises.

Download the files from  you will use these files to finish the following exercises. Exercise 6 Download the files from http://www.peter-lo.com/teaching/x4-xt-cdp-0071-a/source6.zip, you will use these files to finish the following exercises. 1. This exercise will guide you how to create

More information

LISTING PROGRAM. Form Splash

LISTING PROGRAM. Form Splash LISTING PROGRAM Form Splash Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption = App.LegalCopyright

More information

Radius= 10 cm, Color= Red, Weight= 200g, X= 3m, Y= 5m, Z= 2m. Radius= 10 cm, Color= Blue, Weight= 200g, X= 3m, Y= 5m, Z= 0m

Radius= 10 cm, Color= Red, Weight= 200g, X= 3m, Y= 5m, Z= 2m. Radius= 10 cm, Color= Blue, Weight= 200g, X= 3m, Y= 5m, Z= 0m C# property method Radius= 10 cm, Color= Red, Weight= 200g, X= 3m, Y= 5m, Z= 0m Radius= 10 cm, Color= Red, Weight= 200g, X= 3m, Y= 5m, Z= 2m Radius= 10 cm, Color= Blue, Weight= 200g, X= 3m, Y= 5m, Z= 0m

More information

Quick start guide to Blackboard at Keele

Quick start guide to Blackboard at Keele Quick start guide to Blackboard at Keele Table of Contents What is the KLE and why do we use it?... 3 Sign-in to the KLE... 3 Tabs and Sub-Tabs... 3 Panels and Customising the Home Tab... 3 Tools in the

More information

NIDEK AUTO REFRACTOMETER ARK-710A INTERFACE MANUAL

NIDEK AUTO REFRACTOMETER ARK-710A INTERFACE MANUAL NIDEK AUTO REFRACTOMETER ARK-710A INTERFACE MANUAL MRK4D*RTZ001B/E TOTAL PAGE: 32 2005. 2. 8 NIDEK CO., LTD. : 34-14, Maehama, Hiroishi-cho, Gamagori, Aichi 443-0038, Japan (Manufacturer) Telephone: (0533)

More information

HP CD-Writer 9510i - Product Specificatio

HP CD-Writer 9510i - Product Specificatio Subject: HP CD-Writer 9510i - Product Specifications (http://support.hp.com/showpage/cat HP CD-Writer 9510i - Product Specificatio In this document: Introduction Model number Product description Product

More information

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. LostFocus Resize System event

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. LostFocus Resize System event Events Private Sub Form_Load() Load Close Unload Private Sub Form_Unload(Cancel As Integer) Cancel=True Cancel * Show Activate SetFocus Focus Deactivate SetFocus GotFocus CommandButton LostFocus Resize

More information

Hardware Acceleration Support Multi-Core CPU optimization Native 64bit Editing Engine Video effect acceleration by using GPGPU NVIDIA CUDA technology AMD Parallel Processing Accelerator Hardware decode

More information

CMPT 110 MIDTERM OCTOBER 18, 2001

CMPT 110 MIDTERM OCTOBER 18, 2001 CMPT 110 MIDTERM OCTOBER 18, 2001 1 What will be displayed when the command button is clicked? 7% Level of difficulty 7 (out of 10) Assume there is a command button called cmdbutton Assume there is a picturebox

More information

Using VideoPad freeware for editing, subtitling and dubbing

Using VideoPad freeware for editing, subtitling and dubbing Using VideoPad freeware for editing, subtitling and dubbing How to edit a video using the freeware version of VideoPad VideoPad can be downloaded here: http://www.nchsoftware.com/videopad/index.html [NB:

More information

Installation And User Guide DVR-EZ. 4 Channel Digital Video Recorder

Installation And User Guide DVR-EZ. 4 Channel Digital Video Recorder Installation And User Guide DVR-EZ 4 Channel Digital Video Recorder Regulatory FCC Certification This equipment has been tested and found to comply with the limits for a class A digital device, pursuant

More information

Date : Jun 14, Ver. 01. InterVideo InstantON. User Manual

Date : Jun 14, Ver. 01. InterVideo InstantON. User Manual Ver. 01 Date : Jun 14, 2005 InterVideo InstantON User Manual 1 Content 1. Install/Repair/Remove...5 1.1. Install InterVideo InstantON...5 1.1.1. Run the InstantON Install file under Windows...5 1.1.2.

More information

Visual Basic. The Integrated Development Environment. Menu Bar

Visual Basic. The Integrated Development Environment. Menu Bar Visual Basic Visual Basic is initiated by using the Programs option > Microsoft Visual Basic 6.0 > Visual Basic 6.0. Clicking the Visual Basic icon, we can view a copyright screen enlisting the details

More information

We are going to use some graphics and found a nice little batman running GIF, off course you can use any image you want for the project.

We are going to use some graphics and found a nice little batman running GIF, off course you can use any image you want for the project. C# Tutorial - Create a Batman Gravity Run Game Start a new project in visual studio and call it gravityrun It should be a windows form application with C# Click OK Change the size of the to 800,300 and

More information

BrainMaster Multimedia Player (BMrMMP) User s Manual

BrainMaster Multimedia Player (BMrMMP) User s Manual BrainMaster Multimedia Player (BMrMMP) User s Manual 531-088 v. 1.3 7-10-07 Page 1 of 14 BrainMaster Multimedia Player (BMrMMP) User s Manual Table of Contents Starting and using the BMrMMP software...

More information

LED VIDEO WALL CONTROLL SYSTEM USERS MANUAL. PAW GmbH 04/2013 1

LED VIDEO WALL CONTROLL SYSTEM USERS MANUAL. PAW GmbH 04/2013 1 LED VIDEO WALL CONTROLL SYSTEM USERS MANUAL PAW GmbH 04/2013 1 INDEX 1 INHALT 2 INTRODUCTION... 6 2.1 Features... 6 2.2 Operating Environment... 6 2.2.1 Operating system... 6 2.2.2 Hardware Configuration...

More information

JetVote User Guide. Table of Contents

JetVote User Guide. Table of Contents User Guide English Table of Contents 1 General Information... 3 Minimum System Requirements... 3 2 Getting Started... 4 Software Installation... 4 Installing the Server... 4 Installing Quiz Packets (Optional)...

More information

Information Hiding In Images Using Randomly Selected Points

Information Hiding In Images Using Randomly Selected Points Republic of Iraq Ministry Of Higher Education And Scientific Research University Of Baghdad College Of Science Department Of Computer Science Information Hiding In Images Using Randomly Selected Points

More information

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = Label1.

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = Label1. 練習問題 1-1 Label1 Label1.Text = Label1.Text + 2 練習問題 1-2 Button2 Label1 Label1.Text = Label1.Text+ 2 Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

More information

What s New in Studio 6?

What s New in Studio 6? What s New in Studio 6? mimio Toll Free Support: 877.846.3721 email: techsupport@mimio.com New Zoom Icon Right click on the Zoom Icon to choose from Zoom In, Zoom Out, and Zoom Full Import File Icon Insert

More information

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB Visual Programming 1. What is Visual Basic? Visual Basic is a powerful application development toolkit developed by John Kemeny and Thomas Kurtz. It is a Microsoft Windows Programming language. Visual

More information

HDPlayer Operating Manual

HDPlayer Operating Manual Catalog Chapter 1- Install and Uninstall...2 1. Software Install...2 2. Software Uninstall...4 Chapter 2- Network setting...4 The controller can connect to the computer directly. It can also connect to

More information

DbsEditor v1.8 (Database Editor) QUICK REFERENCE

DbsEditor v1.8 (Database Editor) QUICK REFERENCE DbsEditor v1.8 (Database Editor) QUICK REFERENCE By S. KIRANYAZ This application is a dialog-based program, which is designed to perform several off-line tasks of the MUVIS multimedia databases. DbsEditor

More information

Industrial Technology

Industrial Technology 2016 HIGHER SCHOOL CERTIFICATE EXAMINATION Industrial Technology Multimedia Technologies Total marks 40 General Instructions Reading time 5 minutes Working time 1 1 2 hours Write using black pen Draw diagrams

More information

Click on the empty form and apply the following options to the properties Windows.

Click on the empty form and apply the following options to the properties Windows. Start New Project In Visual Studio Choose C# Windows Form Application Name it SpaceInvaders and Click OK. Click on the empty form and apply the following options to the properties Windows. This is the

More information

Operating Instructions

Operating Instructions Level and Pressure Operating Instructions VEGA-ASCII signal output VEGASCAN 850 0100110010100 VEGA-ASCII in out Contents Contents Safety information... 2 Note Ex area... 2 1 Configuration of the VEGA-ASCII

More information

VSPlayer User Manual V

VSPlayer User Manual V VSPlayer User Manual V6.0.0.4 2010-05-21 1 VSPlayer User Manual Thank you for purchasing our products. If there are any questions or requirements, please feel free to contact us. This manual is applicable

More information

Multimedia Technology

Multimedia Technology Multimedia Application An (usually) interactive piece of software which communicates to the user using several media e.g Text, graphics (illustrations, photos), audio (music, sounds), animation and video.

More information

Meeting Visuals UCF Toolkit User Guide

Meeting Visuals UCF Toolkit User Guide Meeting Visuals UCF Toolkit User Guide We provide Meeting Visuals web conferencing services. Because Meeting Visuals is powered by WebEx, this guide makes several references to the company name, platform

More information

Media Formats. Sound. Image. Video. WAV (uncompressed, PCM) MIDI. BMP XML dia MPEG

Media Formats. Sound. Image. Video. WAV (uncompressed, PCM) MIDI. BMP XML dia MPEG Media Formats Sound WAV (uncompressed, PCM) MIDI Image BMP XML dia Video MPEG Sources WAV Sound Chapter 4, main text Kientzle, T. (1998). A Programmer s Guide to Sound. Addison-Wesley. WAV file format

More information

VISUAL BASIC 6.0 OVERVIEW

VISUAL BASIC 6.0 OVERVIEW VISUAL BASIC 6.0 OVERVIEW GENERAL CONCEPTS Visual Basic is a visual programming language. You create forms and controls by drawing on the screen rather than by coding as in traditional languages. Visual

More information

_APP B_549_10/31/06. Appendix B. Producing for Multimedia and the Web

_APP B_549_10/31/06. Appendix B. Producing for Multimedia and the Web 1-59863-307-4_APP B_549_10/31/06 Appendix B Producing for Multimedia and the Web In addition to enabling regular music production, SONAR includes a number of features to help you create music for multimedia

More information

New Features. Importing Resources

New Features. Importing Resources CyberLink StreamAuthor 4 is a powerful tool for creating compelling media-rich presentations using video, audio, PowerPoint slides, and other supplementary documents. It allows users to capture live videos

More information

END-TERM EXAMINATION

END-TERM EXAMINATION (Please Write your Exam Roll No. immediately) END-TERM EXAMINATION DECEMBER 2006 Exam. Roll No... Exam Series code: 100274DEC06200274 Paper Code : MCA-207 Subject: Front End Design Tools Time: 3 Hours

More information

Irfan View keyboard shortcuts. Irfan View is one of the most popular freeware image/graphic viewers. Bellow is the full list of keyboard shortcuts :

Irfan View keyboard shortcuts. Irfan View is one of the most popular freeware image/graphic viewers. Bellow is the full list of keyboard shortcuts : Page 1 of 5 SHORTCUTKEYS.NET - PRINTABLE KEYBOARD SHORTCUTS Irfan View keyboard shortcuts Irfan View is one of the most popular freeware image/graphic viewers. Bellow is the full list of keyboard shortcuts

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N Form 1 '====================================================== 'SUHU FLUIDA : ' Suhu 10 C Const a1 = 0.9998 Const B1 = 1.307 Const C1 = 0.01251 ' Suhu 20 C Const a2 = 0.9983 Const B2 =

More information

Computing in the Modern World

Computing in the Modern World Computing in the Modern World BCS-CMW-7: Data Representation Wayne Summers Marion County October 25, 2011 There are 10 kinds of people in the world: those who understand binary and those who don t. Pre-exercises

More information

Share Content. Share Content

Share Content. Share Content , page 1 Quick reference tasks: share content, page 2 Share a file, page 4 Share an application, page 11 About sharing a remote computer, page 14 Take a Poll, page 17 Transfer and Download Files During

More information

Prentice Hall. Learning Microsoft PowerPoint , (Weixel et al.) Arkansas Multimedia Applications I - Curriculum Content Frameworks

Prentice Hall. Learning Microsoft PowerPoint , (Weixel et al.) Arkansas Multimedia Applications I - Curriculum Content Frameworks Prentice Hall Learning Microsoft PowerPoint 2007 2008, (Weixel et al.) C O R R E L A T E D T O Arkansas Multimedia s I - Curriculum Content Frameworks Arkansas Multimedia s I - Curriculum Content Frameworks

More information

Disclaimer. Need Help!?

Disclaimer. Need Help!? Disclaimer The Library assumes no responsibility for any damage to Library users personal devices, software, files, and equipment. All files saved onto the imac will be deleted after logging off. Please

More information