You should find the powerpoint I used in class attached at the bottom of this entry. Here are some of the example I used in class.
Squeakland – the home of etoys
Sugar on a stick – OLPC’s OS
Please see the PT ICM blog for minecraft
The code we have created so far at the end of the period is given below, please see if you can finish it off.
Option ExplicitPrivate Sub CmdStart_Click()‘Set up variablesDim multiple As Integer‘Get Multiplier from userCall GetValue(multiple)‘Display tableCall DisplayTableEnd SubPrivate Sub GetValue(ByRef intvalue As Integer)intvalue = InputBox(“Please enter the value”)End SubPrivate Sub DisplayTable()End Sub