File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
OldVersions/README/English/1 Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ ***
3
+
4
+ ### Learning VBScript
5
+
6
+ ![ /VBSccript_file_format_icon.png] ( /VBSccript_file_format_icon.png )
7
+
8
+ I know very little about VBScript, and I don't know the DotNet version.
9
+
10
+ I only know how to make fake error messages and comments at the moment.
11
+
12
+ #### Visual Basic fake dialog boxes
13
+
14
+ ``` vb
15
+ x=msgbox( "Add an error description here" , 2 + 16 , "2+16 dialog box" )
16
+ x=msgbox( "Add an error description here" , 2 + 32 , "2+32 dialog box" )
17
+ x=msgbox( "Add an error description here" , 2 + 48 , "2+48 dialog box" )
18
+ x=msgbox( "Add an error description here" , 2 + 64 , "2+64 dialog box" )
19
+ ```
20
+
21
+ I don't remember what the codes signify, I just use ` 16 ` ` 32 ` ` 48 ` and ` 64 ` because it gives a different icon.
22
+
23
+ #### Visual Basic comments
24
+
25
+ ``` vb
26
+ ' This is a comment in VBScript
27
+ ```
28
+
29
+ Visual Basic comments are very simple.
30
+
31
+ ***
You can’t perform that action at this time.
0 commit comments