Skip to content

Commit 8fec0cf

Browse files
authored
README_V2.md
An archive of the 2nd version of the README.md file for this directory.
1 parent 93c99e6 commit 8fec0cf

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
***

0 commit comments

Comments
 (0)