Option Explicit: How do I go back and add

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I did not set my defalut to force option explict when I setup my program.
What is the best way to go back and add this to my program?
 
David,

Just go to each module in your application and just below the line:
Option Compare Database

Just add:
Option Explicit

That's it.
 
Back
Top