ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   open access from excel ? (https://www.excelbanter.com/excel-discussion-misc-queries/195606-open-access-excel.html)

יריב החביב

open access from excel ?
 
Hello,

What is the code (if possible) to open access application from excel ?

thank you


--
תודה רבה

Ron de Bruin

open access from excel ?
 
Hi ?

Try this to open C:\OrderDatabase.mdb

Sub test()
Dim ac As Object
On Error Resume Next
Set ac = GetObject(, "Access.Application")
If ac Is Nothing Then
Set ac = GetObject("", "Access.Application")
ac.OpenCurrentDatabase "C:\OrderDatabase.mdb"
ac.UserControl = True
End If
AppActivate "Microsoft Access"
End Sub

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"יריב החביב" wrote in message ...
Hello,

What is the code (if possible) to open access application from excel ?

thank you


--
תודה רבה



יריב החביב

open access from excel ?
 
Thank YOU
--
תודה רבה


"Ron de Bruin" wrote:

Hi ?

Try this to open C:\OrderDatabase.mdb

Sub test()
Dim ac As Object
On Error Resume Next
Set ac = GetObject(, "Access.Application")
If ac Is Nothing Then
Set ac = GetObject("", "Access.Application")
ac.OpenCurrentDatabase "C:\OrderDatabase.mdb"
ac.UserControl = True
End If
AppActivate "Microsoft Access"
End Sub

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"יריב החביב" wrote in message ...
Hello,

What is the code (if possible) to open access application from excel ?

thank you


--
תודה רבה





All times are GMT +1. The time now is 01:14 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com