You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: reference/1015.html
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ <h1>DEFINEKEY</h1>
73
73
<ahref="/pages/console.html">Console</a>
74
74
</p>
75
75
</div>
76
-
<p>Binds a keystroke to a user defined function. To unbind the keystroke definition pass 0 as the <code>sub</code> argument.</p>
76
+
<p>Binds a keycode <code>k</code>to a user defined sub routine <code>sub</code>. When the key is pressed, the coresponding sub routine will be called. To unbind the keycode definition pass <code>0</code> as the <code>sub</code> argument.</p>
77
77
<p>Keycodes for PC keyboard</p>
78
78
<table>
79
79
<thead>
@@ -177,7 +177,7 @@ <h1>DEFINEKEY</h1>
177
177
</tr>
178
178
</tbody>
179
179
</table>
180
-
<h2id="examples">Examples</h2>
180
+
<h3id="examples">Examples</h3>
181
181
<p>Example 1: Bind keystroke for left and right arrow key</p>
<p>Example 4: This example is outdated and just a reference for buttons in PALM OS</p>
264
+
<h3id="example-4-this-example-is-outdated-and-just-a-reference-for-buttons-in-palm-os">Example 4: This example is outdated and just a reference for buttons in PALM OS</h3>
<spanid="cb4-2"><ahref="#cb4-2" aria-hidden="true"></a><spanclass="co">' * You may Include "definekey_const.bas" file in another file to make your code more clear.</span></span>
Copy file name to clipboardExpand all lines: reference/1429.html
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -65,15 +65,15 @@ <h4>SmallBASIC</h4>
65
65
</div>
66
66
<divclass="article">
67
67
<h1>SHOWPAGE</h1>
68
-
<blockquote>SHOWPAGE</blockquote>
68
+
<blockquote>SHOWPAGE ([n])</blockquote>
69
69
<divclass="siteSub">
70
70
<p>
71
71
<ahref="/">Home</a> >
72
72
<ahref="/pages/reference.html">Reference</a> >
73
73
<ahref="/pages/graphics.html">Graphics</a>
74
74
</p>
75
75
</div>
76
-
<p>This command is used to display pending graphics operations allowing for smooth animations.</p>
76
+
<p>This command is used to display pending graphics operations allowing for smooth animations. If SHOWPAGE is used, the internal SmallBASIC graphics update mechanism is set to manual mode. To enable automatic mode again, call SHOWPAGE with the optional parameter <code>n = 1</code>. This is useful, if the FORM command is used to display GUI elements.</p>
0 commit comments