search system.mdb executing
start execute
%appdata%\Microsoft\Access

i post so other user will help you
Dim conn As System.Data.OleDb.OleDbConnection
Dim cmdToExecute As System.Data.OleDb.OleDbCommand
'NB. Replace the data source with the one for your Access DB and replace
'the Jet OLEDB:System Database with the path to your System.mdw
conn = New System.Data.OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\XXXXX\My Documents\db3.mdb;" & _
"Jet OLEDB:System Database=C:\Documents and Settings\XXXXXX\Application Data\\Microsoft\Access\System.MDW")
cmdToExecute = New System.Data.OleDb.OleDbCommand()
cmdToExecute.Connection = conn
cmdToExecute.CommandType = CommandType.Text
cmdToExecute.CommandText = "GRANT SELECT ON TABLE MSysObjects TO PUBLIC"
conn.Open()
Try
cmdToExecute.ExecuteNonQuery()
Catch ex As Exception
MsgBox(ex.Message)
End Try
conn.Close()