Visual Basic

Size: px
Start display at page:

Download "Visual Basic"

Transcription

1

2 140 II 12-1 data file record field

3 sequential file random file binary file

4 142 II Bytes 16Bytes 16Bytes 16Bytes 16Bytes 2 2 byte 12-4 byte 12-4 Byte Byte String String Integer 1. A M9408 M9408 M9408 B JUN 200 FEB 350 MAR 300 APR 240 MAY 185

5 (1) 16 Bytes (2) 1 1~ ~32 ( )1. 3 (A) (B) (C) (D) ( )2. (A)4 (B)5 (C)6 (D)7 G /7/2 VCD /7/12 G /7/2 DVD /7/12 G /7/7 DVD /7/17 G /7/11 DVD /7/21 G /7/12 VCD /7/22 ( )3. (A)1 (B)2 (C)3 (D)4 ( )4. (A) (B) (C) (D) ( )5. (A) (B) (C) (D)

6 144 II ASCII bytes "1" "2" "3" "4" "5"

7 key field Winhex Winhex Stefan Fleischmann P ( ) Archie FTP

8 146 II Open buffer Visual Basic Open Open For As [#] [, Len = ] Output Input Append 3. 1~511

9 ~32767 bytes 128 bytes 12-6( ) "C:\Ducument" "seq" 12-6( ) 12-6 Private Sub Form_Activate( ) Open "C:\Ducument\seq" For Output As #1 End Sub Private Sub Form_Activate( ) Open "C:\Ducument\seq" For Append As #1 End Sub FreeFile( ) FreeFile( ) FreeFile( ) FreeFile[(range)] range ~ ~511

10 148 II Print # Write # Print # Print Print # Print # Print# Print Print [#], [OutputList] 1. Open 2. OutputList ;, 3. Print # N Print # N Print # "seq" "seq" Print # Winhex 12-7( )

11 seq Print # Private Sub Form_Activate( ) Open "C:\Ducument\seq" For Output As #1 Print #1, " "; #2/24/1978# Print #1, Print #1, " ", Close ' End Sub 1978/2/ "Ch12-2a.vbp" 12-7( ) Print # "seq" 12-7( ) "seq" Print # Winhex Write # Write # " # Write [#], [OutputList]

12 150 II 1. Open 2. OutputList Write # 12-8( ) Write # 12-7 "seq" 12-8( ) WinHex Print # Write # 12-8 seq Write # Private Sub Form_Activate( ) Open "C:\Ducument\seq" For Append As #1 Write #1, " "; #2/24/1978# Write #1, Write #1, " ", Close ' End Sub Append "-"

13 "Ch12-2b.vbp" Print # Write # Print # Write # Write # Input( ) Line Input # Input # EOF( ) EOF( ) EOF( ) EOF( ) EOF( ) 1. EOF( ) True 2. EOF( ) False

14 152 II Input( ) Input( ) Input (number, [#] ) number "seq" Input( ) Private Sub Form_Activate( ) Dim x As String Open "C:\Ducument\seq" For Input As #1 Do While Not EOF(1) ' x = Input(1, #1) ' Print x; ' Loop Close ' End Sub Input( ) Print # Write # "Ch12-2c.vbp"

15 Line Input # # Line Input # Line Input # Print Line Input [#], 1 [, 2 ] 12-11( ) Line Input # "seq" 12-11( ) Line Input # Line Input # Private Sub Form_Activate( ) Dim x As String Open "C:\Ducument\seq" For Input As #1 Do While Not EOF(1) Line Input #1, x Print x Loop Close ' End Sub "Ch12-2d.vbp"

16 154 II Input # Input # Input # Write # Input [#], 1 [, 2 ] 12-12( ) Input # "seq" 12-12( ) Input # Input # Private Sub Form_Activate( ) Dim x As String Open "C:\Ducument\seq" For Input As #1 Do While Not EOF(1) Input #1, x Print x Loop Close ' End Sub "Ch12-2e.vbp" Input # Print # Input # Write # Input #

17 Close Close [#] [, [#], ] Open Close # 1 "seq" Close #1 Private Command1_Click( ) Dim i As Integer Dim no As String, x As String For i = 0 To 6 ' no no = no + Text1(i).Text Next i Open "C:\Lottery " For As #1 ' Print #1, " ", no Close Open "C:\Lottery" For Input As #1 ' Input, x Close #1 End Sub

18 156 II ( )1. Open (A)Output (B)Input (C)Append (D)Insert ( )2. Write #1 " ";#2005/7/29# Line Input # Print " " (A) 2005/7/29 (B) 2005/ 7/29 (C)" ",#2005/7/29# (D)" ",2005/7/29 ( )3. (C)Char( ) (D)Len( ) (A)Format( ) (B)EOF( ) 1. (1) Print # Line Input # Print (2) "Sp12-a.frm" "Sp12-a.vbp"

19 bytes 8 bytes 2 bytes 16 bytes bytes 8 bytes 2 bytes bytes ~48 bytes 32 bytes (Bytes)

20 158 II field key N N bytes 6 bytes 2 bytes (12345) 10 =(3039) bytes = ( ) 2 2 bytes

21 Type [Private Public] Type 1 As [ 2 As ] End Type 1. Type 12-3 Type Type 12-3 Type Type Public Private Private

22 160 II String Long Integer Date "record" Private Type record no As String * 6 name As String * 8 score As Integer End Type ' ' ' Dim As Dim student As record ' student record student.no ' student no

23 Private Sub Command1_Click( ) student.no = Text1(0).Text student.name = Text1(1).Text student.score = Val(Text1(2).Text) End Sub "Ch12-3a.vbp" With With. 1 = [. 2 = ] End With student With student.no = Text1(0).Text.name = Text1(1).Text.score = Val(Text1(2).Text) End With

24 162 II With With With. 1 = [. 2 = ] End With Picture1 With Picture1.ScaleMode = 3.Height = 500.Width = 500 End With 1. 4 Type 2. Text1 4 video_rec With

25 Open Open [For Random] [Access ] As [#] [Len = ] For Random Visual Basic 3. 3 (1) Read (2) Write (3) Read Write Read Write ~32767 bytes 128 bytes "ran" 16 bytes Open "C:\Ducument\ran" For Random As #2 Len = 16

26 164 II Put # Put [#],[ ], N N 1~ ( ) "ran" "ran" "ran" P.160. Private Sub Form_Load( ) Open "C:\Ducument\ran" For Random As #2 Len = 16 End Sub Private Sub Command1_Click( ) Static i As Integer ' i i = i + 1 student.no = Text1(0).Text student.name = Text1(1).Text student.score = Val(Text1(2).Text) Put #2, i, student End Sub "Ch12-3b.vbp"

27 LOF( ) Get # LOF ( ) LOF( ) LOF( ) bytes LOF( ) Dim filesize As Integer Open "C:\Ducument\ran" For Random As #2 Len = 16 filesize = LOF(2) Get # Get # Get [#], [ ], N N 1~

28 166 II Get # ran Private Sub Command2_Click( ) Dim j As Integer Do While j <> LOF(2) / Len(student) ' j j = j + 1 Get #2, j, student MsgBox " " & j & " " & student.no & _ " " & student.name & student.score,, " " Loop End Sub Step 1 3 Get # Step 2 "Ch12-3c.vbp" Close P

29 Output Input Append Random Print # Write # Put # Input( ) Input # Get # Line Input # ( )1. class 20 bytes (A)Open "C:\class" For Random As #1 Len = 0.02 (B) Open "C:\class" For Random As #1 Len = 2 (C)Open "C:\class" For Random As #1 Len = 20 (D)Open "C:\class" For Random As #1 Len = 160 ( )2. Put #1, 10, car (A) 10 (B) 1 (C) 10 (D) 1 1. (1) Type (2) Put # Get # Print # (3) "Sp12- b.frm" "Sp12-b.vbp"

30 168 II bytes *.exe 1 byte 7 byte 12 byte Long(4 bytes) Integer (2 bytes) String (2 bytes)

31 Open Open For Binary [Access ] As [#] For Binary "bin" Open "C:\Ducument\bin" For Binary As #4 Put # Put [#],,

32 170 II N byte "bin" 5 byte "123" Open "C:\Ducument\bin" For Binary As #3 Put #3, 5, "123" Get # Get [#],, N byte Get # 2.2 Input() 12- "bin" 5 byte ( ) 12-20( ) Private Sub Form_Activate( ) ' s 'byte Dim s As Byte 1 ASCII 49 Open "C:\Ducument\bin" For Binary As #3 Put #3, 5, "123" Get #3, 5, s ' s ASCII Print s;char(s) End Sub "Ch12-4a.vbp"

33 Close Close FileLen( ) bytes FileLen( ) Print FileLen("C:\Ducument\bin") LOF( ) FileLen( ) LOF( ) FileLen( ) Seek( ) bytes Seek( ) Open "C:\Ducument\ran" For Random As #2 Len = 16 Print Seek(2) ' ' Seek bytes Seek [#], "bin" 10 "ABC" Open "C:\Ducument\bin" For Binary As #3 Seek #3, 10 Put #3,,"ABC"

34 172 II ( )1. (A) (B) (C) (D) ( )2. Put #5, 3, " " (A) 3 (B) 5 (C) 5 (D) 3 ( )3. Open "C:\record" For Binary As #3 (A) "C:\record\" (B) 1 (C) (D) 1. "song" 8~ D a n c i n g Q u e e n Private Sub Form_Activate( ) Dim x As Byte, i As Integer Open "C:\Ducument\song" As #1 Put #1, 1, "DancingQueen" For i = 8 To 12 Print Chr(x); Next i End Sub "ABBA " Private Sub Command1_Click( ) Open AS #2 Put Close End Sub

35 Windows "C:\Vb" "C:\Vb" CurDir CurDir [( )] 1. " 2.

36 174 II 1 Print CurDir("C") ' C 2 Print CurDir("D") ' D ChDrive ChDir ChDrive ChDir 1. ChDrive ChDir " 2. ChDrive "C:\Vb" "D:\Backup" ChDrive "D" ' D ChDir "\Backup" ' "D:\Backup"

37 RmDir MkDir MkDir RmDir 1. MKDir RmDir " 2. RmDir Kill RmDir "A" "B" MkDir "A" ' A Kill "B\*.*" ' B RmDir "B" ' B

38 176 II Kill FileCopy FileCopy, Kill 1. FileCopy Kill " 2. Visual Basic "B.doc" FileCopy "A.doc", "D:\B.doc" "A.doc" "D:\" Name

39 Name As " "B.doc" Name "A.doc" As "D:\B.doc" "A.doc" "D:\" Name "A" "B" Name "A" As "B" 1. (1) "C:\Programe File" "C:\Ducument" (2) D "Backup" (3) "game.jpg" "D:\Backup" (4) "win.gif" (5) "start.mid" "D:\Backup" (6) "gam.fla" "gum.fla"

40 178 II DriveListBox DirListBox FileListBox 3 3 DriveListBox DriveListBox Drive Drive DriveListBox DriveListBox 12-23( ) 12-23( ) Drive Private Sub Command1_Click( ) Text1.Text = " " & Drive1.Drive End Sub "Ch12-5a.vbp"

41 Change DriveListBox C A DriveListBox Change 12-24( ) Change 12-24( ) Change Private Sub Drive1_Change( ) MsgBox " " & Drive1.Drive & " " End Sub Change "Ch12-5b.vbp" DirListBox DirListBox Path Path 12-25( ) DirListBox 12-25( ) DirListBox

42 180 II Path Private Sub Command1_Click( ) Text1.Text = " " & Dir1.Path End Sub "Ch12-5c.vbp" Change DirListBox DirListBox 12-26( ) Change 12-26( ) Change Change Private Sub Dir1_Change( ) MsgBox " " & Dir1.Path & " " End Sub Change "Ch12-5d.vbp"

43 FileListBox FileListBox Path Path FileListBox FileListBox 12-27( ) 12-27( ) Path FileListBox Private Sub Form_Activate( ) ChDir "C:\WINDOWS\Cursors\" ' C:\WINDOWS\Cursors Text1.Text = " " & File1.Path & " " End Sub "Ch12-5e.vbp" FileName FileName FileListBox FileListBox FileListBox Click 12-28( ) 12-28( )

44 182 II Private Sub File1_Click( ) Text1.Text = " " & File1.FileName End Sub "Ch12-5f.vbp" Pattern Pattern FileListBox FileListBox "*.exe" FlieListBox Pattern " *.exe " 12-29( ) FileListBox "*.exe" 12-29( ) Box Pattern FileName FileList- FileListBox *.exe "*.exe"

45 " *.txt " Step

46 184 II Locked "True" Form1 Caption Label1 Caption File1 Pattern *.txt Text1 Locked True Text1 MultiLine True Text1 ScrollBars 3- Text1 Text Step *.txt Step3 Drive1_Change Dir1_Change File1_Click 10 Private Sub Drive1_Change( ) Dir1.path = Drive1.Drive End Sub

47 Private Sub Dir1_Change( ) File1.path = Dir1.path End Sub Private Sub File1_Click( ) Dim path As String ' path Dim aline As String ' aline Dim alldata As String ' alldata If Right(File1.path, 1) <> "\" Then path = File1.path & "\" & File1.FileName Else path = File1.path & File1.FileName End If Open path For Input As #1 Do While Not EOF(1) Line Input #1, aline ' alldata = alldata & aline & vbcrlf Loop Text1.Text = alldata Close #1 End Sub 10~10 Dir1 20~20 File1 30~50 60~100 If-Then-Else File1.Path File1.FileName "\"

48 186 II 110~ ~150 Do While-Loop vbcrlf 160~160 Text1 170~170 *.gif (1) Text1 Image (2) File1_Click LoadPicture Image1 Picture

49 ( )1. "Picture" "Image" (A)FileCopy "Picture", "Image" (B)Name "Picture" As "Image" (C)Name "Picture", "Image" (D)Change "Picture" As "Image" ( )2. (A)DriveListBox (B)DirListBox (C)FileListBox (D)Text ( )3. DirListBox (A)Font (B)Name (C)Path (D)Visible ( )4. (A)ComboBox (B)DriveListBox (C)ListBox (D)FileListBox ( )5. FileListBox (A) FileName (B)Path (C)Pattern (D)Name

50 188 II ( )1. (A) (C) (D) (B) ( )2. (A) (B) (C) (D) ( )3. (A) RAM (B) (C) FreeFile ( ) (D) 1~511 ( )4. (A) (B) (C) (D) ( )5. (A)GoTo (B)Type (C)Dim (D)Static ( )6. 32 bytes 128 bytes (A)4 (B)5 (C)6 (D)7 ( )7. (A)Input # (B) Line Input # (C)Get # (D)Print # ( )8. (A) (B) (C) (D) ( )9. "Sample" (A)RmDir "Sample" (B)MkDir "Sample" (C) Kill "Sample" (D)ChDir "\Sample" ( )10. Name "Friends.doc" As "C:\Classmate.doc" "Friends.doc" (A) C (B) "Classmate.doc" C (C) "Classmate.doc" (D)

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab.

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. DriveListBox Control, DirListBox Control, and FileListBox Control CommonDialog Control 1 2 DriveListBox Control disk drive Important Properties object.drive [= drive] Drive Floppy disks "a:" or "b:", and

More information

11-1 11-1.1 11-1.2 11-2 11-2.1 11-2.2 108 II 11-1 Timer 11-1.1 Windows 11-1 11-1 Visual Basic Animation Animation 11 109 Animation Animation RLE AVI AVI 11-2 Visual Basic Animation / Microsoft Windows

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

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

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

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

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

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

Answer: C. 7. In window we can write code A. Immediate window B. Locals window C. Code editor window D. None of these. Answer: C

Answer: C. 7. In window we can write code A. Immediate window B. Locals window C. Code editor window D. None of these. Answer: C 1. Visual Basic is a tool that allows you to develop application in A. Real time B. Graphical User Interface C. Menu Driven D. None Of These 2. IDE stands for.. A. Internet Development Environment B. Integrated

More information

PA R T. A ppendix. Appendix A VBA Statements and Function Reference

PA R T. A ppendix. Appendix A VBA Statements and Function Reference PA R T V A ppendix Appendix A VBA Statements and Reference A d Reference This appendix contains a complete listing of all Visual Basic for Applications (VBA) statements (Table A-1 ) and built-in functions

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

University of Osnabruck - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

University of Osnabruck - FTP Site Statistics. Top 20 Directories Sorted by Disk Space University of Osnabruck - FTP Site Statistics Property Value FTP Server ftp.usf.uni-osnabrueck.de Description University of Osnabruck Country Germany Scan Date 17/May/2014 Total Dirs 29 Total Files 92

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

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

File Organization and Management

File Organization and Management 1 UNESCO-NIGERIA TECHNICAL & VOCATIONAL EDUCATION REVITALISATION PROJECT-PHASE II NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY File Organization and Management YEAR II- SE MESTER I PRACTICAL Version 1: December

More information

Visual Basic 6 Interactive Course Object-Oriented Programming

Visual Basic 6 Interactive Course Object-Oriented Programming Visual Basic 6 Interactive Course - CH 2 - Object-Oriented Programming Page 1 of 33 [Figures are not included in this sample chapter] Visual Basic 6 Interactive Course - 2 - Object-Oriented Programming

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

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. frmmenu.frm Dim CN As Connection Dim rshapus As Recordset Private Sub DfaHasil_Click() Call frmlap.cetak Private Sub Form_Load() Set CN = New ADODB.Connection CN.ConnectionString

More information

Visual Basic ,

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

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

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

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

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

SEE5A/ Visual Basic Unit : I - V

SEE5A/ Visual Basic Unit : I - V SEE5A/ Visual Basic Unit : I - V 1 1 UNIT I : Syllabus Customizing a Form Writing Simple Programs Tool Box Creating Controls Name Property Command Button, Access Keys Image Controls, Text Boxes, Labels

More information

Lab Sheet 4.doc. Visual Basic. Lab Sheet 4: Non Object-Oriented Programming Practice

Lab Sheet 4.doc. Visual Basic. Lab Sheet 4: Non Object-Oriented Programming Practice Visual Basic Lab Sheet 4: Non Object-Oriented Programming Practice This lab sheet builds on the basic programming you have done so far, bringing elements of file handling, data structuring and information

More information

VB File I/O FreeFile: Get an available file number FreeFile filenumber Integer: 1~255

VB File I/O FreeFile: Get an available file number FreeFile filenumber Integer: 1~255 VB File I/O FreeFile: Get an available file number FreeFile filenumber Integer: 1~255 Open: enable I/O to a file Open filename For mod [Access access] As filenumber Mod ASCII: Append, Input, Output Binary:

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

Reading and Writing Files. Keeping Data

Reading and Writing Files. Keeping Data Reading and Writing Files Keeping Data Why do we use files? For permanently storing data. For dealing with information too large to fit in memory. Sequential Access Files Think of files as being stored

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/13/CSc 0 1 3 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 4 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

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

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

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software Ex. No.1 Date: ONLINE COURSE RESERVATION AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software PROBLEM STATEMENT As the head of information systems for

More information

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4 Subject Name VISUAL BASIC Sr.No Course content 1. 1. Introduction to Visual Basic 1.1. Programming Languages 1.1.1. Procedural,

More information

PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM

PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM SOURCE CODE VISUAL BASIC Dim WR As Boolean Dim pw Dim data Dim oxg Public index1 Dim index2 Dim k Dim u Dim refd Dim datar1$(1000, 9) Dim c_data Dim A$(10)

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

Rzeszow University Of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Rzeszow University Of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ns2.prz-rzeszow.pl Description Rzeszow University Of Technology Country Poland Scan Date 02/Aug/2014 Total Dirs 1,124 Total Files 13,092 Total Data 48.96 GB Top 20 Directories

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

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

Universitas Sumatera Utara

Universitas Sumatera Utara Option Explicit DefLng A-Z '--------------------------------------------------------------------------------------------- #Const Test = False '---------------------------------------------------------------------------------------------

More information

Heilbronn University - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Heilbronn University - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Heilbronn University - FTP Site Statistics Property Value FTP Server ftp.fh-heilbronn.de Description Heilbronn University Country Germany Scan Date 16/May/2014 Total Dirs 8,120 Total Files 124,014 Total

More information

DBit Ersatz-11 PDP-11 Emulator - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

DBit Ersatz-11 PDP-11 Emulator - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.dbit.com Description DBit Ersatz-11 PDP-11 Emulator Country United States Scan Date 07/Feb/2015 Total Dirs 221 Total Files 2,135 Total Data 172.11 MB Top 20 Directories Sorted

More information

Chapter 14 Sequential Files

Chapter 14 Sequential Files CHAPTER 14 SEQUENTIAL FILES 1 Chapter 14 Sequential Files (Main Page) 14.1 DirListBox, FileListBox, and DriveListBox toolbox icons. 14.2 Some DirListBox, FileListBox, and DriveListBox common properties

More information

University of Valencia - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

University of Valencia - FTP Site Statistics. Top 20 Directories Sorted by Disk Space University of Valencia - FTP Site Statistics Property Value FTP Server ftp.uv.es Description University of Valencia Country Spain Scan Date 30/Apr/2014 Total Dirs 423 Total Files 2,010 Total Data 4.46

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/15/CSc 2 0 1 5 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 24 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/14/CSc 2 0 1 4 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 24 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

M.C.A. (Sem.-II) Examination. Ma~' CCA-2003 : Building Client Server Application Using VB. Faculty Code: 003 Subject Code:

M.C.A. (Sem.-II) Examination. Ma~' CCA-2003 : Building Client Server Application Using VB. Faculty Code: 003 Subject Code: 1~'IIIf 003-007203 M.C.A. (Sem.-II) Examination Ma~' -2014 CCA-2003 : Building Client Server Application Using VB Faculty Code: 003 Subject Code: 007203 Time: 21/2 Hours] [Total Marks: 70 I. Answer the

More information

VISUAL BASIC For Engineers & Scientists. Shahab D. Mohaghegh, Ph.D. Professor Petroleum & Natural Gas Engineering West Virginia University

VISUAL BASIC For Engineers & Scientists. Shahab D. Mohaghegh, Ph.D. Professor Petroleum & Natural Gas Engineering West Virginia University VISUAL BASIC For Engineers & Scientists Shahab D. Mohaghegh, Ph.D. Professor Petroleum & Natural Gas Engineering West Virginia University March 1997 TABLE OF CONTENTS Chapter 1: Problem Solving with Visual

More information

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Introduction Among the many new features of PATROL version 3.3, is support for Microsoft s Component Object Model (COM).

More information

EMPLOYEE PAYROLL SYSTEM

EMPLOYEE PAYROLL SYSTEM EX.NO:1 DATE: EMPLOYEE PAYROLL SYSTEM AIM: To develop a Employee Payroll System using visual Basic. PROCEDURE: 1. Problem statement Software is to be designed for supporting a computerized employee payroll

More information

Pintos Project 4 File Systems. November 14, 2016

Pintos Project 4 File Systems. November 14, 2016 Pintos Project 4 File Systems November 14, 2016 Overview Requirements Implementation Project 4 will be done in src/filesys/ This means you will run make in src/filesys This means you will run tests in

More information

Croatian Academic and Research Network - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Croatian Academic and Research Network - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Croatian Academic and Research Network - FTP Site Statistics Property Value FTP Server debian.carnet.hr Description Croatian Academic and Research Network Country Croatia Scan Date 10/May/2015 Total Dirs

More information

Lab Manual Visual Basic 6.0

Lab Manual Visual Basic 6.0 Lab Manual Visual Basic 6.0 What is Visual Basic? VISUAL BASIC is a high level programming language evolved from the earlier DOS version called BASIC. BASIC means Beginners' All-purpose Symbolic Instruction

More information

Manual. BasicMaker SoftMaker Software GmbH

Manual. BasicMaker SoftMaker Software GmbH Manual BasicMaker 1987-2018 SoftMaker Software GmbH Contents Welcome! 9 What is BasicMaker?... 9 Using the script editor 11 Starting BasicMaker... 11 Commands in the File menu of the script editor...

More information

Ludost Project Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Ludost Project Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server debian.ludost.net Description Ludost Project Archive Country Bulgaria Scan Date 08/May/2015 Total Dirs 33,109 Total Files 504,217 Total Data 520.74 GB Top 20 Directories Sorted

More information

Mpoli Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Mpoli Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Mpoli Archive - FTP Site Statistics Property Value FTP Server ftp.mpoli.fi Description Mpoli Archive Country Finland Scan Date 01/Nov/2015 Total Dirs 52,408 Total Files 311,725 Total Data 28.53 GB Top

More information

-1- csh cd. cd alias!! ; set prompt=" pwd % " 16 cd. 17 cd.. 18 his /home% set prompt. alias. yasuoka : root :

-1- csh cd. cd alias!! ; set prompt= pwd %  16 cd. 17 cd.. 18 his /home% set prompt. alias. yasuoka : root : -1- csh 4 root root prompt set prompt pwd % prompt alias alias pwd % alias cd \!\! ; set prompt=" pwd % " pwd % cd. cd.. his 9 set prompt= pwd % 10 cd 11 set prompt=" pwd % " 12 cd.. 13 set prompt= pwd

More information

Quatius Corporation - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Quatius Corporation - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.quatius.com.au Description Quatius Corporation Country Australia Scan Date 03/Sep/2015 Total Dirs 133 Total Files 771 Total Data 9.61 GB Top 20 Directories Sorted by Disk

More information

MTU Computer Structure

MTU Computer Structure 1 MTU Computer Structure Home directory: h drive Same for Suns & PC s Location to store files Organize files by creating appropriate directories (folders) Subdirectory - any directory within in another

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

Perl for Biologists. Regular Expressions. Session 7. Jon Zhang. April 23, Session 7: Regular Expressions CBSU Perl for Biologists 1.

Perl for Biologists. Regular Expressions. Session 7. Jon Zhang. April 23, Session 7: Regular Expressions CBSU Perl for Biologists 1. Perl for Biologists Session 7 April 23, 2014 Regular Expressions Jon Zhang Session 7: Regular Expressions CBSU Perl for Biologists 1.1 1 Review of Session 6 Each program has three default input/output

More information

IBM Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

IBM Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space IBM Software Archive - FTP Site Statistics Property Value FTP Server public.dhe.ibm.com Description IBM Software Archive Country United States Scan Date 09/Oct/2015 Total Dirs 202,167 Total Files 4,041,461

More information

NOTES: String Functions (module 12)

NOTES: String Functions (module 12) Computer Science 110 NAME: NOTES: String Functions (module 12) String Functions In the previous module, we had our first look at the String data type. We looked at declaring and initializing strings, how

More information

Control Properties. Example: Program to change background color

Control Properties. Example: Program to change background color Control Properties Before writing an event procedure for the control to response to an event, you have to set certain properties for the control to determine its appearance and how will it work with the

More information

Table of Contents 1 FTP Configuration Commands TFTP Configuration Commands 2-1

Table of Contents 1 FTP Configuration Commands TFTP Configuration Commands 2-1 Table of Contents 1 FTP Configuration Commands 1-1 FTP Client Configuration Commands 1-1 ascii 1-1 binary 1-2 bye 1-2 cd 1-3 cdup 1-4 close 1-4 debugging 1-5 delete 1-6 dir 1-6 disconnect 1-8 display ftp

More information

Table of Contents 1 FTP Configuration Commands TFTP Configuration Commands 2-1

Table of Contents 1 FTP Configuration Commands TFTP Configuration Commands 2-1 Table of Contents 1 FTP Configuration Commands 1-1 FTP Server Configuration Commands 1-1 display ftp-server 1-1 display ftp-user 1-2 free ftp user 1-3 ftp server acl 1-3 ftp server enable 1-4 ftp timeout

More information

Eindhoven University of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Eindhoven University of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Eindhoven University of Technology - FTP Site Statistics Property Value FTP Server ftp.tue.nl Description Eindhoven University of Technology Country Netherlands Scan Date 10/May/2014 Total Dirs 129 Total

More information

There is a general need for long-term and shared data storage: Files meet these requirements The file manager or file system within the OS

There is a general need for long-term and shared data storage: Files meet these requirements The file manager or file system within the OS Why a file system? Why a file system There is a general need for long-term and shared data storage: need to store large amount of information persistent storage (outlives process and system reboots) concurrent

More information

Backschues Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Backschues Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.backschues.net Description Backschues Archive Country Germany Scan Date 13/Apr/2014 Total Dirs 467 Total Files 1,623 Total Data 6.1 Top 20 Directories Sorted by Disk Space

More information

Type Storage Range of Values

Type Storage Range of Values University of Misan College of Engineering Department of Civil Engineering Course Title: Visual Basic Second Stage Fourth Lecture Visual Basic Data There are many types of data that we come across in our

More information

Technical University of Munich - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Technical University of Munich - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Technical University of Munich - FTP Site Statistics Property Value FTP Server ftp.ldv.e-technik.tu-muenchen.de Description Technical University of Munich Country Germany Scan Date 23/May/2014 Total Dirs

More information

National Aeronautics and Space Admin. - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

National Aeronautics and Space Admin. - FTP Site Statistics. Top 20 Directories Sorted by Disk Space National Aeronautics and Space Admin. - FTP Site Statistics Property Value FTP Server ftp.hq.nasa.gov Description National Aeronautics and Space Admin. Country United States Scan Date 26/Apr/2014 Total

More information

UNIT 2 ADVANCED FEATURES OF VISUAL BASIC 6.0

UNIT 2 ADVANCED FEATURES OF VISUAL BASIC 6.0 UNT 2 ADVANCED FEATURES OF VSUAL BASC 6.0 Structure 2.0 dentification of Some Advanced Features of Visual Basic 6.0 2.1 Objectives 2.2 Employment of Features and Some More Examples 2.2.1 Simple Animation

More information

Lecture 9: File Processing. Quazi Rahman

Lecture 9: File Processing. Quazi Rahman 60-141 Lecture 9: File Processing Quazi Rahman 1 Outlines Files Data Hierarchy File Operations Types of File Accessing Files 2 FILES Storage of data in variables, arrays or in any other data structures,

More information

CSC 453 Operating Systems

CSC 453 Operating Systems CSC 453 Operating Systems Lecture 10 : File-System Interface The Concept of A File A file is a collection of data stored on external device or A file is a collection of data entering or exiting the computer.

More information

Contents. TFTP configuration commands 28 display tftp client configuration 28 tftp-server acl 28 tftp 29 tftp client source 30 tftp ipv6 31

Contents. TFTP configuration commands 28 display tftp client configuration 28 tftp-server acl 28 tftp 29 tftp client source 30 tftp ipv6 31 Contents FTP configuration commands 1 FTP server configuration commands 1 display ftp-server 1 display ftp-user 2 free ftp user 3 ftp server acl 3 ftp server enable 4 ftp timeout 4 ftp update 5 FTP client

More information

XEmacs Project Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

XEmacs Project Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.ie.xemacs.org Description XEmacs Project Archive Country Ireland Scan Date 31/Oct/2014 Total Dirs 677 Total Files 4,166 Total Data 4.40 GB Top 20 Directories Sorted by Disk

More information

UNIX File Hierarchy: Structure and Commands

UNIX File Hierarchy: Structure and Commands UNIX File Hierarchy: Structure and Commands The UNIX operating system organizes files into a tree structure with a root named by the character /. An example of the directory tree is shown below. / bin

More information

NOTES: Procedures (module 15)

NOTES: Procedures (module 15) Computer Science 110 NAME: NOTES: Procedures (module 15) Introduction to Procedures When you use a top-down, structured program design, you take a problem, analyze it to determine what the outcome should

More information

Files

Files http://www.cs.fsu.edu/~langley/cop3353-2013-1/reveal.js-2013-02-11/02.html?print-pdf 02/11/2013 10:55 AM Files A normal "flat" file is a collection of information. It's usually stored somewhere reasonably

More information

3. Can every Do-Loop loop be written as a For-Next loop? Why or why not? 4. Name two types of files that can be opened and used in a VB program.

3. Can every Do-Loop loop be written as a For-Next loop? Why or why not? 4. Name two types of files that can be opened and used in a VB program. CE 311 K Fall 005 Second Exam - Examples Answers at the bottom. 1. What are two categories of flow control structures?. Name three logical operators in Visual Basic (VB). 3. Can every Do-Loop loop be written

More information

Contents. TFTP configuration commands 29 display tftp client configuration 29 tftp-server acl 29 tftp 30 tftp client source 32 tftp ipv6 33

Contents. TFTP configuration commands 29 display tftp client configuration 29 tftp-server acl 29 tftp 30 tftp client source 32 tftp ipv6 33 Contents FTP configuration commands 1 FTP server configuration commands 1 display ftp-server 1 display ftp-user 2 free ftp user 3 ftp server acl 3 ftp server enable 4 ftp timeout 5 ftp update 5 FTP client

More information

Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources.

Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources. Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources. Find a way to make data stored in MapInfo Professional tables accessible to anyone in

More information

Brain Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Brain Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.brain.it Description Brain Technology Country Italy Scan Date 01/Apr/2015 Total Dirs 2,574 Total Files 17,650 Total Data 4.96 GB Top 20 Directories Sorted by Disk Space Name

More information

Manual. BasicMaker SoftMaker Software GmbH

Manual. BasicMaker SoftMaker Software GmbH Manual BasicMaker 2010 1987-2010 SoftMaker Software GmbH Contents Welcome! 9 What is BasicMaker?... 9 Using the script editor 11 Starting BasicMaker... 11 Commands in the File menu of the script editor...

More information

XS4ALL Networks - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

XS4ALL Networks - FTP Site Statistics. Top 20 Directories Sorted by Disk Space XS4ALL Networks - FTP Site Statistics Property Value FTP Server ftp.xs4all.nl Description XS4ALL Networks Country Netherlands Scan Date 11/May/2014 Total Dirs 181 Total Files 877 Total Data 2.63 GB Top

More information

An Introduction to Visual Basic for Visual FoxPro Developers

An Introduction to Visual Basic for Visual FoxPro Developers An Introduction to Visual Basic for Visual FoxPro Developers Overview Whil Hentzen Hentzenwerke Corporation 980 East Circle Drive Milwaukee, WI 53217-5361 USA Voice: 414.332.9876 Fax: 414.332.9463 www.hentzenwerke.com

More information

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. List of items

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. List of items List of items ListBox Control Properties List object.list(index) [= string] List1.List(0) List1.List(1) list ItemData list AddItem list NewIndex List1.AddItem "Judy Phelps" List1.ItemData(List1.NewIndex)

More information

IKS Service GmbH - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

IKS Service GmbH - FTP Site Statistics. Top 20 Directories Sorted by Disk Space IKS Service GmbH - FTP Site Statistics Property Value FTP Server ftp.iks-jena.de Description IKS Service GmbH Country Germany Scan Date 20/Nov/2015 Total Dirs 5,112 Total Files 8,741 Total Data 1.44 GB

More information

17. Introduction to Visual Basic Programming

17. Introduction to Visual Basic Programming 17. Introduction to Visual Basic Programming Visual Basic (VB) is the fastest and easiest way to create applications for MS Windows. Whether you are an experienced professional or brand new to Windows

More information

IBM Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

IBM Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space IBM Software Archive - FTP Site Statistics Property Value FTP Server ftp.software.ibm.com Description IBM Software Archive Country United States Scan Date 15/Jan/2015 Total Dirs 224,988 Total Files 3,982,976

More information

Technical University of Munich - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Technical University of Munich - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Technical University of Munich - FTP Site Statistics Property Value FTP Server ftp.lpr.e-technik.tu-muenchen.de Description Technical University of Munich Country Germany Scan Date 23/May/2014 Total Dirs

More information

Computer Net Revision

Computer Net Revision First:In the following Form window, if it is required to store entries from the user in variables. Define the corresponding Data Type for each input. 1. 2. 3. 4. 1 2 3 4 1- Less number of bytes means more

More information

Managing the ACE Software

Managing the ACE Software CHAPTER 4 This chapter describes how to manage the software running on the Cisco 4700 Series Application Control Engine (ACE) appliance and contains the following sections: Saving Configuration Files Loading

More information

Lab 4 File System. CS140 February 27, Slides adapted from previous quarters

Lab 4 File System. CS140 February 27, Slides adapted from previous quarters Lab 4 File System CS140 February 27, 2015 Slides adapted from previous quarters Logistics Lab 3 was due at noon today Lab 4 is due Friday, March 13 Overview Motivation Suggested Order of Implementation

More information

Perl for Biologists. Session 6 April 16, Files, directories and I/O operations. Jaroslaw Pillardy

Perl for Biologists. Session 6 April 16, Files, directories and I/O operations. Jaroslaw Pillardy Perl for Biologists Session 6 April 16, 2014 Files, directories and I/O operations Jaroslaw Pillardy Perl for Biologists 1.1 1 Reminder: What is a Hash? Array Hash Index Value Key Value 0 apple red fruit

More information

Chapter 10: File-System Interface

Chapter 10: File-System Interface Chapter 10: File-System Interface Objectives: To explain the function of file systems To describe the interfaces to file systems To discuss file-system design tradeoffs, including access methods, file

More information

Chapter 3. Shortcuts

Chapter 3. Shortcuts Chapter 3 Shortcuts Link Files Practical Exercise - Manually Decoding Link Files 1. Use WinHEX to open up the file named \Student Files\03_Link Files\c-3.txt.lnk. 2. First, let s look at the file header

More information

Atari Games - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Atari Games - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.infogrames.net Description Atari Games Country United States Scan Date 02/Apr/2015 Total Dirs 488 Total Files 1,547 Total Data 26.66 GB Top 20 Directories Sorted by Disk Space

More information