Code to open link database windows

6

'69 Camaro

Hi.
IS there a VBA code to open the Link Table windows.

No. However, one may write a VBA procedure to open the Link table dialog
window. Try:


Public Function linkTbl()

On Error GoTo ErrHandler

RunCommand acCmdLinkTables

Exit Function

ErrHandler:

MsgBox "Error in linkTbl( )." & _
vbCrLf & vbCrLf & _
"Error #" & Err.Number & vbCrLf & vbCrLf & Err.Description
Err.Clear

End Function

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
Blog: http://DataDevilDog.BlogSpot.com
http://www.Access.QBuilt.com/html/expert_contributors2.html for contact
info.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top