Difference between revisions of "Main Page"

From vb24
Jump to navigation Jump to search
Line 6: Line 6:
 
* [[FAQ]]
 
* [[FAQ]]
  
== VBA ==
+
== Flavours ==
 
+
* [[Visual Basic for Applications]]
=== Conventions ===
+
* [[Visual Basic]]
* [[VBA Code Guide|Code Guide]]
+
* [[Visual Basic .NET]]
* [[VBA FAQ|FAQ]]
 
 
 
=== Concepts ===
 
* [[VBA Module|Modules]]
 
* [[VBA Class|Classes]]
 
* [[VBA Event|Events]]
 
* [[VBA Interface|Interfaces]]
 
* [[VBA Convention over Configuration|Convention over Configuration]]
 
 
 
=== Code ===
 
* [[Developer Tool Bar]]
 
* [[Array functions]]
 
* [[VBA HTML|HTML]]
 
* [[VBA XML|XML]]
 
* [[Data Abstraction Layer]]
 
* [[Status]]
 
 
 
=== Problems and solutions ===
 
==== Double code execution ====
 
;Problem
 
:The function provided with the OnAction property is executed twice.
 
;Solution
 
:Put the function name in single quotes:
 
<syntaxhighlight lang="vb">
 
.OnAction="'functionname'"
 
</syntaxhighlight>
 

Revision as of 14:52, 7 February 2015

This site is all about Visual Basic and Visual Basic for Applications.

Conventions

Flavours