office 2007 / Access 2000

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • David B

    #1

    office 2007 / Access 2000

    Neighbour has got a new `puter which came with Office 2007 (without Access )

    He needs Access to run an app for his business.

    He still has a copy of Office 2000 Pro.

    Are there any issues with installing Access 2000 alongside Office 2007. ?

    The app calls Outlook to send emails.

    Will there be any problems when Access runs this - ? -

    Dim stAppName As String

    stAppName = "C:\Program Files\Microsoft Office\Office\o utlook.exe"
    Call Shell(stAppName , 1)

    TIA
    David B


  • Allen Browne

    #2
    Re: office 2007 / Access 2000

    You can use Access 2000 from Office 2000 Pro, even if you are using Office
    2007. Just do a custom install of Office 2000, so you can elect to install
    the Access component only.

    If you have hard-coded path names into the app, that will fail, so the code
    will need to be re-written. Interactions between the different versions may
    fail, but you might be able to overcome the specific example you gave by
    using SendMail to fire off an email.

    Other components could fail as well, e.g. MS Graph, the Calendar control,
    etc. Again there are workarounds for most of these, e.g. this simple little
    popup calendar that is just an Access form so works in any version:
    Free popup calendar (month view) for selecting a date in a Microsoft Access database. The calendar is an Access form, so requires no additional VBA references.


    There are a few other compatibility issues listed here:
    The advantages you gain and problems you experience when upgrading to Microsoft Access 2007 from previous versions


    --
    Allen Browne - Microsoft MVP. Perth, Western Australia
    Tips for Access users - http://allenbrowne.com/tips.html
    Reply to group, rather than allenbrowne at mvps dot org.

    "David B" <david@somewher e.fsnet.co.ukwr ote in message
    news:QtudnfF3IJ NuOljanZ2dnUVZ8 uOdnZ2d@bt.com. ..
    Neighbour has got a new `puter which came with Office 2007 (without
    Access )
    >
    He needs Access to run an app for his business.
    >
    He still has a copy of Office 2000 Pro.
    >
    Are there any issues with installing Access 2000 alongside Office 2007. ?
    >
    The app calls Outlook to send emails.
    >
    Will there be any problems when Access runs this - ? -
    >
    Dim stAppName As String
    >
    stAppName = "C:\Program Files\Microsoft Office\Office\o utlook.exe"
    Call Shell(stAppName , 1)
    >
    TIA
    David B

    Comment

    Working...