Difference between Visual Basic and VBA - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T06:36:22Zhttp://stackoverflow.com/feeds/question/993300http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/993300/difference-between-visual-basic-and-vba13Difference between Visual Basic and VBAThomas Geritzma2009-06-14T17:43:27Z2009-06-14T23:10:58Z
<p>What is the difference between the two. I always thought VBA is somewhat 'crippled' version of VB, but when a friend asked me the other day I had no idea what the actual differences are.</p>
<p>Also, when you use, for example, Excel, is that VB or VBA ?</p>
http://stackoverflow.com/questions/993300/difference-between-visual-basic-and-vba/993319#9933191Answer by streetpc for Difference between Visual Basic and VBAstreetpc2009-06-14T17:50:12Z2009-06-14T17:50:12Z<p>It's VBA. VBA means <a href="http://en.wikipedia.org/wiki/Visual%5FBasic%5Ffor%5FApplications" rel="nofollow">Visual Basic for Applications</a>, and it is used for macros on Office documents. It doesn't have access to VB.NET features, so it's more like a modified version of VB6, with add-ons to be able to work on the document (like Worksheet in VBA for Excel).</p>
http://stackoverflow.com/questions/993300/difference-between-visual-basic-and-vba/993322#9933221Answer by Victor for Difference between Visual Basic and VBAVictor2009-06-14T17:50:59Z2009-06-14T17:50:59Z<p>VBA stands for Visual Basic For Applications and its a Visual Basic implementation intended to be used in the Office Suite.</p>
<p>The difference between them is that VBA is embedded inside Office documents (its an Office feature). VB is the ide/language for developing applications.</p>
http://stackoverflow.com/questions/993300/difference-between-visual-basic-and-vba/993327#9933274Answer by fretje for Difference between Visual Basic and VBAfretje2009-06-14T17:52:33Z2009-06-14T18:05:11Z<p>VBA stands for <a href="http://msdn.microsoft.com/en-us/isv/bb190538.aspx" rel="nofollow">Visual Basic for Applications</a> and so is the small "for applications" scripting brother of VB.
VBA is indeed available in Excel, but also in the other office applications.</p>
<p>With VB, one can create a stand-alone windows application, which is not possible with VBA.</p>
<p>It is possible for developers however to "embed" VBA in their own applications, as a scripting language to automate those applications.</p>
<p><strong>Edit</strong>: From the <a href="http://msdn.microsoft.com/en-us/isv/bb190540.aspx" rel="nofollow">VBA FAQ</a>:</p>
<blockquote>
<p><strong>Q.</strong> What is Visual Basic for Applications?</p>
<p><strong>A.</strong> Microsoft Visual Basic for Applications (VBA) is an embeddable programming environment designed to enable developers to build custom solutions using the full power of Microsoft Visual Basic. Developers using applications that host VBA can automate and extend the application functionality, shortening the development cycle of custom business solutions.</p>
</blockquote>
<p>Note that VB.NET is even another language, which only shares syntax with VB.</p>
http://stackoverflow.com/questions/993300/difference-between-visual-basic-and-vba/993348#9933481Answer by Dario for Difference between Visual Basic and VBADario2009-06-14T18:00:47Z2009-06-14T18:00:47Z<p>Do you want compare VBA with VB-Classic (VB6..) or VB.NET?</p>
<p>VBA (Visual Basic for Applications) is a vb-classic-based script language embedded in Microsoft Office applications. I think it's language features are similar to those of VB5 (it just lacks some few builtin functions), but:</p>
<p>You have access to the office document you wrote the VBA-script for and so you can e.g.</p>
<ul>
<li>Write macros (=automated routines for little recurring tasks in your office-work)</li>
<li>Define new functions for excel-cell-formula</li>
<li>Process office data</li>
</ul>
<p>Example: Set the value of an excel-cell</p>
<pre><code>ActiveSheet.Cells("A1").Value = "Foo"
</code></pre>
<p>VBC and -.NET are no script languages. You use them to write standalone-applications with separate IDE's which you can't do with VBA (VBA-scripts just "exist" in Office)</p>
<p>VBA has nothing to do with VB.NET (they just have a similar syntax).</p>
http://stackoverflow.com/questions/993300/difference-between-visual-basic-and-vba/993427#99342711Answer by Tomalak for Difference between Visual Basic and VBATomalak2009-06-14T18:28:44Z2009-06-14T18:33:48Z<p>For nearly all programming purposes, VBA and VB 6.0 are the same thing.</p>
<p>VBA cannot compile your program into an executable binary. You'll always need the host (a Word file and MS Word, for example) to contain and execute your project. You'll also not be able to create COM DLLs with VBA.</p>
<p>Apart from that, there is a difference in the IDE - the VB 6.0 IDE is more powerful in comparison. On the other hand, you have tight integration of the host application in VBA. Application-global objects (like "ActiveDocument") and events are available without declaration, so application-specific programming is straight-forward.</p>
<p>Still, nothing keeps you from firing up Word, loading the VBA IDE and solving a problem that has no relation to Word whatsoever. I'm not sure if there is anything that VB 6.0 can do (technically), and VBA cannot. I'm looking for a comparison sheet on the MSDN though.</p>
http://stackoverflow.com/questions/993300/difference-between-visual-basic-and-vba/994000#9940001Answer by anonymousType for Difference between Visual Basic and VBAanonymousType2009-06-14T23:10:58Z2009-06-14T23:10:58Z<p>Actually VBA can be used to compile dlls.
The Office 2000 and Office XP Developer editions included a VBA editor that could be used for making dlls for use as COM Addins.</p>
<p>This functionaltiy was removed in later versions (2003 and 2007) with the advent of the VSTO software, although obviously you could still create COM addins in a simliar fashion without the sue of VSTO (or VS.Net) by using VB6 IDE.</p>