» Home » VB Fibre
Site
News
Files

Visual Basic
Strings
Math
General
Properties
Memory
Methods

Search
Testing

Inline ASM-VB
Strings
Math
General
Memory

Search
Using inline ASM
Submit!

To call or not to call? (21-02-2004)
The difference between call or no call is very small.

Specify ByRef explictly (21-02-2004)
A very little speed increase. I expected a larger increase...

Use Byref or Byval? (incorrect version) (21-02-2004)
ByRef arguments are 1/3 faster than Byval.

Use local module instead external (21-02-2004)
Calling external modules often is certainly slower than calling local ("internal") modules.

Less procedure calling is faster (21-02-2004)
Well, you can see it surely takes a lot time to call a sub/function.

Byref returned vs. Function returned (21-02-2004)
Maybe not everybody knows it, but standardly all arguments passed to a method are ByRef.

Methods vs Inline (21-02-2004)
About 25% gain here, using Inline code.

Variant returning functions (21-02-2004)
Another proof how slow variants really are.