Category Archives: MS Excel

VBA – Storing Information In The Registry

How can we store information:

  • Settings
  • Preferences
  • Object States and positions

for a VBA solution, whether that be an Access database, Excel workbook, Word Document …?

What about storing the information in the registry!

That’s the subject I would like to broach in this article.

Continue reading

Excel – Adding a Progress Bar

I was recently doing some work for a client in which I build an Excel WorkBook that processed a series of large CSV files to clean them up, format the content, … because of their size the process could take several minutes and they contacted me thinking it wasn’t working and that they thought the process had hung.

So I set out to provide them with a visual display of the process’ progress, a progress bar!

Continue reading

MS Access – VBA – Kill a Process

Every once in a while, programs do not shutdown properly and thus cause headaches. So it can become necessary to terminate the process. Below are a couple different approaches you can employ to terminate, forcibly close, a process/program.
 
Continue reading