Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

html link in MS Access

Options
  • 03-03-2004 10:44am
    #1
    Moderators, Society & Culture Moderators Posts: 2,688 Mod ✭✭✭✭


    Is this possible? in access 2000??

    you can have a label or command button or something like that that when clicked on will load a html page (just a html help readme file that i give to the users when each new version of the app is released.) the file is in a common chared directory.


Comments

  • Closed Accounts Posts: 11 feakle


    this should do it (set strProgram to the full path and filename of your html file):

    Dim strProgram as string

    Dim appObj As Object
    Set appObj = CreateObject("WScript.Shell")
    appObj.Run strProgram

    set appObj = nothing

    end sub


  • Moderators, Society & Culture Moderators Posts: 2,688 Mod ✭✭✭✭Morpheus


    excellent, thanks for the help!


Advertisement