How to Call a function - ANSWERS-Variable = Output(Input)
What is a list box? - ANSWERS-A drop down menu so you can select
different things
How to Add items to a list box - ANSWERS-
List1.Items.Add(ArrayOrVariable)
How to Put a Picture in a picturebox - ANSWERS-
Picture1.Load("FileName")
How to create a basic array - ANSWERS-Dim ArrayName() As
DataType
How To Put data in an array - ANSWERS-ArrayName(Spot) = Data
How To Pull Data from an array - ANSWERS-variable =
ArrayName(Spot)
How do you change the size of an array - ANSWERS-ReDim
ArrayName(0 To UpperBound)
END OF
PAGE 1
, MMET 383 EXAM 2 LATEST
How to change the size of an array and keep previous data -
ANSWERS-ReDim Preserve ArrayName(0 to UpperBound)
How to Open/Close a sequential File - ANSWERS-
FileOpen(FileNumber, FileName, OpenMode.Mode)
FileClose(FileNumber)
What are the different modes for sequential files - ANSWERS-Input-
Read
Output-Write
Random-Read and Write
Append- add onto the end
How to read from a sequential file - ANSWERS-Input(FileNumber,
VariableToAssignDataTo)
How to read an entire file - ANSWERS-use EOF function
Writing to a Sequential File - ANSWERS-Write(FileNumber, value)
WriteLIne(FileNumber, value)
END OF
PAGE 2