Last change
on this file since 111862 was
111862,
checked in by arnaud.berard@…, 14 months ago
|
avec svn add c'est mieux
-theme
|
-
Property svn:eol-style set to
native
|
File size:
1.5 KB
|
Line | |
---|
1 | <!doctype html> |
---|
2 | |
---|
3 | <title>CodeMirror: VBScript mode</title> |
---|
4 | <meta charset="utf-8"/> |
---|
5 | <link rel=stylesheet href="../../doc/docs.css"> |
---|
6 | |
---|
7 | <link rel="stylesheet" href="../../lib/codemirror.css"> |
---|
8 | <script src="../../lib/codemirror.js"></script> |
---|
9 | <script src="vbscript.js"></script> |
---|
10 | <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style> |
---|
11 | <div id=nav> |
---|
12 | <a href="https://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a> |
---|
13 | |
---|
14 | <ul> |
---|
15 | <li><a href="../../index.html">Home</a> |
---|
16 | <li><a href="../../doc/manual.html">Manual</a> |
---|
17 | <li><a href="https://github.com/codemirror/codemirror">Code</a> |
---|
18 | </ul> |
---|
19 | <ul> |
---|
20 | <li><a href="../index.html">Language modes</a> |
---|
21 | <li><a class=active href="#">VBScript</a> |
---|
22 | </ul> |
---|
23 | </div> |
---|
24 | |
---|
25 | <article> |
---|
26 | <h2>VBScript mode</h2> |
---|
27 | |
---|
28 | |
---|
29 | <div><textarea id="code" name="code"> |
---|
30 | ' Pete Guhl |
---|
31 | ' 03-04-2012 |
---|
32 | ' |
---|
33 | ' Basic VBScript support for codemirror2 |
---|
34 | |
---|
35 | Const ForReading = 1, ForWriting = 2, ForAppending = 8 |
---|
36 | |
---|
37 | Call Sub020_PostBroadcastToUrbanAirship(strUserName, strPassword, intTransmitID, strResponse) |
---|
38 | |
---|
39 | If Not IsNull(strResponse) AND Len(strResponse) = 0 Then |
---|
40 | boolTransmitOkYN = False |
---|
41 | Else |
---|
42 | ' WScript.Echo "Oh Happy Day! Oh Happy DAY!" |
---|
43 | boolTransmitOkYN = True |
---|
44 | End If |
---|
45 | </textarea></div> |
---|
46 | |
---|
47 | <script> |
---|
48 | var editor = CodeMirror.fromTextArea(document.getElementById("code"), { |
---|
49 | lineNumbers: true, |
---|
50 | indentUnit: 4 |
---|
51 | }); |
---|
52 | </script> |
---|
53 | |
---|
54 | <p><strong>MIME types defined:</strong> <code>text/vbscript</code>.</p> |
---|
55 | </article> |
---|
Note: See
TracBrowser
for help on using the repository browser.