Always remain updated about current software development trends

Articles having tag: VBA

Problem with Microsoft.ACE.OLEDB.12.0 when source file has more than 32k rows

Solution to my pb:It seems that there is no EOF if they are more than 32K rows.To detect the EOF and exit the 'while' loop I need to check if the data in the excel record set is not null. stillData = True While (Not rsEX.EOF And stillData) If IsNull(rsEX!Date)...

A quick & simple VBA FIFO Queue Implementation

This is an alternative for "A quick & simple VBA FIFO Queue Implementation"

Manage business logic in Access forms

Avoid event spaghetti code when business logic becomes complex.

Functors in VBA

This articles describes the implementation of functors (of sorts) for VBA using C++ ATL.

VBA Extend

Format, add line numbers, error handler and expose some dot Net library to VBA

VBE CreateToolWindow

Create a custom dockable window in the VBA editor.

Functors in VBA

This articles describes the implementation of functors (of sorts) for VBA using C++ ATL.