Microsoft KB Archive/38077: Difference between revisions

From BetaArchive Wiki
m (Text replacement - "<" to "<")
m (Text replacement - ">" to ">")
 
Line 34: Line 34:


The example on Page 77 of the &quot;QuickBASIC for Macintosh: Language Reference&quot; manual is incorrect. The following line
The example on Page 77 of the &quot;QuickBASIC for Macintosh: Language Reference&quot; manual is incorrect. The following line
<pre class="codesample">  WHILE DIALOB(0) <&gt; 1 :WEND
<pre class="codesample">  WHILE DIALOB(0) <> 1 :WEND
                 </pre>
                 </pre>
should read as follows:
should read as follows:
<pre class="codesample">  WHILE DIALOG(0) <&gt; 1 :WEND
<pre class="codesample">  WHILE DIALOG(0) <> 1 :WEND
                 </pre>
                 </pre>



Latest revision as of 10:19, 21 July 2020

Knowledge Base


DIALOB Should Be DIALOG on Page 77 "QB for Macintosh Ref"

Article ID: 38077

Article Last Modified on 11/21/2006

This article was previously published under Q38077

SUMMARY

The example on Page 77 of the "QuickBASIC for Macintosh: Language Reference" manual is incorrect. The following line

   WHILE DIALOB(0) <> 1 :WEND
                

should read as follows:

   WHILE DIALOG(0) <> 1 :WEND
                


Additional query words: MQuickB

Keywords: KB38077