OHJ doesn't seem to map to fragment identifiers

When I use a fragment as a topic in the TOC, the link always goes to the top of the page, not the labeled fragment. Invoking the same link from within the browser works fine. So for example, with this setup
faq.toc
<tocitem target="target1" text="First topic"/>
faq.map
<mapID target="target1" url="faq.htm#topic1"/>
faq.htm
<a name="topic1"> ...
the TOC topic links to the top of the faq.htm page, but not the fragment and the href links correctly. Any suggestions appreciated. Thanks.
Paul

Hi Paul,
Links to anchors in the TOC works fine with the OHJ 4.1.x branch. It seems that we (or the new ICE Browser) has introduced a bug in the OHJ 4.2.x branch which is causing this regression. I have logged a bug to track this issue in our bug database, and marked it to be fixed in the next OHJ 4.2.x release.
Regards,
Jeffrey Stephenson
Oracle Corporation

Similar Messages

  • Port mapping doesn't seem to work - AEBS

    I have a dsl connection to an Alcatel SpeedTouch 530 modem, linked via ethernet cable to the WAN of my AEBS, which shares the connection to three Macs and 2 Win boxes. I want to connect to aMule and get a High-ID. In the wiki.amule.org FAQ it states that to achieve this, I must use port mapping behind a firewall, and map ports 4662 (TCP) and 4665 (UDP) to my machine (which, after reading http://discussions.apple.com/thread.jspa?messageID=607426&#607426, I have assigned to AirPort TCP/IP address 10.0.1.201, by the way).
    Unfortunately, it doesn't seem to work, and I'm still getting the annoying 'low-ID' warnings on aMule.
    Following some advice on the aMule forum, I mapped port 80 and verified that the WebServer is accessible inside the wLan, if that's of any help.
    Thanks, people.

    Hi Tim, a couple of questions:
    1. If I go ahead and un-check the 'Distribute IP
    addresses' box, how will the three Macs and two Win
    computers on this wlan be affected? Do we still have
    access to each other's shares, and do we still access
    the internet through the AEBS?
    Once you turn off the 'distribute the IP address box' then your alcatel router will then distribute ip adresses and your macs and wintel boxes will still be on the same network and using the sharepoints will remain the same if you setup the shares using the bonjour names.
    I am making an assumption here in that your alcatel box is setup as a NAT router and not as a Bridge.
    2. Do I just give a static internal IP to my own
    powerbook, or to all the above computers?
    You only need to give a static ip to the mac your doing the port forwarding to. So that is the mac that is running the p2p software, infact you would do the same for any computer on the LAN that would run a server, such as a webserver, email server etc.
    Many thanks, as always.
    You are welcome.
    PS I had the impression that the basic idea of what I
    need to do to successfully map the ports to my Mac
    was to map ports from the DSL modem to the AEBS, then
    from AEBS to my Mac. Is this not right? Or is this
    another kind of solution to the same problem, albeit
    slightly more complicated to your suggestion above?
    If the alcatel modem was just behaving as a modem then you would use the AEBS as the NAT device and do the port mapping on that. However the Alcatel modem is also a router.
    If you setup up your alcatel router as a bridge you would then use the AEBS as your PPPoE client and then port mapping would work.

  • Audition CS6 doesn't seem to recognize that I have a 5.1 system while mapping channels. Any ideas?

    Hi there everyone. I'm trying to mix in 5.1 surround sound. I started a project and set it to 5.1, and I can edit everything just fine. The problem is that I can't monitor my results, because Audition doesn't seem to recognize that I have a 5.1 system (Logitech Z-5500 5.1 Digital) hooked up via 6-channel direct. It's not recognizing more than two channels. Does anyone know what's going on?
    I have an Alienware M17x-R4 laptop running Win 8 Pro 64-bit. My sound card is a Creative Sound Blaster Recon3Di.
    Here's what my preferences look like.

    GrizzlyAK wrote:
    I think there is something else going on.
    I think you're correct, although I can understand entirely why ryclark said what he did - there are at least two reasons! Firstly, Creative Labs have history with piss-poor driver software (and hardware), and secondly (as an extension of this), it's quite normal for a lot of sound device manufacturers to provide only the minimum MME requirement as far as Microsoft is concerned - and that's just a two channel stereo output.
    MME is obviously quite capable of supporting multichannel devices, albeit at higher latency values. If you are looking at just a playback situation though, this doesn't really matter. What may have happened here is that the driver software on your machine, and on the OPs, are simply at different version levels, and that all that's required is for the OP to update it.
    For anybody serious about this though, I'd still recommend upgrading to an external sound device as any internal device, whoever made it, is inevitably going to be compromised in terms of performance. There are several reasons for this, but primarily they are too close to a load of digital noise within the machine, and this limits their signal to noise ratio. External devices are a lot better from this point of view, and usually you aren't limited by ridiculously flimsy 3.5mm jack connectors either. And inevitably, internal sound devices are built down to a price, not a performance point - not so good.

  • SetAutoCreateColumnsFromModel doesn't seem to work...

    I've been coding a game server browser in Java, and have gotten pretty far with it. However, I'm running into a slight problem. I want to be able to align certain cells to my own specifications, as well as size columns myself. In order to accomplish this, I don't want the table to automatically display columns. Therefore, I have attempted to use jtbServers.setAutoCreateColumnsFromModel(false);. The only problem is that it doesn't seem to work...maybe it works only after-the-fact, but what the following code results in is twice the columns.
         // Server Table
         private JScrollPane guiServers()
              // Sets up the table headers
              Object objColumn[] = {"Server", "Address", "Players", "IWAD", "PWAD", "Map", "Ping"};
              // Sets up the Data Table Model
              dtmServersData = new DefaultTableModel(objColumn, 0)
                   public boolean isCellEditable(int a, int b)
                        return false;
              // Sets up the table itself
              jtbServers = new JTable(dtmServersData);
              jtbServers.setAutoCreateColumnsFromModel(false);
              TableColumn column;
              for(int i = 0; i < objColumn.length; i++)
                   column = new TableColumn(i);
                   column.setHeaderValue(objColumn);
                   jtbServers.addColumn(column);
              // Slaps a scroll bar on it
              jspServers = new JScrollPane(jtbServers);
              return jspServers;
    Any idea what I'm doing wrong?

    I want to be able to align certain cells to my own specifications, as well as size columns myselfWell, there is no reason you can't let the table create the TableColumnModel normally and then use the setAutoCreateColumnsFromModel(...) method. Then you would customize the TableColumns.
    maybe it works only after-the-fact,I would say this is the case. This method is handy when you need to reset the table with a "refreshed" TableModel. Say you have a query from a database that will always return the same data and number of columns. When you refresh the table using the setModel(...) method, then the default behaviour would be to recreate the TCM. However, if you've already customized the TCM then you would use the setAutoCreateColumnsFromModel to preserve your customization.

  • Annotations - InheritanceType.TABLE_PER_CLASS doesn't seem to work with GF

    Hi there,
    I'm using the toplink essentials jar file with a stand alone J2SE application. I'm using annotations for ORM with Toplink implementation
    What I want to achieve is to map the base class objects to one table, and sub class objects to a different table. Currently - both tables (and objects) have the exact same structure, but I use inheritence in order to identify where should the object be registered. Thus I'm trying to map an inhertiance using TABLE_PER_CLASS type.
    It doesn't seem to work:
    My classes look like this:
    Base class I want to map to REGION table:
    @Entity
    @Table(name="REGION")
    @Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
    public class Region implements BaseBusinessObj
    @Id
    @Column(name = "REGION_ID", insertable = false, updatable = true)
    @GeneratedValue(generator = "regionSeq")
    @SequenceGenerator(name = "regionSeq",
    sequenceName = "GSM_REGION_ID_SEQ", allocationSize = 1)
    private int m_regionId;
    @Column(name = "REGION_NAME")
    private String m_regionName;
    Subclass with exact same structure I want to map to GFR_REGION table which has the exact same database table structure as REGION:
    @Entity
    @Table(name="GFR_REGION")
    public class GfrRegion extends Region
    This doesn't work. The Toplink adds entities of the GfrRegion to the REGION table and does not recognize it should go to the GFR_REGION table.
    What am I doing wrong?
    Thanks,
    Michael

    Hi all,
    Any news about the support for TABLE_PER_CLASS in TopLink/EclipseLink ?
    The main question is what was the reason for making this an optional strategy for mapping in the specs ? Both OpenJPA and Hibernate have it and there are cases when this is usefull.
    From EclipseLink perspective, how difficult would be to add this ? I didn't have a chance yet to closely examine the codebase for EclipseLink, but some architecture diagrams with some design decisions explained would help to community to better understand the product and make improvements.
    Thank you,
    Mircea

  • My iPad mini just doesn't seem to connect on my PC..and it keeps telling that its not charging on my iPad. What should I do to connect it?

    My iPad mini doesn't seem to connect on the pc. Every time I try to connect it my iPad always say that it's not charging.. What should I do to be able to connect it. Please help as I'm a new user.thnx

    The quickest way (and really the only way) to charge your iPad is with the included 10W or 12W (5W on Mini) USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (2.5W, most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    What to Do If Your iPad Won't Charge
    http://ipad.about.com/od/iPad_Troubleshooting/a/What-To-Do-If-Your-Ipad-Will-Not -Charge.htm
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Best Practices for iPad Battery Charging
    http://www.ilounge.com/index.php/articles/comments/best-practices-for-ipad-batte ry-charging/
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    How to Save and Prolong the battery life of your new ipad
    https://discussions.apple.com/thread/4480944?tstart=0
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    iPhone, iPod, Using the iPad Charger
    http://support.apple.com/kb/HT4327
    Install and use Battery Doctor HD
    http://itunes.apple.com/tw/app/battery-doctor-hd/id459702901?mt=8
    To Extend a Device’s Battery Life, Get to Know It Better
    http://tinyurl.com/b67c7xz
    iPad Battery Replacement
    http://www.apple.com/batteries/replacements.html
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
    Since you are a new iPad user, here's some helpful info to get you started.
    Complete guide to using iOS 6
    http://howto.cnet.com/ios-6-complete-guide/
    Guide to Built-In Apps on iOS
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/guide-to- built-in-apps-ios
    You can download a complete iOS 5 iPad User Guide and iOS 6 iPad User Guide here: http://support.apple.com/manuals/ipad/
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Apple iPad Guided Tours - Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    http://www.youtube.com/watch?v=YT2bD0-OqBM
    http://www.youtube.com/watch?v=ROY4tLyNlsg&feature=relmfu
    http://www.youtube.com/watch?v=QSPXXhmwYf4&feature=relmfu
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • Mini dvi to s-video/composite adapter doesn't seem to work?

    basically i'm trying to hook my rather new 2.53 ghz mac mini to my tv, which basically has rca inputs. so, having seen several laptops hooked to this tv as simply as using an s-video to composite adapter, i figured it would be as simple as getting the mini dvi to composite adapter and i'd be good. well, for some reason this doesn't seem to do anything. the other weird thing is that when i hook the cable from the composite adapter to the tv, i get a buzz out of the speakers as the connection is being made. why is a video signal having anything to do with the audio? plugging my playstation 2 into the same input works fine. why the difference?

    Boece wrote:
    !http://images2.monoprice.com/productmediumimages/47241.jpg!
    +
    !http://images2.monoprice.com/productmediumimages/48501.jpg!
    That's the setup I've used. Works great for video and photos, but webpage text can be difficult to read.
    I used the yellow composite input rather than the s-video. My old tv is inside an “entertainment center” type tv stand and is so friggin heavy, it’s a pain in the axx to move, so I just used the composite plug on the front of my tv. Since the Mac mini is sitting in front of the tv it works great:-)
    http://discussions.apple.com/thread.jspa?threadID=2430645&tstart=0
    Message was edited by: James Press1

  • Need lightroom 4.4 asmac is 10.6.8 and not compatible with anything higher. Does this come with the creative cloud? Would really like a disc but that doesn't seem to happen anymore. Currently have cs4 and d7100 hence need 4.4 to open raw Any idea

    need lightroom 4.4 asmac is 10.6.8 and not compatible with anything higher. Does this come with the creative cloud? Would really like a disc but that doesn't seem to happen anymore. Currently have cs4 and d7100 hence need 4.4 to open raw Any ideas? Is this now customer service or does adobe have a customer service team . Site not user friendly. Thanks

    Graham Giles wrote:
    Have you seen this type of problem before? I think it could be a serious issue for anyone in a similar position.
    No; but then, I've not had occasion to use TDM. I've been using firerwire drives for over 10 years, both FW400 and FW800, with no issues except a bit of instability using a B&W G3 machine.
    TDM should be safe. Using cautious, manual copying of files from the Target machine to the Host machine should not result in unexpected loss of files or damage to the Target drive's directories. It should behave exactly the same as if it were an external (to the Host) firewire drive.
    •  I don't suppose there is anything I can do to 'put back' lost items from a separate Time Machine drive which has an up to date backup on it.
    There is probably a way to do that - seems to me that's one of the reasons for a Time Machine volume.
    On the other hand, if the Time Machine volume is rigidly linked to the now-absent OS on the original drive, there may be no way to effectively access the files in the TM archive.
    I know that using a cloned drive would work well in this instance.
    I have no experience with Time Machine, so perhaps someone who has will chime in with suggestions.
    With the machine in TDM with the other machine, have you tried running Disk Utility to see if you can effect repairs to the drive?

  • Wacom Tablet doesn't seem to work all of the time?

    I have a Wacom Intuos 3 tablet, not more than a year old. I recently installed it onto my Macbook Pro and it worked fine, but when I unplugged it and came back to work with it later, it doesn't seem to work. The mouse doesn't respond to where I click on the pad.
    So, I've reinstalled this a couple of times and was able to make it work perfectly, but today when I went back to work in photoshop, it doesn't seem to be responding again.
    Does anyone have any tips? I know that Leopard likes you to eject USB devices instead of just pulling them out of the slot, but I don't see anywhere to eject it.
    Does anyone know what's up?

    Downloaded a driver from website, tablet works now.

  • HT3235 I just bought a Micro-DVI to video adapter to try and hook my MacBook Pro 13" I bought mid 2009 to my old TV, the adapter doesn't seem to fit any of the connections, is this the right adapter?

    I just bought a Micro-DVI to video adapter to try and hook my MacBook Pro 13" that I bought in mid 2009 to my old TV (svideo), the adapter doesn't seem to fit any of the connections on my macBook pro, is right adapter?

    Shootist007 wrote:
    Apple doesn't offer a MDP to AV or componet connect . Only DVI and VGA. They also don't offer one to HDMI. You have to go aftermarket to get one to HDMI.
    Quite right, but as the OP does not have component or composite connections not important.
    To the OP, this does work, but is not the cheapest, and as it appears that Apple no longer sell an SVideo adaptor cable 3rd party it will have to be.

  • 1.burned a hole in my screen can I get this repaired?  2. Even though I have it set to open up to a blank screen, no web pages, my computer (safari) continuously opens with multiple safari sites open. It doesn't seem to matter what I do, it just reverts

    1. I burned a small hole in my screen, is that fixable/replaceable? 2. Even though I have my 15" MacBook Pro set to open to empty screen when I open Safari, it constantly opens multiple previous pages. It doesn't seem to matter what I do it just reverts back to opening multiple pages. Major security risk, my bank pages have popped back up after my computer has been shut down, account numbers and all. I took my computer to an Apple store and the genious there tols me...      "honey, you can't hold your laptop on your lap, that's the problem, it's getting too hot" he honestly said that. Could someone please help me? Thanks

    Apple doesn't call its portable machines 'notebooks' instead of 'laptops' for nothing - using a MacBook Pro in your lap can cause some burns on your skin, poor ventilation, etc. So use it on a hard flat surface - not your lap, pillows, bedclothes, etc.
    As for burning a hole in your screen, you'll have to revisit the Apple Store and see how much they would charge for a new screen. It's likely to be a bit expensive.
    And if you've Safari set to re-open tabs when you restart, you can disable this feature -> Safari-Preferences-General.
    Good luck,
    Clinton

  • How does Azure Compute Emulator (or the Azure one) determine if a role is web project or something else ("The Web Role in question doesn't seem to be a web application type project")?

    I'm not sure if this is F# specific or something else, but what could cause the following error message when trying to debug locally an Azure cloud service:
    The Web Role in question doesn't seem to be a web application type project.
    I added an empty F# web api Project to a solution (which adds Global.asax etc., I added an OWIN startup class Startup etc.) and then from an existing
    cloud service project I picked Roles and
    chose Add
    -> Web Role Project in solution, which finds the F# web project (its project type guids are 349C5851-65DF-11DA-9384-00065B846F21 and F2A71F9B-5D33-465A-A702-920D77279786),
    of which the first one seem to be exactly the GUID that defines a web application type.
    However, when I try to start the cloud project locally, I get the aforementioned error message. I have a C# Web Role project that will start when I remove the F# project. I also have F# worker
    role projects that start with the C# web role project if I remove this F# web role project. If I set the F# web project as a startup project,
    it starts and runs as one would expect, normally.
    Now, it makes me wonder if this is something with F# or could this error message appears in C# too, but I didn't find anything on Google. What kind of checks are there when starting the emulator and which one needs
    failing to prompt the aforementioned message? Can anyone shed light into this?
    Sudet ulvovat -- karavaani kulkee

    Sudet,
    Yeah you are right, the GUID mentioned seems to be correct and the first one i.e. {349C5851-65DF-11DA-9384-00065B846F21} means the web application project which compute emulator uses to determine while spawning up role instances.
    You might want to compare the csproj of your C# and F# web projects which might give some pointers.
    Are you able to run your F# web project locally in IIS? If yes then you will definitely be able to run it on azure so I will recommend to test it in IIS Express first.
    Here are some other tips which you can refer or see If you are yet to do those settings
    1. Turn on the IIS Express - You can do it by navigating to project properties
    2. Install Dependent ASP.NET NuGets / Web Api dependencies (If there are any missing), Reference System.Web assembly
    Also I will suggest to refer this nice article about how to create a F# web Api project
    http://blog.ploeh.dk/2013/08/23/how-to-create-a-pure-f-aspnet-web-api-project/
    Hope this helps you.
    Bhushan | http://www.passionatetechie.blogspot.com | http://twitter.com/BhushanGawale

  • My apple tv is registering on my tv - i can see it on my system info screen but the apple tv doesn't show up, as well my imac doesn't seem to let me share - so i don't know whats wrong, why my apple tv isn't working

    anybody able to help me with my setup for apple tv.  i've followed the directions in the guide and my tv doesn't seem to register in part.  it's weird because my tv system info identifies the apple tv but the screen never went black and it doesn't show anything, too, my imac doesn't seem to register the apple tv unit either

    I would try connecting it to another tv to see if it works there if it does
    then likely your tv can't handle the default resolution and you should lower it on the other tv
    if not then you should connect it by usb to the computer and use itunes to restore it's firmware

  • Safari on my iPhone 6 running 8.02 doesn't seem to work right. Some Java scripts don't show correctly and they do on other browsers I have downloaded. I tried almost everything and nothing seems to work to fix it. Please help.

    Some websites like the one of my college uses JavaScripts and they seem to load correctly to a certain point but then not really. For example in one it would say select an option from the left menu. And I do it hut nothing happens. But when I go to the same website in another browser on my phone. The JavaScript works completely and allows me to see whatever I was clickig on that menu. I have seen that there are other websites being affected too. I tried clearing my cookies and data. even restarted my phone. And doesn't seem to work. I don't know how change the configuration any more to make it work like normal. At first I thought it was my school's website but it never got fixed. And now I realized is my safari browser! I wanna keep using it since I am really familiar with It. If someone knows how to fix this please let me know!
    Thanks

    You can reset the SMC and see if that helps. If it's a unibody or Retina, follow the method for "a battery you should not remove yourself."
    http://support.apple.com/kb/ht3964

  • I'm using iphoto9.1.3 but now it doesn't seem to work, whenever I try to open it, it just shows loading, but never loads. Can anybody help me with this ?

    I'm using iphoto9.1.3 but now it doesn't seem to work, whenever I try to open it, it just shows loading, but never loads. Can anybody help me with this ?    

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

Maybe you are looking for

  • Data don't pass from one server to the other ???

    Hello, I have a big problem. I have define all the data server from all the technologies I want. All the tests are good. I have created interfaces all the first work well But..... When in my interface the Source and the target are not physicaly on th

  • E63 doesn't detect my Netgear Router (wgr614 v6)

    E63 does not detect my netgear router (wgr614 v6). My T-Mobile SDA and T-Mobile Shadow, can detect it easily and also connect successfully. Here are the settings I have on router: Security: WEP Auth: Automatic Encrypt: 64 bit Channel: 6 Mode: g and b

  • VAT value

    Dear all, 1 In case of Traders Basic Value + Vat = Purchase value E.duty +Vat = Tax Vat 2 In case of Manufacturers Basic valueE.dutyVat = Purchase Value E.duty +Vat = Tax Vat The above mentioned report should be as under: 1 In case of Traders Basic V

  • Why do my Reminders sometimes not alert after the set time?

    Why do my Reminders sometimes not alert after the set time?  I've tried re-starting repeatedly.  I've tried deleting older completed reminders (I only had 300).  Is there a fix for this? 

  • Mac Mail fails to quit; How to fix ?

    With newly installed Snow Leopard on my 13 inch MacBook, Mail cannot quit unless 'Force Quit' is used.  How does one fix that, please ? Thanks,  PippinD