How to link to a Topic's Bookmark from code

Our developers program in Visual Objects, and when creating the F1 link between our applications and my CHM files, use the topic's htm file number (e.g. 1234.htm) to call the CHM file and open the appropriate topic.
Is it possible for them to call the CHM file, open the appropriate topic and then scroll to a given bookmark within that topic?
If this is possible, any ideas as to what the syntax might be?

Try using 1234.htm#bookmark.
  The RoboColum(n)
  @robocolumn
  Colum McAndrew

Similar Messages

  • How do I save and import my bookmarks from another hard drive? When I try to open the installed Firefox on the old drive, it (obviously) opens a browser from the new main drive, free of bookmarks. Is there a way I can save the bookmarks on the old drive w

    How do I save and import my bookmarks from another hard drive? When I try to open the installed Firefox on the old drive, it (obviously) opens a browser from the new main drive, free of bookmarks. Is there a way I can save the bookmarks on the old drive without opening a browser?
    The guts of my computer were rearranged and I got a new main hard drive. My old one is still in there and I can get stuff from it, but when I go to the Mozilla folder on the old one, I can't figure out if there's anything I can do to get all my bookmarks from that drive to my new one, where Firefox is newly installed.

    If you open Firefox then Firefox will always use the default profile folder as found via profiles.ini on your system drive.
    You either need to import the file in your current default profile or copy the file to your current profile folder while Firefox is closed.
    Firefox 3 stores the bookmarks and the browser history in [http://kb.mozillazine.org/places.sqlite places.sqlite] and no longer creates an HTML backup by default.
    There are also (five) JSON backups in the bookmarkbackups folder within the Firefox profile folder.
    You can either copy the file places.sqlite to your [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] or import the most recent JSON backup from the bookmarkbackups folder of that old profile.
    See:
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See http://kb.mozillazine.org/Profile_folder_-_Firefox
    "Application Data" in XP/Win2K and "AppData" in Vista/Windows 7 are hidden folders.
    See http://kb.mozillazine.org/Show_hidden_files_and_folders
    Go to: Control Panel > Folder Options > "View" tab > under "Hidden files and folders", select "Show hidden files and folders".
    You may want to un-check the box "Hide extensions for known file types" to see the file extensions of all files.

  • How do I transfer all my favorites/bookmarks from my computer to my ipad ???????

    Got new ipad for xmess can't figure out how to trasfer all my favorites/bookmarks from my dell computer to my ipad any help would be appreciated it would take me a mounth of sundays to transfer them all one at a time by typing them in.

    To start, download iTunes 11.0.1 onto your computer. Connect your iPad to the computer, run iTunes and learn how to sync with your computer.
    There is a link already in place in Safari on your iPad that will take you to the manual. Check out setting up your iPad, syncing and transferring your stuff in the manual.

  • My G5 died, but I have connected it's hard-drive to my Mac Mini to use an external drive. How do I retrieve all my Fierfox bookmarks from it?

    When I stat up Firefox on either my Mack Mini or the attached G5 hard-drive it is acting like its a new account. And I don't have a back up of my bookmarks.

    Firefox would store its data in the profile folder. You need to search for the old profile folder, inside it there will be a folder called bookmarkbakups containing a few files with names in the format bookmarks-yyyy-mm-dd.json.
    For details of how to find the old profile folder see the [[profiles]] article. It should be inside this folder - /Library/Application Support/Firefox/Profiles/, there will likely be a folder with a name similar to xxxxxxxx.default, that will be the profile folder.
    You can import the bookmarks from the most recent of those files into your current version of Firefox by following the restore procedure in the [[Backing up and restoring bookmarks]], using the "Choose File" option.

  • How do I add a folder of bookmarks from my "downloads" folder to the bookmarks directory?

    I am trying to move a large number of bookmarks from my old computer to my new one, but can't seem to load them "en mass" to my bookmarks directory. Thanks for any help.

    There is not bookmarks directory. Firefox uses a data file to store bookmarks.
    https://support.mozilla.org/en-US/kb/import-ie-favorites-other-computer
    Import Internet Explorer Favorites from another computer
    This article describes how to get Internet Explorer Favorites from another computer into your Firefox Bookmarks.
    https://support.mozilla.org/en-US/kb/import-bookmarks-internet-explorer
    Import Bookmarks from Internet Explorer
    Firefox lets you import bookmarks, settings and data from Internet Explorer. This article gives you step-by-step instructions for getting it done.

  • How to refer to an IB controller instance from code???

    Hi all. I know this must be simple but I have just never run into this before.
    When you drag an array controller from IB's palette into your top-level window, it instantiates it, right? All well and good - it's controlling my array and updating the tableView that is bound to its arrangedObjects just fine.
    Now I want to refer to it (the instance of the controller) from code. I have its class files, VoteeController.h and .m, but since I didn't make the instance, I don't know how to reference the instance. What I want to do is get the selection of the controller. That's all!
    I cannot code mySelection = [VoteeController selectedObjects], because that is a class object.
    How do I refer to the instance of this controller that IB instantiated when I dragged it onto the main window??
    I have the model object, playersArray, which has the data but doesn't have the selection since it is not a controller. I need to get the selected objects of the array controller that I made in IB.
    Thanks for any help!!

    Yes, I found a way to do it. So I am glad I can help. I will paste in the notes I took for myself.
    Ask any questions if the notes are not clear or do not work for you.
    NOTES:
    Settings for IB:
    TextModel NSObject:
    Class: TextModel (same as @interface)
    TextViewController Object Controller:
    Connections: content to TextModel
    Class: NSObjectController
    Bindings: none
    Content: control-dragged to TextModel.
    Keys: testString
    NOTE: Also works with no connection but setting in Bindings of Bind To Controller: TextModel, "blank" Controller Key and Key Path of self. ("TextModel.self") as Controller Content Content Object.
    NSTextView:
    Controller: TextViewController
    Connections: none
    Bindings:
    Controller: TextViewController
    Controller Key:selection
    Key Path: testString
    SUMMARY:
    1) Model Object - no connection needed. No keys needed. Just enter the Class name in the ID field (the Class name is the name of the Class whose instance contains the getters and setters for the object you want this Model Object to represent).
    2) Controller Object -
    A. Leave Class alone unless it makes new objects.
    B. No connections.
    C. Use Attributes panel to enter keys for the objects in the Model that you want.
    D. Bindings: bind to the Object Model. Leave the Controller Key blank and enter "self" in the Model Key Path.
    3) View Object -
    A. Leave Class alone (NSTextView)
    B. Turn off all RTF options if plain text.
    C. No connections.
    D. Bindings: bind to the View Controller. Set the Controller Key to Selection and the Model Key Path to the model key (e.g., testString).
    Now I've screwed up my Array->Two Array Controllers -> Two Table Views so they don't work any more. I had them working but with what I considered kludges (my goal in this project is to learn the BEST way to use Cocoa Bindings so as to have the absolute minimum glue code - I am aiming for the learning process, not a result necessarily - I already have a completely functional app in AppleScript Studio so I am under no "deadline."
    I had it working using your solution and setting some connections (control-drag) also, but I wanted to redesign it and not have to use connections (notice the TextView rules I posted above use no connections at all - only bindings).
    So if anyone reading this knows how to connect a single array as the Model to two NSArrayControllers as the Controllers, and the Controllers to two TableViews as the Views, chime in. I thought I had it down but it just doesn't load the array into the tableView. As usual, the array has its 7 elements in the debugger and in the NSLogs that I do.
    The part that keeps confusing me is that you have to set a class name for each IB element, and I don't want to have a bajillion Class files. I want one or two general Classes that can contain both an array and some strings and booleans and so forth - and I still cannot find the way to access an IB instance from code except the IBOutlet solution you provided. If that's the only way, fine; but I wanted to see if there is another way using Bindings. SURELY people who declare arrays need to obtain the selection for the arrays, and that exists ONLY in the Controller. So are we supposed to interact with the Controllers or not? How to get a controller's selection and use it on your Model array so you can manipulate with it? The controller instance doesn't even have a name.
    Anybody know anything about FIle's Owner? Several of the examples say to connect something to File's Owner but never say why. If File's Owner has access to all properties of the whole project, that would explain why it is used so often. But I do not think that is the case.

  • How do I import my passwords and bookmarks from a backup on the desktop after a fresh install of the new Firefox 9

    I had problems with an older version of Firefox so I backed up my passwords and backed up my bookmarks and put the backup files on my desktop and then reinstalled a the new Firefox 9.. I cannot find out how to reinstall the passwords or bookmarks into the program now.. Please advise.. Thx

    Hi,
    All of the links above are very old.
    I have problem with restoring my saved password in Firefox 9.
    The profile is no longer located %APPDATA%\Mozilla\Firefox\Profiles\
    In windows 7 the all of the setting of Firefox 9 are located inside (Drive:\\My Documents\FireFox Settings) folder.
    I have copied all of my old setting including bookmarks and cookies and they word perfectly.
    However I have problem with saved passwords. I copied the files "signons.sqlite" and "key3.db" into (Drive:\\My Documents\FireFox Settings) folder but I don't have my password.
    I tried to set a fresh "save password" and then replaced the files "signons.sqlite" and "key3.db" but no luck.
    Please help.''' I don't like to use any utility to recover my password.''' I can't trust them. It should work with the file within my system.
    Than you

  • How can I restore my contacts and bookmarks from Time Machine?

    A few weeks ago a friend tried to help my wife with a problem on her Mac and unwittingly in the process fiddled with my iMac so that I now have her contact list and her bookmarks and I can't find any way to get my iMac back to the way it was. I have a Time Machine backup, conscientiously kept, and a SuperDuper backup as well. Can somebdy please tell me how to restore my computer to its former state?

    To restore your contacts, quit the Address Book or Contacts application. Triple-click the line below to select it:
    ~/Library/Application Support/AddressBook
    Right-click or control-click the highlighted line and select Services ▹ Reveal from the contextual menu. A Finder window should open with a folder selected. Restore the selected folder, or its contents, from a backup.
    To restore your Safari bookmarks, repeat with this line:
    ~/Library/Safari/Bookmarks.plist

  • How to open a pdf document with bookmark from forms6i

    Hi. I'd like to open a pdf file from forms6i but positioning at a specified bookmark. I've tried the following line of code, but it jus opens the document at the start of it:
    host ('c:\sqlfigo.pdf #EMPRESAS',no_screen);
    also tried:
    host ('c:\sqlfigo.pdf EMPRESAS',no_screen);
    How do i open the document a navigate to a specified bookmark.
    Help will be greatly appreciated ...!

    Hello,
    The parameters that can be used in the URL when opening a PDF document are
    described in the document :
    Open Parameters for PDF
    http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf
    Regards

  • I had my computer replaced but copied my hard drive and now I can't access my firefox bookmarks, how can I go and extract the bookmarks from my copied harddrive?

    My HP Touchsmart was sent back in to HP for repairs under warranty. I was advised to make a copy of my harddrive because they may erase my hard drive, which they did, if the problem had to do with a faulty motherboard, which it was. They replaced my HD with a brand new one and now I DO NOT have any of my data installed in the new computer. Luckily I still have an exact replicate of my hard drive on a seperate external HD. However, when I looked in the bookmark.html under the firefox folder, the bookmarks were all blank and none of my bookmarks were there. I checked the properties tabe and it was dated sometime in March of 2011, earlier this year. I have a lot of stuff I wish to pull out from. The Firefox version I was using was the 3.6.16 and the file version was 1.9.2.4095, my OS was use Windows 7 Ultimate 64-bit. I would like to be able to access it again. Please help. Just a heads up but I'm taking a guess you guys already know, that the information under troubleshooting information is of my current computer and not the same as the one that is copied in my hard drive.

    Sorry, I don't find a support article for that type of situation. Read these two articles for help, as bookmarks.html isn't the file type you should be looking for.
    https://support.mozilla.com/en-US/kb/Lost+Bookmarks
    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

  • How to Link equipments(PM) in a Settlement from AUC to Final Fixed Asset

    Hi All,
    I need your help with an integration problem between AA, CO and PM.
    This is the scenario:
    We are buying equipments that should not be capitaliazed until deliver them to the customer so to support this we do the following flow:
    1. Create an sheduling agreement for the whole year with and AUC and a statistical Internal Order.
    2. We create a 'Good receipt' for purchasing equipments(PM) againts the scheduking agreement. At this time we store the equipments in a specific storage location and those equipments are not capitalized. The equipments are create automatically.
    3. We deliver the equipments to the customer, not necessarily all purchased equipments.
    4. Monthly we have to capitalize the equipments that were delivered to the customer so we create a final fixed asset and execute the settlement of the AUC againts that final fixed.(First AIAB to create settlement rule and then AIBU to distribute)
    Problem:
    When we execute AIAB for the step 4 we can not link the equipments with the final fixed asset, in the settlement rule we have to calculate manually the percentage or the amount that shoul be settle according to the equipments that were deliver to the customer, but we would like to:
    1. Link the equipments to the final fixed asset.
    2. Update the material and quantity in the FI posting line item.
    3. Update the quantity field in the final fixed asset master record automatically.
    Do you have any idea?
    Many thanks in advance.

    Hi,
    Please check in the screen layout for Asset Master. I think the equipment field is available.

  • How do I change the Latest Headlines bookmark from BBC to RTE so that similar options are displayed when I click the icon?

    I want to change the Latest Headlines bookmark to RTE and have similar options re. articles pop up when I click the icon. I've tried right clicking and changing the site location but nothing changes.

    You can visit the RSS Feed site of RTE and subscribe to that feed to create a bookmark:
    http://www.rte.ie/rss/news.xml

  • How to link summarization level to COPA- KE30 (T CODE) report ?

    Hi,
    I have created a report (t code KE30) and want to utilise one of the exixting summarization level. When i run the report it reads data from segment level. What settings are needed such that when i run the report it should read data from summarization level and not from segment level? pl advice
    BR,
    Abhishek

    Hi
    http://wiki.sdn.sap.com/wiki/display/ERPFI/COPAPerformanceImprovementusingSummarization+Levels
    Regards

  • How To Force Open Document In Edit Mode From Code-Behind (Chrome and Firefox)?

    Hello,
    Currently I am developing an IHttpHandler which at the should redirect the user to an Edit mode of a document located in a Document Library.
    The Problem is that in Firefox and Chrome it downloads the document in the temp folder. In IE it works as expected.
    The following code is used for the redirection:
    SPUtility.Redirect(urlOfTheNewDocument, SPRedirectFlags.Trusted, context);

    Hi,
    Please try to use IE Tab.
    Chrome IE Tab:
    https://chrome.google.com/webstore/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd?hl=en 
    Firefox IE Tab:
    https://addons.mozilla.org/en-us/firefox/addon/ie-tab/
    Here is a similar thread for your reference:
    http://stackoverflow.com/questions/14455212/how-to-open-sharepoint-files-in-chrome-firefox
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • How to remove an Element that was added from code?

    Hello,
    I have a custom BorderContainer component with 2 labels and 1 image.
    I added an instance of it to my application from code with addElement() and now I cannot make it disappear
    I try:
        for (var i:int=0;i<numElements;i++){
         if (getElementAt(i) is Card){
          if ((getElementAt(i) as Card).name.substr(0,6)=="cMover"){
           removeElementAt(i);
    It finds it because it gets to removeElementAt(i); but the component remains visible.
    I also tried  removeElement(getElementAt(i)); no luck.
    What am I doing wrong?
    thanks
    Gabor

    You may have to call
    invalidateDisplayList();
    After you remove it.

Maybe you are looking for

  • How can I change an incorrect "from" on emails?

    This is a weird one, and I'm stumped. When I send an email from my iPhone 5, in the email "from" box it correctly has my name, but when someone receives the email it instead says it's from "Comcast," my service provider. If you click on the From line

  • DMVPN phase I fails when migrating from PSK to RSIG

    I am currently is the process of migrating my DMVPN network from pre-share key to certificates. Most of the spokes have come up and are working without any issues but there are several that are not making it past phase I. I have included the isakmp d

  • Win 8.1 not remembering dual monitor setup after reboot

    Hello, I am running Windows 8.1 64-bit Enterprise N with the following hardware: HP ENVY TouchSmart 4-1245tu Sleekbook with Intel HD 4000 Graphics Dell Monitor HDMI Out from laptop to VBGA In on monitor (HDMI to VGA Convertor used to connect with sec

  • Win 8 and 8.1 - Acrobat X Pro - PDF Save (As) Full Screen Only

    When saving a file Adobe Acrobat X Pro on my WIN 8 (8.1) computer the save (save as) pop-up window ONLY goes to full screen mode. I have CS5.5 installed on my computer and no other Adobe programs are affected. I have uninstalled and reinstalled Acrob

  • Problem with t:inputText in s:subForm

    Howdy, I'm using a subform within my application. It contains an input text field as well as a submit button. Submitting per submit button works fine. But when the input text field is empty and I hit enter while focused on it a wrong action is perfor