<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://brwiki2.brulescorp.com/brwiki2/index.php?action=history&amp;feed=atom&amp;title=Visual_Basic_6</id>
	<title>Visual Basic 6 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://brwiki2.brulescorp.com/brwiki2/index.php?action=history&amp;feed=atom&amp;title=Visual_Basic_6"/>
	<link rel="alternate" type="text/html" href="https://brwiki2.brulescorp.com/brwiki2/index.php?title=Visual_Basic_6&amp;action=history"/>
	<updated>2026-04-30T03:20:19Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://brwiki2.brulescorp.com/brwiki2/index.php?title=Visual_Basic_6&amp;diff=3185&amp;oldid=prev</id>
		<title>Laura: Created page with &quot;&#039;&#039;&#039;Visual Basic 6&#039;&#039;&#039; (a.k.a. &#039;&#039;&#039;VB6&#039;&#039;&#039;) is an out-of-date programming language developed by Microsoft. Though it is very popular and well known.   Here is a reference chart wh...&quot;</title>
		<link rel="alternate" type="text/html" href="https://brwiki2.brulescorp.com/brwiki2/index.php?title=Visual_Basic_6&amp;diff=3185&amp;oldid=prev"/>
		<updated>2013-05-18T16:27:54Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Visual Basic 6&amp;#039;&amp;#039;&amp;#039; (a.k.a. &amp;#039;&amp;#039;&amp;#039;VB6&amp;#039;&amp;#039;&amp;#039;) is an out-of-date programming language developed by Microsoft. Though it is very popular and well known.   Here is a reference chart wh...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Visual Basic 6&amp;#039;&amp;#039;&amp;#039; (a.k.a. &amp;#039;&amp;#039;&amp;#039;VB6&amp;#039;&amp;#039;&amp;#039;) is an out-of-date programming language developed by Microsoft. Though it is very popular and well known. &lt;br /&gt;
&lt;br /&gt;
Here is a reference chart which list VB6 functions and commands and their equivalents in [[Business Rules!]]. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! BR! &lt;br /&gt;
! VB6&lt;br /&gt;
|-&lt;br /&gt;
| &amp;amp;nbsp;! &lt;br /&gt;
| &amp;#039;&lt;br /&gt;
|-&lt;br /&gt;
| A$(3:4) &lt;br /&gt;
| mid(A$,3,2) [http://www.vb6.us/tutorials/vb6-string-functions]&lt;br /&gt;
Left&lt;br /&gt;
Right&lt;br /&gt;
|-&lt;br /&gt;
| Ctrl+A &lt;br /&gt;
| Ctrl+Break &lt;br /&gt;
(only works during development time, not after being compiled) &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[Chr$]] &lt;br /&gt;
| Chr$&lt;br /&gt;
|-&lt;br /&gt;
| [[Date$]] &lt;br /&gt;
| Format$ [http://www.vb6.us/tutorials/formating-dates-and-times-vb6] and Now&lt;br /&gt;
|-&lt;br /&gt;
| [[Env$]](&amp;quot;[variable]&amp;quot;) &lt;br /&gt;
| Environ$(&amp;quot;[variable]&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
| [[Cnvrt$]] &lt;br /&gt;
| Format&lt;br /&gt;
|-&lt;br /&gt;
| [[DimOnly]] &lt;br /&gt;
| Option Explicit &lt;br /&gt;
(similar but different in scope) &lt;br /&gt;
|-&lt;br /&gt;
| [[LTrm$]] &lt;br /&gt;
| LTrim$&lt;br /&gt;
|-&lt;br /&gt;
| [[LwrC$]] &lt;br /&gt;
| LCase$&lt;br /&gt;
|-&lt;br /&gt;
| [[Pos]] &lt;br /&gt;
| InStr and InstrRev&lt;br /&gt;
|-&lt;br /&gt;
| [[RTrm$]] &lt;br /&gt;
| RTrim$&lt;br /&gt;
|-&lt;br /&gt;
| [[SRep$]] &lt;br /&gt;
| Replace$&lt;br /&gt;
|-&lt;br /&gt;
| [[Trim$]] &lt;br /&gt;
| Trim$&lt;br /&gt;
|-&lt;br /&gt;
| [[UprC$]] &lt;br /&gt;
| UCase$&lt;br /&gt;
|-&lt;br /&gt;
| [[Max]] &lt;br /&gt;
| (no equivalent)&lt;br /&gt;
|-&lt;br /&gt;
| Print [[Bell]]; &lt;br /&gt;
| Beep&lt;br /&gt;
|-&lt;br /&gt;
| UDim(xArray) &lt;br /&gt;
| CStr(xArray.length)&lt;br /&gt;
|-&lt;br /&gt;
| [[Option Base 1]] and [[Option Base 0]] &lt;br /&gt;
| &amp;quot;Option Base 1, will force VB to default the lower bound of arrays to 1. The Option Base statement can only have the number 0 or 1 after it, and 0 is the default – so you never need to code Option Base 0&amp;quot; [http://www.vb6.us/tutorials/understanding-arrays] Note that the defaults in BR! and VB6 are opposite.&lt;br /&gt;
|-&lt;br /&gt;
| [[Mat]] &lt;br /&gt;
| To change the size of an array use &amp;#039;&amp;#039;Redim&amp;#039;&amp;#039; or &amp;#039;&amp;#039;ReDim Preserve&amp;#039;&amp;#039; (to also keep the existing values) [http://visualbasic.freetutes.com/learn-vb6/lesson6.html]&lt;br /&gt;
|-&lt;br /&gt;
| [[Else If]] &lt;br /&gt;
| ElseIf (note the missing space)&lt;br /&gt;
|-&lt;br /&gt;
| [[Status]] Stacks &lt;br /&gt;
| Call Stack available from the Debug Toolbar&lt;br /&gt;
|-&lt;br /&gt;
| [[Free|Free]] &lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/ey1w10ch%28v=vs.80%29.aspx Kill]&lt;br /&gt;
|-&lt;br /&gt;
|if [[exists]](&amp;quot;C\What\File.txt&amp;quot;)&amp;lt;&amp;gt;0 then&lt;br /&gt;
| If Dir(&amp;quot;C\What\File.txt&amp;quot;)&amp;lt;&amp;gt;&amp;quot;&amp;quot; Then&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Programming Language]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Laura</name></author>
	</entry>
</feed>