Wednesday, February 15, 2023

The Summer of His Life by Mark Soderstrom

Want a good read? Try The Summer of His Life 

In 1969, twelve-year-old Mike is forced to spend the entire summer at a cottage on a small lake in Michigan with his ancient aunt and uncle. Most days are spent pursuing adventure with his buddies, seeking to emulate their son, a tough Marine in Vietnam, but when the Marine son is declared Missing In Action, Mike’s vision of government, God, and his own life is shattered. His joy-filled expeditions into the wild become pointless in the light of his cousin’s sacrifice. However, when Mike learns that the father of the girl-next-door has a violent secret, Mike knows exactly what to do. Bravery and manhood are merely doing what he knows he should do. Of course, the story is about Mike, but it is also about a unique time and a wondrous place viewed through the enchantment of a 12-year-old’s imagination. We hear wild stories of manly exaggeration, but his painfully written journal takes us inside a crumbling, fragile heart. It is the summer of his life, and sometimes it takes tears to let in the joy.


Tuesday, September 1, 2020

* Index to Roger’s Access Blog *

Access Basics
Compacting Databases
Domain Functions Demystified
Date Stuff
 Database Design Basics
What’s Wrong With Repeated Columns?
Normalizing Repeating Columns

Queries
Select Queries Series:
Subqueries

Union Query
Data Definition Language (DDL) Queries:

Top Queries Revealed:
Count Distinct In Access Series:
Miscellaneous
Reports
VBA/Programming
Automation




Web Databases
Unfortunately, as of Access 2019, Access Web Apps have been discontinued.  From the March 2017 announcement from Microsoft:

“We no longer recommend Access Services for new apps. This feature will be retired from Office 365. We will stop creation of new Access-based apps in SharePoint Online starting June 2017 and shut down any remaining apps by April 2018.”

Sunday, March 17, 2019

Domain Function Builder

Application to help build domain functions including:
  1. Correctly formatted Criteria
  2. DMax Sequential numbering
  3. Numbered Query
  4. Running Sum Query
  5. Rolling Average Query
  6. Difference Between Query
  7. Infer End-Date Query
You can download the file here:DomainFunctionBuilder_BetaV1-1.zip

Friday, February 1, 2019

How Do I Turn Off Compact On Close and Name Auto Correct in Access on Start Up?

Create a function called SetMyOptions()

Function SetMyOptions()
'turn off Compact On Close
    Application.SetOption "Auto compact", False

'turn off Name Auto Correct
    Application.SetOption "perform name autocorrect", False
End Function
Run this function in an AutoExec macro.





How do I run a macro or code when the database starts?

Monday, January 28, 2019

How Do I Disable Layout View for Forms and Reports in Access at Start Up?

Create a function called SetMyOptions()

Function SetMyOptions()
'disable Layout View for forms and reports
    Application.SetOption "DesignwithData", False
End Function
Run this function in an AutoExec macro.





How do I run a macro or code when the database starts?

Monday, January 21, 2019

How Do I Maximize an Access Database at Start Up?

Create a function called SetMyOptions()

Function SetMyOptions()
'maximize Access
    Application.SetOption "maximized", True
End Function
Run this function in an AutoExec macro.






How do I run a macro or code when the database starts?

Monday, January 14, 2019

How Do I Minimize the Ribbon In Access at Start Up?

Create a function called SetMyOptions()

Function SetMyOptions()
'minimize Ribbon
     If Not (CommandBars("Ribbon").Controls(1).Height < 100) Then
        CommandBars.ExecuteMso "MinimizeRibbon"
     End If
End Function
Run this function in an AutoExec macro.





How do I run a macro or code when the database starts?