Windows Phone Hub with more than 2 sections causes ArgumentException when collapsing any section

Hi there,
I'm working on a Universal app which is using a Hub control to display different sections.
On startup, I want to hide some of the sections. Using a button, I want to toggle between the visible sections using a binding property on the Visibility property (Handled in the ViewModel). In my ViewModel I have 2 boolean properties that are bound to the
corresponding sections and are converted to Visibility using a BooleanToVisibilityConverter
<Hub>
<HubSection>
<DataTemplate>
<Button Content="Test" Command="{Binding SwitchVisibilityCommand}"/>
</DataTemplate>
</HubSection>
<HubSection x:Name="First" Header="Test1A" Visibility="{Binding ElementName=pageRoot,
Path=DataContext.FirstVisibleProperty, Converter={StaticResource ResourceKey=BooleanToVisibilityConverter} }"/>
<HubSection x:Name="Second" Header="Test1B" Visibility="{Binding ElementName=pageRoot,
Path=DataContext.SecondVisibleProperty, Converter={StaticResource ResourceKey=BooleanToVisibilityConverter} }"/>
<HubSection x:Name="Third" Header="Test2A" Visibility="{Binding ElementName=pageRoot,
Path=DataContext.ThirdVisibleProperty, Converter={StaticResource ResourceKey=BooleanToVisibilityConverter} }"/>
<HubSection x:Name="Fourth" Header="Test2B" Visibility="{Binding ElementName=pageRoot,
Path=DataContext.FourthVisibleProperty, Converter={StaticResource ResourceKey=BooleanToVisibilityConverter} }"/>
</Hub>
public class MainPageViewModel : ViewModel, IMainPageViewModel
private bool firstVisibleProperty;
private bool secondVisibleProperty;
public MainPageViewModel()
FirstVisibleProperty = true;
SecondVisibleProperty = false;
SwitchVisibilityCommand = new DelegateCommand(ExecuteCommand);
private void ExecuteCommand()
FirstVisibleProperty = !FirstVisibleProperty;
SecondVisibleProperty = !SecondVisibleProperty;
public bool FirstVisibleProperty
get { return firstVisibleProperty; }
set
firstVisibleProperty = value;
OnPropertyChanged(() => FirstVisibleProperty);
public bool SecondVisibleProperty
get { return secondVisibleProperty; }
set
secondVisibleProperty = value;
OnPropertyChanged(() => SecondVisibleProperty);
public DelegateCommand SwitchVisibilityCommand { get; set; }
This setup is working fine on Windows, but in Windows Phone I get an unhandled exception (ArgumentException with the message ´Value does not fall within the expected range.´). 
When I reduce the amount of hubsections to two, one that is visible and one that is collapsed, everything is working fine again. When I use multiple sections that all use the the same visibility property no exception is thrown
When I set both properties to true in the viewmodel, also no exception is thrown.
I've also tried the following (Without succes):
- change my boolean properties to Visibility properties
- use different boolean properties for each of the sections
I do not understand why this exception is thrown and the exception itself is to vague to give any useful information
How can I resolve this error??

I've uploaded my code to OneDrive. Use the following link to download the source:
https://onedrive.live.com/?cid=9c0070abc26b0b55&id=9C0070ABC26B0B55%2173811

Similar Messages

  • Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been usin

    Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been using adobe forms for 2 years with mass response feedback and have never had this problem.

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Hello. I have an iPad2, and iMovie software. My main problem, for the moment, is the length of the videos: I can´t create a video with more than 56 seconds. When I try, the app shuts off... Can anyone help me?

    Hello. I have an iPad2, and iMovie software. My main problem, for the moment, is the length of the videos: I can´t create a video with more than 56 seconds. When I try, the app shuts off... Can anyone help me?

    Sorry. We can't help you. It's no longer an iPhone. Apple won't touch it.
    Take it to whoever replaced the screen and see if they can help you.
    iPhones are not user servicable and Apple does not sell iPhone parts at all. I'd be surprised if you were actually able to back it up at this point. It sounds like it's completely borked.

  • Error while running spatial queries on a table with more than one geometry.

    Hello,
    I'm using GeoServer with Oracle Spatial database, and this is a second time I run into some problems because we use tables with more than one geometry.
    When GeoServer renders objects with more than one geometry on the map, it creates a query where it asks for objects which one of the two geometries interacts with the query window. This type of query always fails with "End of TNS data channel" error.
    We are running Oracle Standard 11.1.0.7.0.
    Here is a small script to demonstrate the error. Could anyone confirm that they also have this type of error? Or suggest a fix?
    What this script does:
    1. Create table object1 with two geometry columns, geom1, geom2.
    2. Create metadata (projected coordinate system).
    3. Insert a row.
    4. Create spacial indices on both columns.
    5. Run a SDO_RELATE query on one column. Everything is fine.
    6. Run a SDO_RELATE query on both columns. ERROR: "End of TNS data channel"
    7. Clean.
    CREATE TABLE object1
    id NUMBER PRIMARY KEY,
    geom1 SDO_GEOMETRY,
    geom2 SDO_GEOMETRY
    INSERT INTO user_sdo_geom_metadata (table_name, column_name, srid, diminfo)
    VALUES
    'OBJECT1',
    'GEOM1',
    2180,
    SDO_DIM_ARRAY
    SDO_DIM_ELEMENT('X', 400000, 700000, 0.05),
    SDO_DIM_ELEMENT('Y', 300000, 600000, 0.05)
    INSERT INTO user_sdo_geom_metadata (table_name, column_name, srid, diminfo)
    VALUES
    'OBJECT1',
    'GEOM2',
    2180,
    SDO_DIM_ARRAY
    SDO_DIM_ELEMENT('X', 400000, 700000, 0.05),
    SDO_DIM_ELEMENT('Y', 300000, 600000, 0.05)
    INSERT INTO object1 VALUES(1, SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(550000, 450000, NULL), NULL, NULL));
    CREATE INDEX object1_geom1_sidx ON object1(geom1) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    CREATE INDEX object1_geom2_sidx ON object1(geom2) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    SELECT *
    FROM object1
    WHERE
    SDO_RELATE("GEOM1", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE';
    SELECT *
    FROM object1
    WHERE
    SDO_RELATE("GEOM1", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE' OR
    SDO_RELATE("GEOM2", SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(500000, 400000, NULL), NULL, NULL), 'MASK=ANYINTERACT') = 'TRUE';
    DELETE FROM user_sdo_geom_metadata WHERE table_name = 'OBJECT1';
    DROP INDEX object1_geom1_sidx;
    DROP INDEX object1_geom2_sidx;
    DROP TABLE object1;
    Thanks for help.

    This error appears in GeoServer and SQLPLUS.
    I have set up a completly new database installation to test this error and everything works fine. I tried it again on the previous database but I still get the same error. I also tried to restart the database, but with no luck, the error is still there. I geuss something is wrong with the database installation.
    Anyone knows what could cause an error like this "End of TNS data channel"?

  • Can I use a magic trackpad with more than one Mac at a time?

    I am attempting to pair a MTP with a second MacBook Pro.  So far I can't get system preferences to find the MTP.
    I am wondering whether the MTP can be paired with only one Mac at a time, and that this is why my MBP won't find it.
    The reason I am thinking this is because the little booklet that comes with the MTP says 'after you pair your MTP with a Mac, you can pair it again with a different Mac.  To do this, you first remove the existing pairing and then pair the trackpad again'.
    Can anyone advise, please?
    If it can be paired with more than one MBP at a time, any suggestions why my system preferences search for the MTP is not producing any results?
    Thanks

    Yes, your keyboard, mouse or trackpad can be paired with multiple Macs.  You can even have multiple keyboards, mice or trackpads paired with one Mac.  The caveat is that the device can only be connected to one Mac at a time.  The device can't be paired or connected with a Mac while it's currently connected to another.
    Pairing a device with 2 Macs will be troublesome if the Macs are located within 33 ft of each other.  The device will connect with the first available paired Mac and then unavailable to the second.   If the Macs are located outside the 10meter range, it's quite easy to power off the keyboard (forcing a disconnect) then walking the keyboard to Mac 2 and powering the keyboard on.   I do this with a keyboard from my iMac to a Mac Mini in another room.
    Captfred

  • InfoSet with more than one cube

    Has anyone created an infoset with more than one cube?
    Are there any hints for to pay attention?
    Regards
    Chäsitzer

    HI ,
    Some important points :
    it is not possible to define an InfoCube as a right operand of a left outer join.
    SAP no longer supports more than two InfoCubes in one InfoSet.
    Therefore, if you include more than two InfoCubes in one InfoSet, the system issues a warning.
    the key figure values of InfoCubes and DataStore objects are duplicated when you join them to
    InfoProviders (see SAP Note 592785)
    Regards,
    Sathya

  • Spool request with more than 255 columns

    Hi,
    Please let me know what formatting type has to be used to have spool output with more than 255 lines.
    X_24_80_JP        L      ANY           00024   00080   ABAP list HR Japan: At least 24 rows by 80 columns
    X_44_120          L      ANY           00044   00120   ABAP/4 list: At least 44 rows by 120 columns
    X_51_140_JP       L      ANY           00051   00140   ABAP list HR Japan: At least 51 rows by 140 columns
    X_58_170          L      ANY           00058   00170   ABAP/4 list: At least 58 rows by 170 columns
    X_60_80_JP        L      ANY           00060   00080   ABAP list HR Japan: At least 60 rows by 80 columns
    X_65_1024/4       L      ANY           00065   01024   ABAP List: At Least 65 Lines 4*256=1024 Columns Four-Sided (Only for SAPlpd)
    X_65_132          L      ANY           00065   00132   ABAP list: At least 65 rows by 132 columns
    X_65_132-2        L      ANY           00065   00132   ABAP List: 2-column 65 characters 132 columns (only for SAPLPD from 4.15)
    X_65_200          L      ANY           00065   00200   ABAP list: at least 65 lines with 200 columns (not for all device types)
    X_65_255          L      ANY           00065   00255   ABAP/4 list: At least 65 rows with a maximum number of columns
    X_65_256/2        L      ANY           00065   00256   ABAP list: At least 65 lines 2*128=256 double columns (SAPLPD only)
    X_65_512/2        L      ANY           00065   00512   ABAP List:  At least 65 Lines 2*256=512 Columns 2-sided (Only for SAPlpd)
    X_65_80           L      ANY           00065   00080   ABAP/4 list: At least 65 rows by 80 columns
    X_65_80-2         L      ANY           00065   00080   ABAP List: 2-column 65 characters 80 columns (only for SAPLPD from 4.15)
    X_65_80-4         L      ANY           00065   00080   ABAP List: 4-column 65 characters 80 columns (only for SAPLPD from 4.15)
    X_90_120          L      ANY           00090   00120   ABAP list: At least 90 rows by 120 columns
    X_PAPER           L      ANY           00010   00010   ABAP/4 list: Default list formatting
    X_PAPER_NT        L      ANY           00001   00001   ABAP/4 list: Obsolete (do not use)
    X_POSTSCRIPT      L      ANY           00001   00001   Pre-prepared PostScript
    X_SPOOLERR        L      ANY           00001   00001   ABAP list: Spooler problem report
    X_TELEX           L      TELEX         00001   00001   Telex: 69 characters wide, only as many lines as supported by TTU
    ZABC_SAP        L      ANY           00065   00550   LCM Report Page Type
    I have created a custom Format Type with 65*550 (ZABC_SAP) , but still the output gets truncated in the spool.
    In sp01 . For the spool request ... If it displayed in Graphical layoout ... Output is getting truncated but when we see in Raw format .. i can see the entire output. But it is not at all formatted.
    Thanks,
    Tanuj
    Message was edited by:
            Tanuj Kumar Bolisetty

    Hello Tanuj,
    You need to use a page format greater than 255 columns for sure. However still if it does not solve the issue then you may consider using the note 186603.
    PS: I guess you are on a higher release than 4.6 C . For this release this note íIt has a text attachment for a report tat allows to display such spool requests.
    Regards.
    Ruchit.

  • Support for file extensions with more than three characters when saving - I want my FLAC!

    Why does the Wave Editor still drop characters from filenames with more than three character extensions when you save a file? But since -opening- a FLAC file with an extension of ".flac" doesn't get chopped to ".fla", why does Audition still chop off the extra character when -saving-?
    It gets old quickly when you have to save, close and reopen files in order to get Audition's Multitrack editor to play nice and be able to find files when you reopen the Session.
    Given that the FLAC filter is open source, I may just have to modify the code and recompile it to force a save to ".fla"... But of course, ".fla" is a Flash file extension, which I also use, so that is a crude hack for me.

    Hi bro...
    use in BYTE mode in place of in TEXT mode. and at the end of each line give some special charactor so as to distinguish between lines.This is effected  by unicode check too
    regards
    Edited by: Mohit Kumar on Feb 9, 2009 9:44 AM

  • Anyone with more than one iPhone 6/6+ in same order getting there phones shipped if all your phones didn't have 9-19 when you ordered?

    Our Verizon account has 10 lines and I figure we're paying over $7,000 a year, when I think of how much money total we have payed to Verizon only to be jerked around and around and lied too over and over again really does make me sick.  6 of these contracts have ended and 3 will be up in next couple months and 1 has a year left so the cancelation fees would not be that bad. And with the other big carrier I've heard it might be cheaper on monthly service. All I wanted from Verizon was for them to do whats right.
    I Ordered
    iPhone 6 16gb  gray
    iPhone 6+ 16gb gray
    iPhone 6+ 64gb gray
    iPhone 6+ 64gb silver
    all on the same order. I finished at 3:19 am est and got a date of 10/14 even though all the phones except the 6+ 16 gb gray had 9/19. Got confirmation email at 4:56 will ship by 10/14 I got worried that all the phones would not ship till 10/14 and contacted verizon thru facebook messenger. They told me my phones would ship in the order received and not be held up by a phone that wasn't available in my order. And based on the time of my order she said 9/19 for the 6 and 6+ silver, 10/7 for the 6+ 64 gray , 10/14 for 6+ 16 gray. On Monday morning my status changed to 9/19:):) in the afternoon in changed to unknown. I called 611 and rep went thru all my phones with a time sheet she had and said i should get all but the 6+ 16 gray on 9/19, she said that one you had to order by 3:00 to get on 9/19. On Wednesday my status changed to 10/14 , called 611 again and this lady told me all my phones had 10/14 listed after them. She told me she didn't know  what to tell me that Apple ships the phones and its out of Verizon's hands because they don't have the phones. then she told me to call Apple (and gave me the phone # ) and see if they ship preorders with more than 1 in a order when their available or wait till all are. I called them ( they laughed that Verizon had me call them) and they don't hold up orders . Called customer service back and guy said at least 10 times ....I ASSURE YOU VERIZON WILL NOT HOLD YOUR PHONES!!!  i said of course they're not actually putting them in a box and waiting for all, they're sending them to other people who ordered after me. I asked him if my order could be separated/ rebuilt and do a (jump the line request)  so i could get my phones when i should. He said there is no such thing at verizon....he has worked there many years and if there was he would know. Someone posted # to Internet orders so i called them Thursday morning, spoke to a very nice guy he said my phones that i should get i would and i should get an e-mail later that day and if i didnt get anything by 8:00 pm to call back. Before we hung up i asked if I didn't  get anything did he know if they could cancel/separate/rebuild and do jump the line, he said they can do that and put me on hold while he spoke with a supervisor, he came back and said if nothing happened that day they would do that with my order. I got nothing, called Internet orders back at 8:30pm... went thru my history and asked them to do the rebuild. She transferred me to supervisor who REFUSED to rebuild my order, that is only for orders that have a technical error. She was also the first person from Verizon to tell me that they DO NOT  ship orders in multiple shipments, they will only send when everything is available. She then said your order was given a delivery date of before 10/14  and that's when you'll get all your phones. I let her know that there is nothing about that confirmation that tells me that the phones that I ordered that had 9/19 deliver by dates would not be delivered then, 9/19 is before 10/14.

    Same thing happened to me!!! They made a shady business move and they should be ashamed. Placed a pre-order for an Phone 6 and an iPhone 6 Plus at 2 AM on the 12th and got my pre-order in line just like everyone else did that morning. The 6 said delivery by 9/19 and the Plus was already back ordered to 10/7 but that's fine, I expected the Plus to be harder to get anyway. Being that both phones were eligible it made sense to just place one order given this hasn't been an issue in the past. However, Verizon moved my iPhone 6 pre-order delivery to coincide with the back ordered Plus so they don't have to ship each phone separately!!! I have to wait for something on backorder while the other is ready so they can save on shipping cost. I expected the one that I pre-ordered IN TIME FOR A 9/19 delivery and waited my turn "in (on)line" like everyone else I should get that when it told me that in the checkout, THEN send the Plus when it becomes available. I even have the confirmation email that says "Deliver by 9/19"!!!  Every company you order from sends you the backorder item when it becomes in stock, they don't wait and hold the entire order for it. WHAT A BUNCH OF CRAP!!!

  • By subscribing to Creative Cloud(Photoshop and Lightroom), does it come with more than one license, and is it possible to install it on both Windows and Apple(if it comes with two licenses)? Thank you.

    By subscribing to Creative Cloud(Photoshop and Lightroom), does it come with more than one license, and if it does, is it possible to install on both Windows and Apple's OX? Thanks.

    A Cloud subscription provides for installing working installations on two machines.  You can have mixed operating systems (both Windows and Apple's OX).

  • Problems deploying Windows 7 x64 computers with more than 8GB RAM

    SCCM 2012 R2 CU1
    Windows 7 x64
    We have a weird problem after upgrading from SP1 to R2 CU1. We have built a Windows 7 64 bit image with the latest updates (currently September 2014 updates). It deploys fine to all computers. But after some days – don’t know exactly – guess after 4-7 days
    - we start getting errors on computers with more than 8 GB of RAM. The errors just start out of the blue. We didn't change TS, image or driver package.
    The error shows in 3 different ways – depending of the computer model.
    1) BSOD – STOP 0x000000F4. Disk error.
    2) Task Sequence error 0x87D00269 when installing the first Application in TS. The error seems to have something to do with Management Point not found.
    3) Task Sequence simply stops after installing CMclient. No errors - it simply stops.
    For instance we get the BSOD on the Lenovo ThinkCentre M93p. But on the ThinkCentre M83 we get the TS error 0x87D00269. M93p and M83 uses the same driver package. They consequently  fail every time after the error has begun. If we reduce (remove physically)
    the memory to max. 8GB of RAM, they successfully run the Task Sequence.  We get the above errors on both Lenovo and HP machines with more than 8GB. 
    I made a copy of the production TS and started testing. I created a new driver package for M93p/M83. It contains only the NIC drivers. Now M93p an M83 successfully finishes the TS. Adding sata or chipset or MEI/SOL drivers to the package I get the 0x87D00269
    error on both m93p and M83. At least not the BSOD on the M93p ;-)
    Tried setting  SMSTSMPListRequestTimeout to 180 in the TS. Also tried putting in a 5 minute break before installing the first Application in the TS. Also tried putting in SMSMP=mp1.mydomain in the installation properties for the CMclient. It is still
    the same problem.
    Investigating the smsts.log on a computer with the 0x87D00269 error.
    Policy Evaluation failed, hr=0x87d00269 InstallApplication
    25-09-2014 08:59:59 3020 (0x0BCC)
    Setting TSEnv variable 'SMSTSAppPolicyEvaluationJobID__ScopeId_654E40B7-FC55-4213-B807-B97383283607/Application_d9eea5a0-0660-43e6-94b8-13983890bae2'=''InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    EvaluationJob complete InstallApplication25-09-2014 08:59:59 3020 (0x0BCC)
    MP list missing in WMI, sending message to location service to retrieve MP list and retrying. InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    m_hResult, HRESULT=87d00269 (e:\qfe\nts\sms\client\osdeployment\installapplication\installapplication.cpp,1080) InstallApplication
    25-09-2014 08:59:59 3020 (0x0BCC)
    Step 2 out of 2 complete InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Install application action failed: 'SCIENCE PC Guide'. Error Code 0x87d00269 InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Sending error status message InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
     Setting URL = http://mp1.mydomain, Ports = 80,443, CRL = false InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Investegating the 0x87D00269 error on the siteservers Status Messages Queries is weird.
    Install Static Applications failed, hr=0x87d00269. The operating system reported error 617: You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that
    you have not previously used.
    Hopefully this is a bug in translating the errorcodes? Just to be sure I checked all the SCCM serviceaccounts and none of them have expired passwords.  And again why only on computers with more than 8GB RAM.
    Anyone else had problems rolling computers with more than 8GB og RAM?
    Why does this happens after a few days? To begin with, it runs just perfect and then starts failing on all machines with more than 8GB. Without a change in TS, image and driverpackage. We have seen this pattern for the last 3 month after
    updating our image with the latest Windows Updates. It all started after updating from SP1 to R2 CU1.
    Why does it only affect machines with more than 8GB RAM?
    How to get rid of the 0x87D00269 error?
    Seems to be somehow related to driver installation mechanism in SCCM in combination with Windows 7 64 bit, +8GB RAM and SCCM 2012 R2 CU1 or perhaps just R2.
    Any help or hints would be appreciated!
    Thanks
    Anders

    We have the same workaround, using a x64 boot image resolved all our issues with WinPE 5.0.
    Machines with >4GB of RAM
    Lenovo ThinkPad T540p failed applying drivers with 80040005
    Black screen/white cursor issues intermittently
    No updates from Microsoft, they are still looking through the logs, but we have updated our boot images and all is well now. Our case it still open with Microsoft, they are researching the logs.
    Daniel Ratliff | http://www.PotentEngineer.com

  • Problem with closing other firefox windows when window in use has more than 1 tab open

    If I have multiple firefox windows open, and the one that I am using has more than one tab open, when I try to close one of the windows that I am not using by hovering over the firefox icon on the taskbar, then clicking the cross on the other windows, a message appears asking me if I want to close a window with more than one tab open. This means that firefox is trying to close the window that I'm using, not the one I'm trying to close. Please note this only happens when I hover over the icon on the taskbar then click the cross for the window I want to close. If I open the window properly, then click the cross on the window itself, it works fine.
    Just wanted to know if anyone else has this problem, and if they do, then mozilla should probably fix it in their next update, it's getting really annoying now

    I can't find a bug on file for this on https://bugzilla.mozilla.org/ (although there are many taskbar-related issues under review).
    (1) Just to confirm, do you both have "Show tab previews in the Windows taskbar" turned off here:
    orange Firefox button (or Tools menu) > Options > Tabs
    (2) Have you tried disabling Firefox use of hardware graphics acceleration?
    You usually need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    orange Firefox button (or Tools menu) > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    If you restart Firefox, do you notice any changes?

  • Sales order with more than 9 items causing problem

    Hi,
    I have a situation here.
    A sales order is created in the system and since it is order related billing so its billing document is also generated. The billing document is not relevant for accounting. So, the only 2 documents are a sales order and its billing document.
    Due to some technical restrictions,if the number of lines is more than 9 the printout wont come.Henceforth,the user is unable to take a printout so I need to give him a solution.
    What shall I suggest him?

    Hi,
    >So, my question is that,should I ask the user to create a credit memo wrt the billing document and then split the sales order with 2 invoices(one with say 5 and the other invoice with the rest of the quantities)?
    So, if my undestanding is right then you want to create a credit memo after invoice ? If yes, then why are you splitting the sales order ? Also, this is something strange kind of ABAP logic which would not allow to print an invoice with more than 9 line items... Now, as you said if your sales order is having more than 9 line items then only print doesn't come.. right ? then in your case at this moment there are only 9 line items so ideally you'd be able to get a print.. right ?
    I think there is some confusion out here with your two posts.. kindly clarify...
    Hrishi

  • JSR-75 PIM API creating Contact with more than one Number (Phone,Fax ...)

    Hi everybody
    I try to create a contact with more than one Phonenumber using the method contact.addString(...) .
    Contact with one single number is no Problem but contacts with more than one Number are ignored and are not stored to the phonebook. I try to add the Numbers using a for -loop. Is there an other way to solve this Problem?
    please Help.
    Thank You.

    Wonder if you have made any progress - if so,
    could you share ?

  • Is there a stereo bluetooth headset that can pair with more than one device at a time?

    Is there a stereo bluetooth headset that can pair, i.e. multipoint, with more than one device at a time?
    Are the MacBook and iPhone 4 capable of multipoint bluetooth technoloagy?
    The goal is for my wife to be able to watch her Korean TV soap operas on her MacBook and still receive a call on her iPhone 4 via a stereo bluetooth headset.
    I was looking at the Motorola S10-HD but after further review saw that it only pairs with one device at a time.
    Appreciate any and all input. My Googling has returned no results.
    Rick

    TeslasBB wrote:
    pairing my BB8330 with my blue tooth earphone(TM:jawbone) and my microsoft sync thats in my car simultaneously? if i pair with the car, will i have to pair my jawbone all over again?
    You can only pair one device at a time to your 8330, or any other phone for that matter.  The "pairings" are saved to the phone, you can use one or the other and you won't have to pair it again.  Once you turn your bluetooth device on and the phone is on, they will find each other again.
    Hope this helps,
    John
    Stevie Ray! 1954-1990
    ** Don't forget to resolve your post with the accepted solution.

Maybe you are looking for

  • How to use single ant build script to package the application with and without native extensions

    Hi, I am using iOS native extensions for Adobe air. For this I am listing the extensions in the application descriptor file. Since the package with native extensions are meant to run only on device, I want my build script to work without native exten

  • Can't open any apps on my mac book pro that i downloaded from the cloud

    can't open any apps in i-tunes on my mac book pro that i downloaded from the cloud

  • VGA.ini error during reboot?

    Hi.. I have allmost pulling all my hairs out in frustation about this. Every time I reboot it hangs on VGA.INI. So obviously Im thinking if its the graphicscard having trouble initializing when warm. It starts everytime when cold and have been turned

  • Internet sales - List for the delivery type

    Hello everybody, In ISA, when you are connected, and you go in the basket page. You have an list option for the delivery type with "Standard", "Pick up" etc... I want to modify the element list. Exactly i want to delete one of teh option. How could i

  • Very Slow

    Hi , I have a New PC that im running CS6 and particularly with Indesign its painfully slow. i have been working on resolving these issues for quite some time now have tried all the tips and tricks i can google the PC should be the issue Dell T8510 3.