@@ -162,7 +162,7 @@ Class Class131e78f92efd4581b45c74fe89d347c9
162
162
' AppActivate can also use the return value of the Shell function.
163
163
' Shell runs a new instance of Notepad.
164
164
notepadID = Shell( "C:\WINNT\NOTEPAD.EXE" , AppWinStyle.NormalFocus)
165
- ' Activate the new instance of Notepad.
165
+ ' Activate the new instance of Notepad.
166
166
AppActivate(notepadID)
167
167
' </snippet11>
168
168
End Sub
@@ -673,6 +673,19 @@ Class Class9045d32008404af991a27cbcb5d8e971
673
673
End Sub
674
674
' </snippet42>
675
675
676
+ Public Sub Method43()
677
+ ' <snippet43>
678
+ Dim MyArray( 4 , 9 ) As Integer
679
+ ' </snippet43>
680
+ End Sub
681
+
682
+ Public Sub Method44()
683
+ ' <snippet44>
684
+ Dim hellow As String = "Hello World"
685
+ FilePut( 1 , hellow)
686
+ ' </snippet44>
687
+ End Sub
688
+
676
689
End Class
677
690
678
691
Class Class921c78db83274a058ea0008091637cb1
@@ -725,7 +738,7 @@ Class Class9ed3ccc23d9746eba40ee12179d14e1d
725
738
Public Sub Method48()
726
739
Dim MyRecord As System.ValueType
727
740
MyRecord = Nothing
728
- ' <snippet48>
741
+ ' <snippet48>
729
742
FileOpen( 1 , "TESTFILE" , OpenMode.Random)
730
743
Do While Not EOF( 1 )
731
744
WriteLine( 1 , Seek( 1 )) ' Write record number.
@@ -977,7 +990,7 @@ Class Classd06c20ec71d445b5b34e9d68cdc6f593
977
990
aBool = False
978
991
aDate = DateTime.Parse( "February 12, 1969" )
979
992
980
- ' Dates and Booleans are translated using locale settings of
993
+ ' Dates and Booleans are translated using locale settings of
981
994
' your system.
982
995
WriteLine( 1 , aBool & " is a Boolean value." )
983
996
WriteLine( 1 , aDate & " is a date." )
0 commit comments