Microsoft Access MVP Websites

Some of the most valuable websites (especially regarding Access of course) are those of many of my fellow MVPs (and a few other exceptional individuals).  So I thought it intelligent to try and compile them here.  If you are looking for some of the very best online resources, these are the sites to start with!  Packed with invaluable information, explanations, sample databases to quickly learn from, these sites are the ‘crème de la crème’!!!

Name Website(s)
AD Tejpal http://www.rogersaccesslibrary.com/forum/tejpal-ad_forum45.html
Albert Kallal http://www.kallal.ca/
Alex Dybenko http://alex.dybenko.com/
http://accessblog.net/
Allen Browne http://www.allenbrowne.com/tips.html
Anders Ebro (TheSmileyCoder) http://thesmileycoder.com/
Armen Stein https://jstreettech.com/resources/
Arvin Meyer http://www.datastrat.com/
http://www.accessmvp.com/Arvin/
Bill Mosca
Bob Larson
Boyd Trimmell (HiTech Coach)
Candice Tripp http://www.candace-tripp.net/
Crystal Long (strive4peace) http://www.youtube.com/user/LearnAccessByCrystal/videos?view=0
http://www.rogersaccesslibrary.com/forum/long-crystal_forum71.html
http://www.youtube.com/user/LearnByCrystal
Daniel Pineault http://www.cardaconsultants.com/
http://www.devhut.net/
Dev Ashish http://access.mvps.org/access/
Dirk Goldgar http://www.datagnostics.com/tips.html
Douglas Steele http://www.accessmvp.com/DJSteele/AccessIndex.html
Duane Hookom http://www.access.hookom.net/
George Hepworth http://www.gpcdata.com/
Gina Whipp http://www.access-diva.com/tips.html
Glenn Lloyd
Helen Feddema http://www.helenfeddema.com/
Jeff Conrad http://www.accessmvp.com/JConrad/accessjunkie.html
John Viescas http://viescas.com/category/tips/
Karl Donaubauer https://www.donkarl.com/
Ken Snell http://www.accessmvp.com/KDSnell/default.htm
Larry Linson http://accdevel.tripod.com/
Luke Chung http://www.fmsinc.com/free/
Martin Green http://www.fontstuff.com/access/index.htm
Mike Wolfe https://nolongerset.com/
Olaf Rabbachin
Ollie Stohr (freakazeud)
Patrick Wood
Roger Carlson http://www.rogersaccesslibrary.com/
http://rogersaccessblog.blogspot.ca/
Sandra Daigle http://www.accessmvp.com/SDaigle/
Scott Diamond http://www.diamondassoc.com/
Stephen Lebans http://www.lebans.com/
Steve Schapel
Teresa Hennig http://www.seattleaccess.org/
theDBguy http://www.accessmvp.com/thedbguy/
https://thedbguy.blogspot.com/
Tom Wickerath http://www.accessmvp.com/TWickerath/
Tony Toews http://www.granite.ab.ca/access/tipsindex.htm
Tom van Stiphout http://accessmvp.com/TomVanStiphout/index.htm
Paul Baldarelli http://www.baldyweb.com

2 responses on “Microsoft Access MVP Websites

  1. Hugh Schkok

    How do I initiate a fucntion from a button on a form. Older versions it was simply point the click_event at a procedure, Function …. and it kicked off. Please help

    1. Daniel Pineault Post author

      Nothing has changed on this front.

      Ensure your procedure is in a standard modules
      Ensure your procedure isn’t declared as Private
      Double check the spelling of the procedure your are trying to call
      Then call it in your Click Event by doing

      Call YourProcedureName(InputVariable1, InputVariable2, ...)