Re: Basic stuff with Access
Access VBA.
I think your questions/issues will have a better audience with the VBA folks as opposed to the reports folks so I'm moving this to Office Automation.
Re: Basic stuff with Access
In Access' toolbox you can add a Microsoft Data Grid Control to it if you have VB6 also installed. If not You might be able to load the VB runtime redistributable files to get it.
Re: Basic stuff with Access
Hmmmm. No VB6, but I will try the runtime files. Thanks again.
Anyone have an idea for switching tabs?
Re: Basic stuff with Access
VB Code:
Option Compare Database
Private Sub Form_Load()
TabCtl0.Pages.Item(1).SetFocus 'clicks the 2nd tab
End Sub
:)
Re: Basic stuff with Access
You might be able to do a subform on a tab (if you can, never tried it) that would give you enough of what you need from the grid, depending on what you need.