| 5 |
lars |
1 |
<!doctype html>
|
|
|
2 |
<title>CodeMirror: VBScript mode</title>
|
|
|
3 |
<meta charset="utf-8" />
|
|
|
4 |
<link rel=stylesheet href="../../doc/docs.css">
|
|
|
5 |
<link rel="stylesheet" href="../../lib/codemirror.css">
|
|
|
6 |
<script src="../../lib/codemirror.js"></script>
|
|
|
7 |
<script src="vbscript.js"></script>
|
|
|
8 |
<style type="text/css">
|
|
|
9 |
.CodeMirror {
|
|
|
10 |
border-top: 1px solid black;
|
|
|
11 |
border-bottom: 1px solid black;
|
|
|
12 |
}
|
|
|
13 |
</style>
|
|
|
14 |
<div id=nav>
|
|
|
15 |
<a href="http://codemirror.net">
|
|
|
16 |
<h1>CodeMirror</h1>
|
|
|
17 |
<img id=logo src="../../doc/logo.png">
|
|
|
18 |
</a>
|
|
|
19 |
<ul>
|
|
|
20 |
<li>
|
|
|
21 |
<a href="../../index.html">Home</a>
|
|
|
22 |
<li>
|
|
|
23 |
<a href="../../doc/manual.html">Manual</a>
|
|
|
24 |
<li>
|
|
|
25 |
<a href="https://github.com/codemirror/codemirror">Code</a>
|
|
|
26 |
</ul>
|
|
|
27 |
<ul>
|
|
|
28 |
<li>
|
|
|
29 |
<a href="../index.html">Language modes</a>
|
|
|
30 |
<li>
|
|
|
31 |
<a class=active href="#">VBScript</a>
|
|
|
32 |
</ul>
|
|
|
33 |
</div>
|
|
|
34 |
<article>
|
|
|
35 |
<h2>VBScript mode</h2>
|
|
|
36 |
<div>
|
|
|
37 |
<textarea id="code" name="code"> ' Pete Guhl ' 03-04-2012 ' ' Basic VBScript support for codemirror2 Const ForReading = 1, ForWriting = 2, ForAppending = 8 Call Sub020_PostBroadcastToUrbanAirship(strUserName, strPassword, intTransmitID, strResponse) If Not IsNull(strResponse)
|
|
|
38 |
AND Len(strResponse) = 0 Then boolTransmitOkYN = False Else ' WScript.Echo "Oh Happy Day! Oh Happy DAY!" boolTransmitOkYN = True End If </textarea>
|
|
|
39 |
</div>
|
|
|
40 |
<script>
|
|
|
41 |
var editor = CodeMirror.fromTextArea(document.getElementById("code"),
|
|
|
42 |
{
|
|
|
43 |
lineNumbers: true,
|
|
|
44 |
indentUnit: 4
|
|
|
45 |
});
|
|
|
46 |
</script>
|
|
|
47 |
<p>
|
|
|
48 |
<strong>MIME types defined:</strong> <code>text/vbscript</code>.</p>
|
|
|
49 |
</article>
|