Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. chandraj

    XML / HTTPS

    Hi! I was wondering if somebody could help me understand some XML stuff. I'm not a programmer or a web developer. I'm working on a project that involves building a secure electronic interface in HTTPS/XML form. It's not officially my job to build the interface or document the tech specs; my part...
  2. chandraj

    Word Macros - disabled but enabled..?

    hi john...no, they don't. all the macros reside just within Word, and they don't point to any other macros...not even within Word.
  3. chandraj

    Need Code for URL Launcher on Access Form

    KenReay, found the following code online, and it worked: ----- Dim str As String str = "«linkhere»" Application.FollowHyperlink str, , True ---- Thanks. I couldn't have found it without your tip. I used "docmd.followhyperlink" as my keyword in searching. Question...since the code doesn't...
  4. chandraj

    Need Code for URL Launcher on Access Form

    PHV, this is code I used: ----- Dim stFile As String Dim oApp As Object 'Path to URL stFile = "http://www.starbucks.com" 'Create an instance of Internet Explorer Set oApp = CreateObject(Class:="InternetExplorer.Application") oApp.Visible = True...
  5. chandraj

    Need Code for URL Launcher on Access Form

    thanks for the reply, KenReay. tried your code. errorred with the following: "Method or data member not found" referring to ".FollowHyperLink".
  6. chandraj

    Word Macros - disabled but enabled..?

    thanks for the reply, ForumKB. that was actually the first thing i did..change my macro sec settings. but that didn't work. i even tried the lowest security setting...still to no avail. i don't understand why pc "thinks" macros are disabled...yet the other macros i created still work. both sets...
  7. chandraj

    Word Macros - disabled but enabled..?

    hi all...been working on this word doc for weeks. i wrote up some macros. my first batch of macros still work. last week, i created a few more macros, and every time i try to run those, i get an error message that says my macros are disabled. not sure if this is true because the first set of...
  8. chandraj

    Need Code for URL Launcher on Access Form

    hey all...i'm in the process of finalizing my db and want to put a command button on my form that would open up IE and display a webpage on click. i've been googling for codes, as i'm a VBA rookie so couldn't write the entire code myself. got as far as getting IE opened. but it stops right...

Part and Inventory Search

Back
Top