interface library for Access?

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

Guest

Where can I find interfaces for all classes (Form, Forms, textbox,
combobox....) with all private and public members and functions?
That would make understanding things much much easier.
 
Where can I find interfaces for all classes (Form, Forms, textbox,
combobox....) with all private and public members and functions?
That would make understanding things much much easier.

Have you tried the Object Browser? This would expose everything available for a specific object, but doesn't go into
much detail. Not sure it exposes all/any private method/functions/properties - believe those are left for you to ferret
out on your own <g>.

Here's a few MS links:
http://www.microsoft.com/technet/pr...000/solution/appendixes/partapp.mspx?mfr=true
http://support.microsoft.com/kb/222101/

VBA Language Ref:
http://msdn.microsoft.com/office/download/vba/

Scott McDaniel
scott@takemeout_infotrakker.com
www.infotrakker.com
 
What Scott said, and alot of reading in the help files. The help files can
be difficult, but if you piece all the bits together you can usually find
what you're looking for.

Good luck. :)
 
Or both at the same time! Pressing F1 brings up the Help file (if there is
one) for the selected object in Object Browser.
 
Back
Top