List of Expanders selectedItem issue

Hi,
In my wpf application, I have a listbox containing expanders. To implement a scenario that only one expander can be expanded at a time, I have done below binding
<Style x:Key="LeftPanelExpanderStyle" TargetType="{x:Type Expander}">
<Setter
Property="IsExpanded"
Value="{Binding Path=IsSelected, RelativeSource={RelativeSource AncestorType={x:Type ListBoxItem}}}"/>
Suppose we have two expanders E1 and E2 in the listbox. When I expand E1, corresponding listboxitem is selected. When I expand E2 corresponding listboxitem is selected. But if I again click on E2, the listboxitem is unselected and now ListBox has no
selection.
Is there any way to keep the selection if the same expander is expanded and collapsed?
I want to switch the selection only when any other expander is clicked.
Regards,
Sharda.

>>But if I again click on E2, the listboxitem is unselected and now ListBox has no selection.
Since you bind the IsExpanded property of the IsSelected property of the ListBoxItem, the IsSelected property will be set to false whenever the IsExpanded property gets set to false. This is how it works so you cannot simply use a two-way binding here.
You could however write some code to get the desired behaviour. You could for example handle the Selected event of the ListBoxItem and the Expanded event of the Expander and set the IsSelected property and the IsExpanded property as appropriate. Here is
an example that uses two helper methods to find the elements in the visual tree:
<ListBox x:Name="lb">
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<EventSetter Event="Selected" Handler="lbi_Selected"/>
</Style>
</ListBox.ItemContainerStyle>
<ListBox.ItemTemplate>
<DataTemplate>
<Expander x:Name="exp" Header="...">
<Expander.Style>
<Style TargetType="{x:Type Expander}">
<EventSetter Event="Expanded" Handler="exp_Expanded"/>
</Style>
</Expander.Style>
<TextBlock Text="{Binding}"/>
</Expander>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
List<Expander> expanders = new List<Expander>();
private void exp_Expanded(object sender, RoutedEventArgs e)
Expander expander = sender as Expander;
if (!expanders.Contains(expander))
expanders.Add(expander);
//select ListBoxItem
ListBoxItem lbi = FindParent<ListBoxItem>(expander);
lbi.IsSelected = true;
expanders.ForEach(exp => { if (exp != expander) exp.IsExpanded = false; });
void lbi_Selected(object sender, RoutedEventArgs e)
//expand expander:
Expander expander = FindChild<Expander>(sender as DependencyObject);
expander.IsExpanded = true;
private static T FindParent<T>(DependencyObject dependencyObject) where T : DependencyObject
var parent = VisualTreeHelper.GetParent(dependencyObject);
if (parent == null) return null;
var parentT = parent as T;
return parentT ?? FindParent<T>(parent);
private T FindChild<T>(DependencyObject depencencyObject) where T : DependencyObject
if (depencencyObject != null)
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depencencyObject); ++i)
DependencyObject child = VisualTreeHelper.GetChild(depencencyObject, i);
T result = (child as T) ?? FindChild<T>(child);
if (result != null)
return result;
return null;
You should generally not try to implement some kind of logic or behaviour in the XAML markup, that's not what it is for. You may define your bindings in the XAML markup but when you want to customize things you should implement the behaviour programmatically.
Hope that helps.
Please remember to close your threads by marking helpful posts as answer and please start a new thread if you have a new question.

Similar Messages

  • [svn:fx-trunk] 7916: Last of the List PARB changes - selectedItems is now a Vector of Objects and selectedIndices is a Vector of Numbers .

    Revision: 7916
    Author:   [email protected]
    Date:     2009-06-17 09:04:51 -0700 (Wed, 17 Jun 2009)
    Log Message:
    Last of the List PARB changes - selectedItems is now a Vector of Objects and selectedIndices is a Vector of Numbers.
    Also, put alphabetized spark-manifest correctly after my last checkin.
    QA: Yes
    Doc: Yes
    Checkintests: Pass
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/List.as
        flex/sdk/trunk/frameworks/spark-manifest.xml

    Gordon, it looks like its been a while since you made this post.  Not sure how valid it is now...   I am particularly interested in the LigatureLevel.NONE value.  It seems that it is no longer supported.
    How do I turn of ligatures in the font rendering?
    My flex project involves trying to match the font rendering of Apache's Batik rendering of SVG and ligatures have been turned off in that codebase.  Is there any way (even roundabout) to turn ligatures off in flash?
    Thanks,
    Om

  • Select list and hidden display issue

    Hi all,
    I am using a dynamic value select list, which when a button is pressed sets the value of a hidden display item. The next page then uses the hidden display item as part of an SQL query.
    It strangely sometimes works and sometimes doesn't - it often struggles with the values in the select list which are over 30 characters.
    Does anybody have any idea what's going on?
    Many thanks,
    Tom

    Hi
    I just re-ran the debug feature and have found an issue which could be the cause of the problem:
    Som of the data items in the dynamic select list have and ampersand (&) symbol. If I run the page once the hidden item displays the value properly:
    0.22: binding: ":HIDDENREGION"="HIDDENREGION" value="Tech Comms Media Utilities & Hi-tech" if I re-run the page after navigating around the application for a bit is displays this value:
    0.22: binding: ":HIDDENREGION"="HIDDENREGION" value="Tech Comms Media Utilities &amp; Hi-tech"Please notice the "& amp;" bit which has been added... Is there any way of getting rid of this? as it is interfering with the query on the next page.
    Many thanks,
    Tom
    Edited by: new_to_apex on Mar 2, 2009 3:13 AM
    Edited by: new_to_apex on Mar 2, 2009 3:14 AM

  • List Display/Report on Issued Materials

    Good day!
    Is there an available list display in which i can view all issued materials from the reservation?
    Thank you!

    hi,
    Use MB25, Can see it with the help of the scope of list as Goods Issue ticked..it may be for open reservations etc...
    Along with it, when you use dynamic selection, you can see for Final Issues, quantity withdrawn etc....
    the button is placed next to next of Execute button...
    Hope it helps...
    Regards
    Priyanka.P

  • Shareopint 2013 designer list form edit permission issue

    Hello,
    I have issue with SharePoint 2013 designer to edit the custom list form.
    Please refer this link for more details.
    http://community.office365.com/en-us/f/154/t/342245.aspx

    Hi,
    Its pretty simple. please check the users permission. The user should have the following permissions
    Full Control
    This permission level contains all permissions. Assigned to the Site name Owners SharePoint group, by default. This permission level cannot be customized or deleted.
    Design
    Can create lists and document libraries, edit pages and apply themes, borders, and style sheets in the Web site. Not assigned to any SharePoint group, by default.
    Contribution
    https://support.office.com/en-us/article/Permission-levels-and-permissions-49d456eb-d3c8-4402-86b1-deb911224afb
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Save XXL list object in SAPoffice issue

    Hello,
    One of my user recently got a new laptop and after that, whenever she used KSB1 to do the export to excel as pivot, she is getting the below option "Save XXL list object in SAPoffice". She is not getting the pivot table option. I tried to find her entry in report "SALV_BS_ADMIN_MAINTAIN" to delete, but, I could not find her entry. Also, she tried to test the same on another laptop too, there also she is getting the same error. I am not sure if it a Profile issue or GUI issue. Please suggest. Also, she maintained her profile with parameter "SALV_BS_ADMIN_XXL". I am not sure if it is a problem.
    Thanks.

    It's not an authority issue that SAP_ALL/SAP_NEW would fix either.  That 'error' happens when the XXL code can't find the correct version of Excel that it expects from the registry.  It behaves as if Excel is not installed and pops the SAPOffice document prompt.  Debug the XXL code from the laptop and you'll see what I mean  (or just from your PC to view the logic).

  • List item (combo box) issues...

    Hi,
    I have a form I'm creating that returns several records based on a query that the user may edit. I do not base these items on database values, but rather control the data within the form. I have created dynamic combo boxes for the return values (ie, they're only visible when valid values are returned to them). Basically, when I click on a combo box after the items have been populated, I want to populate the combo box, but exclude the values in the remaining combo boxes restraining the user from trying to specify the definition for a value type twice. I'm running into two problems. First, I use the when-mouse-click trigger on the combo box to populate the values, however, it seems it's automatically generating a scrollbar within the combo box, showing two arrows (which I don't want but can't seem to disable). Also if a user clicks on it twice, it's continuing to add values. I have used the clear_list function, but that seems to be causing other problems such as removing one value, but leaving another and after 2 clicks stops working. Has anyone done something similar or have an idea as to how I might get the functionality I want?
    Thank you.

    Can u try to attach a record group to the list item
    and you only populate record group with commands
    1. Create record group with 2 columns
    2. Populate the group
    FUNCTION POPULATE_GROUP
    (recordgroup_id RecordGroup);
    3.Populate list
    PROCEDURE POPULATE_LIST
    (list_id ITEM,
    recgrp_id RecordGroup);
    this way you will have better control.Hi,
    This actually worked great. Thank you!
    The only issue I'm still having is the initial when-mouse-click action is bringing up a scrollbar and minimizing what you can view to one value inside the existing list item, but allowing you to scroll through the list displaying one item at a time (within the list item). If I click twice, the scrollbar disappears, but you still can't see the full list. If I click three times, it starts functioning the way I want it to on the initial click by displaying all values as a combo box list with no scrollbar (all values visible). Is there a behavior I'm overlooking that will force it to behave this way from the initial mouse click?
    Thank you again!

  • List of forum editor issues and bugs

    This thread is work in progress. Please report additional bugs and issues you are aware off. I will try to reproduce the issue and add your information to the appropriate columns below. Thanks!
    Note: For accurate results, the width of your web browser window needs to be adjusted to show the following dotted line as a single line. Your screen resolution needs to be at least 1280 pixels wide.
    Issue
    Date
    Summary
    Browser
    Status
    Remark
    1
    08-Jan-2014
    last verified
    24-Aug-2014
    Text copied from discussions, such as code, result in double line spacing when copied to the host system.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    fixed
    fixed
    1.1
    1.2
    2
    08-Jan-2014
    last verified23-Aug-2014
    Cannot append text or code to Syntax Highlighting.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    3
    08-Jan-2014
    last verified23-Aug-2014
    Cannot properly select text or code with Syntax Highlighting.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    fixed
    fixed
    fixed
    3.1
    4
    08-Jan-2014
    last verified23-Aug-2014
    Subsequent edit sessions add empty lines to Syntax Highlighting code.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    5
    08-Jan-2014
    last verified23-Aug-2014
    Copying text under Syntax Highlighting includes line numbers.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    open
    fixed
    fixed
    5.1
    5.2
    6
    08-Jan-2014
    last verified23-Aug-2014
    Cannot copy and paste the whole Syntax Highlighting frame.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    fixed
    improved
    improved
    6.1
    6.3
    6.3
    7
    09-Jan-2014
    last verified23-Aug-2014
    Syntax Highlighting suppresses empty lines and white space when browsing.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    8
    08-Jan-2014
    last verified23-Aug-2014
    Syntax Highlighting overwrites font.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    improved
    improved
    improved
    8.1
    8.1
    8.1
    8.1
    9
    09-Jan-2014
    last verified23-Aug-2014
    Cannot paste any text into the editor window.
    Firefox
    Internet Explorer 11
    Safari
    Chrome
    working
    fixed
    working
    working
    10
    09-Jan-2014
    last verified23-Aug-2014
    Cannot change the font when selecting several lines of text.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    working
    fixed
    improved
    10.1
    10.1
    11
    09-Jan-2014
    last verified23-Aug-2014
    Changing the font gets confused and shows the wrong font.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    working
    open
    open
    11.1
    11.3
    11.3
    12
    09-Jan-2014
    last verified23-Aug-2014
    Pasting a URL captures the text insertion point.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    13
    16-Jan-2014
    last verified23-Aug-2014
    Quoting captures insertion point.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    14
    24-Jan-2014
    last verified23-Aug-2014
    Adding HTML label tag for no apparent reason.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    15
    28-Feb-2014
    last verified23-Aug-2014
    Undo disables functions, such as Quote and Syntax Highlighting and results in complete loss of text when attempting to post.
    Firefox
    Internet Explorer
    Safari
    Chrome
    Improved
    working
    working
    working
    15.1
    16
    28-Feb-2014
    last verified23-Aug-2014
    Syntax Highlighting shows several <span> when browsing.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    17
    23-Jun-2014
    last verified23-Aug-2014
    When specifying a table width, typed numbers are falling through and land the table as text.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    18
    23-Aug-2014
    Quoting of content with Syntax Highlighting looks fine when editing, but when posting, quoting around SH is removed.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    19
    22-Aug-2014
    Text like "Patch 11.2.0.3" are converted to non-functional hyperlinks when posting.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    20
    20-Jul-2014
    last verified23-Aug-2014
    The editor toolbar disappears behind the forum banner when scrolling to the next page.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    21
    17-Nov-2014
    Insertion point displayed in text under Syntax Highlighting is not showing the real position.
    Firefox
    open
    22
    23-Aug-2014
    Hover-up and pop-up menus are in the way then typing text in tables and code under Syntax Highlighting.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    23
    23-Aug-2014
    Copying text from the first post of a thread includes a grey background.
    Firefox
    Internet Explorer
    Safari
    Chrome
    working
    working
    open
    open
    24
    24-Aug-2014
    Copy and paste does not retain the size of a picture and resizing produces bad quality images. Resizing also no longer shows picture dimensions. Copying images between documents does not copy size settings.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    25
    17-Nov-2014
    Copying and pasting of text determine the source format and creates unwanted or useless tables, affecting also Syntax Highlighting.
    Firefox
    open
    26
    17-Nov-2014
    Adding additional rows to tables do not inherit the previous cell formats, such as vertical and horizontal center line.
    Firefox
    working
    27
    02-Dec-2014
    The Jive spell-checker is difficult to use. Pointing and clicking of marked text has to be very precise in order to function, or the spell-checker deactivates itself.
    Firefox
    open
    Ref. No.
    Remarks
    1.1
    Pasting of regular text results in double-line spacing. Pasting of code with Syntax Highlighting does not produce double-line spacing, but includes line numbers when pasting in a rich text editor window, or results in indented lines when pasting to the command prompt or plain text window.
    1.2
    Pasting of code with Syntax Highlighting includes line numbers when pasting into notepad or to the command prompt. Copying of normal text does not wrap and appears a single line when pasting into notepad.
    3.1
    Selecting of code and copying works, but selected text looks like a tape and is not visible.
    5.1
    Copy works find and does not include line numbers, but the text is indented.
    When pasting text into a rich text enabled editor window, it includes line numbers.
    5.2
    Code in syntax highlighting does not copy blank lines, but copies line numbers.
    6.1
    Only parts of a code segment can be copied, but not the complete code segment. Copy and paste always copies an additional line that was actually not selected.
    6.3
    Copy and paste only copies the code but not syntax highlighting, which can however be can be re-applied.
    8.1
    Applying syntax highlighting now applies a font that is suitable for displaying code.
    However, it is not possible to change the font, if necessary, or apply color or bold or highlighting. Color can be applied, which looks like double-vision, but anyway is removed when posting.
    10.1
    Not working reliably. Sometimes the last line selected is not changed, or only the first line changes.
    11.1
    Sometimes fonts are not displayed properly, for instance, the text insertion point may show Arial, but the text is Courier. There is no clear pattern when this happens or what triggers the problem.
    11.3
    The text insertion point or selected text always reports the font name "font family", regardless of the font applied.
    15.1
    Ctrl-z aborting editor functions under Firefox on Mac OS X. However, Cmd-z, which is standard, works properly. This problem does not affect Safari.
    Issue
    Steps to reproduce
    Workaround
    1
    Copy a couple or more lines of text from a discussion window and paste it into any application or document on your host system. For instance:
    The following may produce double line spacing:
    If there are two or more ways to do something, and one of those
    ways can result in a catastrophe, then someone will do it.
    The following should work correctly:
    If there is a possibility of several things going wrong, the one that will
    cause the most damage will be the first one to go wrong
    Use Shift-Return instead of Return to terminate the end of lines when creating text.
    Use a different browser to perform cut and paste operations, such as Apple Safari or Google Chrome.
    2
    Paste some text code into the forum editor window. Select the code and choose Syntax Highlighting:Plain from the editor toolbar (>>). Close and re-edit the thread. It is not possible to place the insertion point below the block of code in order to add any additional lines of code or to add any normal text. For instance:
    mknod compress_pipe p
    mknod export_pipe p
    chmod +rw export_pipe compress_pipe
    nohup split -b 8192m < export_pipe &
    nohup gzip < compress_pipe > export_pipe &
    exp system/passwd full=y direct=y consistent=y compress=n \
    buffer=10485760 file=compress_pipe
    It is possible to insert additional code or text below Syntax Highlighting, provided the frame it is not the end, as shown in issue 7.
    Add any line of text at the end of your code before applying Syntax Highlighting to the lines above.
    Adding code within the frame of Syntax Highlighting works in Safari and Google Chrome.
    3
    Re-edit a post with Syntax Highlighting. It is not possible to properly select any lines of code. An additional empty code line is added and the focus is shifted. The selection mask does not match the actual text. It is pretty much impossible to re-edit Syntax Highlighting.
    Screenshot: http://img24.imageshack.us/img24/6121/viun.jpg
    Use Safari or Google Chrome when to re-edit text or code under Syntax Highlighting.
    4
    Every subsequent edit of a post with Syntax Highlighting adds an empty blank line to the code block with an incremented line number. The resulting empty lines (07, 08) shown in the screenshot cannot be selected or removed unless there is text below the code frame as shown in issue 7. Screenshot: http://img809.imageshack.us/img809/5514/cxkd.jpg
    Removing of empty lines woks in Safari and Google Chrome.
    5
    When browsing code with Syntax Highlighting, it is not possible to select the code without the line numbers. Screenshot: http://img835.imageshack.us/img835/6626/j7n7.jpg
    Select and copy each line separately. Or use Firefox or Google Chrome, but note issue in Remark 5.
    6
    When editing, it is possible to copy and paste lines under Syntax Highlighting when selecting the lines, but not when selecting the complete Syntax Highlighting frame.
    Carefully select text without the Syntax Highlighting frame boundaries.
    7
    Empty lines and white space (identation) in Syntax Highlighting are suppressed when browsing, although they exist in the actual post. For instance:
    mknod compress_pipe p
       mknod export_pipe p
    Screenshot when editing the above code:
    http://img401.imageshack.us/img401/673/kmy4.jpg
    8
    Syntax Highlighting changes the font to Arial and it is not possible to apply something more suitable for the displaying of code, such as fixed-width Courier New.
    mknod compress_pipe p
    Arial: 1l0OI
    Courier New: 1l0OI
    Arial: 1l0OI
    Courier New: 1l0OI
    9
    It is not possible to paste any text into the editor window.
    Use a different web browser or downgrade to IE 10.
    Or enable F12 Developer Tools from the Tools menu. Press Ctrl-8
    Change the default document mode from Edge to IE 10. Select Leave this page.
    10
    Create a new thread and type several lines of text. Then select select several lines of text and choose a font, e.g. Courier New. Not all selected lines are changed and only a couple of lines remain highlighted. For instance:
    It is difficult to prove the existence of aliens.
    Photos exist with aliens, but they could be fake.
    On the other hand, photos without aliens could be fake too.
    11
    Select a line of text and change the font to Courier New. Then select the line again and it will show Arial. Change the font to Courier New and the text will change back to Arial.
    12
    Copy a URL and paste it into the editor window. The URL will be shown as a hyperlink using blue text. It is not possible to continue with normal writing without changing the text of the link. The text insertion point is captured inside the text of the link when trying to click below the link.
    After pasting the URL, use the arrow key or mouse to move the cursor to the end of the link, then press RETURN and start writing normally. You can than move the cursor to the beginning of the line and use BACKSPACE to move the text up, after the link.
    13
    When replying to a thread and pressing the Quote Previous Message button and then clicking inside the quoted text, for instance, to remove some of the content, it is sometimes no longer possible to move the text insertion point outside of the quoted text back to the normal editing area.
    When this happens it helps to switch to HTML and then switch back to the Full Editor.
    14
    While writing normal text in the editor, it sometimes becomes impossible to edit a line of text. When clicking on any text to move the text insertion point, it selects the complete paragraph instead. http://imagizer.imageshack.us/v2/800x600q90/585/d0v5.jpg. When pressing the "Post Message" button, a dialog appears to "Stay" or "Leave" the page.
    Apparently the editor adds HTML label tags for no apparent reason, which can be seen when switching the editor to HTML mode. http://imagizer.imageshack.us/v2/800x600q90/199/1r5a.jpg
    15
    Copy some text into the editor window. Select the text and choose Syntax Highlighting form the >> insert toolbar. Undo using Ctrl-z. It is no longer possible to use any of the >> insert functions. After that it is also not possible to post the message, resulting in an unexpected error and the content is lost.
    16
    Syntax Highlighting shows several <span> at the beginning and end of the Syntax Highlighting block after posting. This affects old and new posts.
    17
    When changing the width of a table column, entering the 2nd number gets punched into the cell content instead.
    After entering the first number, click in the entry field again to enter the 2nd number.
    18
    19
    Automatic insertion of links to support.oracle.com contains more info, including responses from Oracle staff.
    20
    Change the width of browser window until the editor toolbar appears. It will then stay on top when scrolling through pages.
    21
    Select Syntax Highlighting, Plain from the >> insert menu, then copy and past several lines of text (code) into it. Or, copy and paste the text, then mark the text with the mouse and select SH from the insert menu. Many times, the insertion point is not reflecting it's actual position when you click inside the text. Very often it is also not possible to position the insertion point to the end or beginning of a line using the left and right arrow keys; the insertion point jumps to the next line, even though the end of the line has not been reached.
    For instance:
    The text insertion point [|] is showing up between the words "point" and "is", but when pressing the delete key or entering text, it affects a different area.
    22
    The following is a picture with text and Syntax Highlighting.
    In tables, pressing the delete key will remove or rearrange the hover-up window.
    23
    The original or initial post of a thread is shown with a grey background when browsing. Depending on the web browser application, this background is also copied when doing a copy and paste of the text, provided the target window supports rich text editing.
    Change the target editor window to plain text.
    24
    After resizing a pasted image to the same size than the original, the quality is much worse. The following shows a screenshot of the original and copied image:
    When resizing a picture by moving the image end-points, the editor does no longer show the current picture dimensions (pixel x pixel) as it did in Jive 5. Also when copying a picture between documents, the picture is enlarged and requires resizing.
    25
    Copy and paste content from /etc/oratab, for example:
    The same also happens when pasting the text into a Syntax Highlighting field.
    It is often necessary to use undo (ctrl-z, cmd-z) to get rid of the mess.
    26
    Please see below screenshot:
    27
    Message was edited by: Dude!

    moniquevdb_oracle wrote:
    Holy.... wow, this is helpful, thank you so much for kicking this off, Dude!
    BluShadow I know you are in favor of reenabling code formatting and ditching the Syntax Highlighter altogether. I've also heard that users would prefer the advanced editor to open by default. Anything else on the wishlist?
    correction, I would certainly be in favour (favor to you ) of reenabling code tags, mainly because I work quicker by copy/paste and by keyboard than by having to click through a load of buttons (that currently don't do what they should).  I've not said that syntax highlighting should be ditched altogether, and I'd certainly be in favour of it being there, just so long as it provided a decent formatting that was appropriate, so code actually looked like code, and the ability for people to copy/paste the code out of the forum to their own environment wasn't corrupted with double line spacing (as dude has already mentioned) and the addition of the line numbers it puts in (the line numbers are useful for reference on the forum, e.g. when we want to say "you're problem is on line X", but not good when you copy/paste code out to your environment and have to spend ages deleting them all to get the code to do anything).  If it's too difficult, then removing the line numbers from the code formatting would be preferable to having them there and not being able to copy the code out without them.
    I agree with dude that it would be good to be able to highlight portions of code with bold or colours, which the old forum didn't allow, but this one does, so it's really a combination of old and new that's needed.  And as dude highlights, the supressing of blank lines is a pain as it can make the posting of multiple code commands become all compressed and difficult to read, and is not representative of what we have in our interfaces such as SQL*Plus etc.
    Basic example:
    Copy paste from my SQL*Plus window into the forum (and me applying courier new and quoting it)...
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE                    SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980 00:00:00        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981 00:00:00       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981 00:00:00       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981 00:00:00       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981 00:00:00       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981 00:00:00       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981 00:00:00       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987 00:00:00       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981 00:00:00       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981 00:00:00       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987 00:00:00       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-1981 00:00:00        950                    30
          7902 FORD       ANALYST         7566 03-DEC-1981 00:00:00       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-1982 00:00:00       1300                    10
    14 rows selected.
    SQL> select * from dept;
        DEPTNO DNAME          LOC
            10 ACCOUNTING     NEW YORK
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
            40 OPERATIONS     BOSTON
    SQL>
    but in my SQL*Plus window it looks like.
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE                    SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980 00:00:00        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981 00:00:00       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981 00:00:00       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981 00:00:00       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981 00:00:00       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981 00:00:00       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981 00:00:00       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987 00:00:00       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981 00:00:00       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981 00:00:00       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987 00:00:00       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-1981 00:00:00        950                    30
          7902 FORD       ANALYST         7566 03-DEC-1981 00:00:00       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-1982 00:00:00       1300                    10
    14 rows selected.
    SQL> select * from dept;
        DEPTNO DNAME          LOC
            10 ACCOUNTING     NEW YORK
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
            40 OPERATIONS     BOSTON
    SQL>
    Obviously that's a basic example; in reality we can be providing a solution to someone, explaining multiple steps and commands to demonstrate their issue and the solution, and having to go back through the code once we've pasted it adding back in all the line spacings, is a real pain and time consuming.
    Certainly, having the advanced editor options available immediately for replying would be better than having to switch to it manually, especially as most people using these forums are going to want to paste code in (what with it being a technical forum and not really a social forum), and the basic editor just doesn't allow for any suitable code formatting (unless the person is mad enough to switch to HTML mode).

  • Creating Lists and Other Formatting Issues

    I'm trying to convert from Entourage right now as I prefer the the Mac address book and calendar to those of MS however, I'm finding that the one application that seems to be lacking is Mail.
    Does anyone have any suggestions as to how I can: create lists, set mail priority, permanently adjust formatting (for composing emails), etc?
    So far, I'm pretty much at a loss; thanks.

    Cran,
    Mail is somewhat limited in that respect. The only options you have for default format are what you can set in Preferences / Fonts&Colors.
    Bullets and numbers as a style setting are not possible. When you receive a bulleted mail and try to respond to that with the original mail now as template text, you will find Mail behaving very strangely indeed.
    as for the priority setting, when you make a new mail, you will find a small boxed icon in front of the account settings, click on that, select customize and you can choose priority, Bcc, etc (not that there is much etc.)

  • ICal Calendars list blank, MissingSync, MobileMe issues

    I'm using OS X 10.4.11 and iCal 2.0.5. I recently installed Missing Sync 6.0.4 for Palm OS (to sync with a Palm TX), so am finally actually using iCal instead of the Palm calendar. I also just got around to resubscribing to .mac (without realizing that I was doing so smack in the midst of the MobileMe launch). I'm listing all three of these questions together in case there's some connection -- most likely something connected to MissingSync or MobileMe setup.
    1. iCal was working fine for me, synched with the Palm via Missing Sync, etc., but now I can't see the list of calendars. I can see events in the calendar itself, color-coded for different calendars, but nothing shows up in the calendars list (left-hand pane). Any ideas how to get that list back?
    And two other questions, in case anyone here has answers:
    2. Sent this query to Mark/Space (MissingSync) a couple days ago, but no reply yet -- when I sync Palm and iCal, events entered on the Palm do not get copied to the laptop. No error messages, and all else goes fine ... Events conduit is set for "Synchronize," "All calendars," and to put read-only events in "Unfiled."
    3. Sent this query twice to Mac's MobileMe help, but have gotten only a completely unhelpful form letter with generic links back ... (Yes, I realize their support people are probably utterly bogged down right now.) I used to have .Mac, but expired 1/07. Now have a .Me account. I can't sync at all, even just to my iDisk (let alone with my other Mac) -- .Mac in System Preferences won't let me set up Sync (when I click that tab, it "thinks" for a while, then get a "problem with the sync operation: .Mac login failed" error message). Specifically re: iCal: is there some workaround? Some painless way to sync iCal events to iDisk without a functioning Sync feature? I'm hoping the sync failure is just a temporary glitch, and not a sign that I need to upgrade to Tiger if I want basic .Mac-level functionality, but main thing is just being able to view/use my iCal calendars from my work computer!

    Installation continues to degrade. On startup of the application, all buttons and controls are missing.
    Closing and restarting iCal causes the buttons and controls to return, but all calendar entries are missing.
    Restarting the computer causes the sequence to start again - controls are missing, restarting the app brings them back but then calendar entries are useless.
    Totally useless.

  • Adding to the List of Bionic's Issues.....

    Ok these are some of the Issues I'm experiencing on my new Bionic...I upgraded from a Droid Incredible and I had to warranty replace the device twice so I'm fairly used to having to Activate a new device, but most people know that having to do that can be time consuming so to make things go smoother I back up on my SD card my contacts, Kindle (Mobil) books, photos, mp3, ringtones etc.. Etc.. But one of the most important things to back up is Apps. I have a lot of must have apps and to try and remember them all is impossible. Or of course I could write them all down then go back to the market and DL them all individually. Or you could do these easiest method which is download an app that backs them up for you on your SD card. I have been using Apps Backup & Reinstall. It's been great so far using it on my Incredible. That is until I upgraded to the Bionic and here's my first and most major issue.
    1. I activated my new device and the first thing I do is sync my backed up contacts, along with my apps using the app I already mentioned. I also had a lot of Kindle Mobil files on my SD card that I had on my laptop that I like to read on my devices. Well when I went to reinstall all my apps the Apps Backup & Reinstall said I didn't have any apps backed up on my SD card which I knew was false. Then I went to my Kindle app to look for my books located on the SD card which I found was also having the same issue. The Bionic was saying I had nothing in my Kindle app to read except the books that Kindle gives you for free when you download the Kindle app. So just to be sure that I didn't wipe my SD card by accident. I used to Astro File Manager app to check my files to make sure I wasn't crazy. That's when I realized the Bionic had changed the SD card folder name to SD card-ext and the Internal memory was now called SD card. So I had a theory I went to the Apps Backup & Reinstall app and backed up only the current apps I had on the Brand New Bionic and sure enough it backed up the apps on the Internal Memory not the SD card. Which like I said before Astro was saying it was named SD card and my SD card folder name was now SD card-ext. So I copied all my Kindle files from Sd card-ext and pasted them in the new SD card folder and viola the Kindle app now recognized the files. So I found that rather strange so I looked for a setting and the only setting I found was in settings storage to save files either to your internal memory or SD card but nothing to switch so the phone would read from either or both at the same time. I went to my mp3 player app and this had no problem seeing my music. But for some reason I can't get it to back up my apps to my SD card or read from the SD card to reinstall apps or my Kindle files so I can read my books. The simple solution is to just copy and paste everything over to my Internal memory but I shouldn't have to do that it should read from Internal and Sd Card memory.
    Issue 2.  When I'm plugged into charge my phone and if I try to unlock my phone using the pattern security method what happens it when I try to draw the pattern it keeps acting like instead of sliding to the next dot it turns red like I'm lifting up my finger. And of course if you do that to many times it locks you out of your phone or you have to log into your email to unlock your phone. This is a minor issue all you have to do is unplug your device then unlock it. But I felt maybe Verizon needs to know.
    Issue 3. Another minor issue but extremely annoying. I like to keep my device clean and the notification bar clear from all notifications unless I haven't read them, but this issue I noticed happening from day 1 as well. I got an update apps notification and a text message notification at the same time. Which anyone with this device realizes at the top in the notification bar it tells you by a + then a number well mine said +2. So I pulled down the notification bar and went to the  update my apps notification and by touching on the notification it takes you directly to the my apps section of the Android Marketplace. It works like this for every notification text,emails, facebook,twitter Etc... Which I'm sure your aware of. So I updated the apps in the Android Marketplace then I went and checked the text message. When the updates had finished I pulled the notification bar down to clear out the updated apps notification and that was all that was up in the notification bar was 2 new updated apps. So I hit the clear button. Which cleared out the notification bar I couldn't see anything like it should. Then I got another text and this time in the notification bar it said +4. Which I was confused bc I only had 1 text when I pulled down the notification bar. There was nothing else there but the text. After checking the text I again cleared the notification bar and it cleared out like it should. Then a little while later I received an email and again it said +4. So this is when I new there was an issue because in the notification bar there was only the email nothing else that I could see. So I rebooted my phone and after rebooting I still was having the same issue. Then I tried to put my phone into Sleep mode and it said that it couldn't go into Sleep Mode because a program was preventing it in the background or the cable was plugged in. Which it clearly wasn't. So I went to see running apps and I individually closed down the recent apps that were running. Then I rebooted again which cleared up the issue of the sleep mode and the notification bar issue. But the notification bar issue sprung up again. Which I have now devised that the only way to avoid this issue is to manually clear out all notifications by pressing the red minus sign in the notification bar. Another simple solution but again it should clear out either when I hit the Clear button or when I touch on the Notification itself by opening up which ever notification I have received.
    These are some of the issues I have noticed again would like Verizon to know about them. Thanks for taking the time to read. I really hope I explained this so you could understand.

    djkoz1978 wrote:
    Issue 2.  When I'm plugged into charge my phone and if I try to unlock my phone using the pattern security method what happens it when I try to draw the pattern it keeps acting like instead of sliding to the next dot it turns red like I'm lifting up my finger. And of course if you do that to many times it locks you out of your phone or you have to log into your email to unlock your phone. This is a minor issue all you have to do is unplug your device then unlock it. But I felt maybe Verizon needs to know.
    These are some of the issues I have noticed again would like Verizon to know about them. Thanks for taking the time to read. I really hope I explained this so you could understand.
    This is the only real issue I have had with the phone and I am not sure why this happens. I ended up changing mine to the code entry lock, which works well. My fear is getting completely locked out and having to do a factory reset. Other that this, I have had no other problems with mine.

  • NeverCompressed list vs. CM issues on pdf or images

    Symptom:
    *.pdf & images causing errors on e.g. opening in CM, esp. on J2EE versions below SPS15. This might happen occasionally or always.
    Technical cause:
    Compression by J2EE
    In J2EE default delivery 'image' & *.pdf is always on NeverCompressed key list.   
    Why compression might have been enabled again ?
    Wrong instructions are given for compressing pdf and images in several guides:
    1) http://service.sap.com/nw-howtoguides -> Portal, KM and Collaboration -> All -> How To Optimize Network Traffic in EP6.0, in Section "3.3.1 Configuring SAP Web Application Server (JAVA) Compression and Caching"
    2) http://service.sap.com/nw-howtoguides -> Portal, KM and Collaboration -> Portal -> How to … Fine Tune Performance of Portal Platform, in Section "3.3.1 Configuring SAP Web Application Server (JAVA) Compression and Caching"
    "NeverCompressed
    To enable script files compression, delete the following content types from the list: *.css, *.pdf, *.js, image, application/pdf"
    Check if this recommandation was followed.
    Compression doesn't make sense here roughly as compressing .gif or .jpg / .pdf does not bring any benefit of smaller content to be transfered, no beneficial ratio and is causing errors, esp. on J2EE versions below SPS15.                  
    Solution: 
    - add image and *.pdf again to NeverCompressed key anyway.                
    - Alternatively exclude e.g. gif via Mime key value {.gif,image/gif} if other relevant images types where compression does make sense are in use.
    The problematic HowTo guides will be corrected.

    and sorry for the shoddy typing.... ipad/bed/typing dont mix very well

  • Can one avoid names to be listed in packaged applications (issue tracker, for example)?

    I've installed the packaged app "Issue tracker" in a workspace, but now have a problem with German's law (and maybe others), which does not allow people to make reports that explicitely mention names of employees, except if you are their manager.
    So the issue tracker's reports, which can be used by anybody and display assignees' names, are not allowed by German's law !
    I guess that all packaged apps have the same users control mechanism. If so, this issue is not specific to the issue tracker. Is that right?
    To make the issue tracker compliant with German's law, one should be able to hide names or ideally to make them only visible by the employee's management.
    Hide name would imply:
    - Remove the updaters' name in the projects/issues
    - Remove assignees' name in the projects/issues/reports
    I guess this could be done via a plugin "display names" in the "build options".
    Make names only visible to managers would imply:
    - Assign a manager to each user
    - Adapt the display depending on the identity of the user
    Does this make sense? If so, I guess I should add an entry in Oracle Application Express Feature Requests, right?
    TIA for your feedback,
    Stefane

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • Views- icon and list, use as defaults issues

    Going from Tiger to Leopard, this new operation of views is different. Ok, just a statement. I have noticed that all of a sudden (I think going from 10.5.3 to 10.5.4), the "use as defaults" button doesn't really seem to do anything. If I have the main HD window open, in icon view, and then open view options and select "use as defaults" (after making some change in order for that button to be clickable), I can go back to other windows and they are still at list view. I made sure the "always open...." is not selected in those other windows. I thought the "use as defaults" was suppose to override and change every window there after to whatever you had set when you clicked use as defaults.
    I also notice that if I open the main HD window and have it in icon view, then open the applications window and move it from icon to list and close it, every other window I open will be in list view.

    Nope, once you set a window's settings, it'll retain it until you change it. The *use as defaults* only pertains to the window you're in and any folders you haven't already opened.

  • Flex List with data-grid issue any body can help me ......i added the full code below

    Thanks in advance
    Exactly wat i need is
    1.if i click the open button want to visible all datagrid ,its working perfectly.
    2.if i click the close button want to close all data grid ,its working perfectly.
    3. if i click a particular  list means want to visible particular datagrid..some times working good but some times not visible ...
    4.if i click the list if datagrid already open means want to close .some times creates extra space below the datagrid........
    if u cont get clearly please copy the below code and check it.......any other way to solve this problem?.......
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%" >
    <fx:Declarations>
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable]
    public var ArrUserList:ArrayCollection;
    [Bindable]
    public var listDB:ArrayCollection = new ArrayCollection([ {label: "2011", data:"jan",day:"saturday",date:"1-4-11"},
    {label: "2011", data:"jan",day:"monday",date:"13-4-11"}, {label: "2013", data:"jan",day:"monday",date:"1-5-11"}, {label: "2013", data:"jan",day:"wednesday",date:"14-5-11"}, {label: "2015", data:"jan",day:"tuesday",date:"11-5-11"}, {label: "2015" ,data:"jan",day:"friday",date:"1-6-11"} ]);
    public var loc_first_last_name:String;
    function Load():void
    ArrUserList=Find_Duplicate(listDB);
    for(var i:int=0; i<ArrUserList.length; i++)
    ArrUserList[i].click=0;
    Lst_userlist.dataProvider=ArrUserList;
    Lst_userlist.rowCount=ArrUserList.length;
    function Clink_lnk_open():void
    if(lnk_open.label=="Open")
    for(var i:int=0; i<ArrUserList.length; i++)
    ArrUserList[i].click=1;
    lnk_open.label="Close";
    ArrUserList.refresh();
    Lst_userlist.validateNow();
    Lst_userlist.dataProvider=ArrUserList;
    Lst_userlist.rowCount = ArrUserList.length ;
    else
    for(var i:int=0; i<ArrUserList.length; i++)
    ArrUserList[i].click=0;
    lnk_open.label="Open";
    ArrUserList.refresh();
    Lst_userlist.validateNow();
    Lst_userlist.dataProvider=ArrUserList;
    Lst_userlist.rowCount = ArrUserList.length ;
    function Click_UserName1(event:MouseEvent,data:Object):void
    loc_first_last_name=event.currentTarget.text;
    var str:String;
    for(var i:int=0; i<ArrUserList.length; i++)
    str=ArrUserList[i].label;
    if(loc_first_last_name==str)
    if(ArrUserList[i].click == 0)
    ArrUserList[i].click=1;
    else
    ArrUserList[i].click=0;
    ArrUserList.refresh();
    Lst_userlist.validateNow();
    Lst_userlist.dataProvider=ArrUserList;
    Lst_userlist.rowCount=ArrUserList.length;
    public function Find_Duplicate(test_arr:ArrayCollection):ArrayCollection
    var res_arr:ArrayCollection=new ArrayCollection();
    var flag:Boolean;
    for(var i:int=0;i<test_arr.length;i++)
    var j:int=0
    flag=false;
    for(;j<res_arr.length;j++)
    if(res_arr[j].label==test_arr[i].label)
    res_arr[j].dataCollection.addItem(test_arr[i]);
    flag=true;
    break;
    if(!flag)
    var myItem:Object = new Object() ;
    myItem.label=test_arr[i].label;
    myItem.dataCollection=new ArrayCollection();
    myItem.dataCollection.addItem(test_arr[i]);
    res_arr.addItem(myItem) ;
    return res_arr;
    ]]>
    </fx:Script>
    <s:Scroller id="id_scroller" width="100%" height="100%">
    <s:VGroup id="id_Vgroup" paddingLeft="50" paddingTop="10" paddingBottom="10"   width="100%" height="100%" >
    <mx:VBox width="850" paddingLeft="0" paddingTop="1"    color="black"  backgroundColor="#FFFFFF">
    <mx:HBox width="850" left="50" paddingBottom="3"  paddingLeft="5" backgroundColor="#6D6C6C"   paddingTop="3" color="#FFFFFF" >
    <mx:LinkButton id="lnk_open" label="Open" textDecoration="underline" click="Clink_lnk_open();"/>
    <mx:Button id="load_btn" label="Load" click="Load()"/>
    </mx:HBox>
    <mx:VBox id="Vbox_main" width="850"   horizontalScrollPolicy="off" verticalScrollPolicy="off"  >
    <mx:List variableRowHeight="true"   width="850" id="Lst_userlist" paddingTop="-3" verticalScrollPolicy="off"  horizontalScrollPolicy="off"
    buttonMode="true"  >
    <mx:itemRenderer>
    <fx:Component>
    <mx:VBox paddingTop="-5"  horizontalScrollPolicy="off" verticalScrollPolicy="off" >
    <fx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    override public function set data(value:Object):void
    super.data = value;
    Membership_Grid.dataProvider=data.dataCollection;
    Membership_Grid.rowCount=data.dataCollection.length;
    lbl_userhead.text=data.label;
    lbl_userhead1.text=data.dataCollection.length+" Datas";
    if(data.click==1)
    Vbox_main.visible=true;
    Vbox_main.includeInLayout=true;
    else
    Vbox_main.visible=false;
    Vbox_main.includeInLayout=false;
    Membership_Grid.validateNow() ;
    ]]>
    </fx:Script>
    <mx:HBox id="vbox_grid"  horizontalScrollPolicy="off"  height="25" verticalScrollPolicy="off" width="850"  paddingLeft="10" paddingTop="5"  backgroundColor="#6D6C6C" color="#FFFFFF">
    <s:Label id="lbl_userhead" click="outerDocument.Click_UserName1(event,data)" buttonMode="true"   width="250"  paddingTop="3" />
    <s:Label id="lbl_userhead1"  buttonMode="true"   width="548" paddingTop="3" />
    </mx:HBox>
    <mx:VBox id="Vbox_main" width="850" horizontalScrollPolicy="off" verticalScrollPolicy="off"  visible="false" includeInLayout="false" >
    <mx:DataGrid id="Membership_Grid"   alternatingItemColors="[#DCDCDC,#F8F8FF]"  paddingLeft="5"  horizontalScrollPolicy="off" color="black"
    horizontalGridLines="false" verticalScrollPolicy="auto"  verticalGridLines="false"  rowHeight="25" width="850"  borderSkin="{null}"
    borderVisible="false" >
    <mx:columns>
    <mx:DataGridColumn width="150" headerText="Year" dataField="label"/>
    <mx:DataGridColumn width="150" headerText="Month" dataField="data"/>
    <mx:DataGridColumn width="150" headerText="Day" dataField="day" />
    <mx:DataGridColumn width="150" headerText="Date"  dataField="date"/>
    </mx:columns>
    </mx:DataGrid>
    </mx:VBox>
    </mx:VBox>
    </fx:Component>
    </mx:itemRenderer>
    </mx:List>
    </mx:VBox>
    </mx:VBox>
    </s:VGroup>
    </s:Scroller>
    </s:Group>

    Hi
    Sir am using flex 4.0.1     SDKS 4.1.0....
    Still i cont fix this problem....i have the same prob in many mxml files .any alternate solution for my prob pls let me know...
    Thanks in Advance,
    senthil.

Maybe you are looking for

  • How do I uninstall Windows Media Player 11 (from Windows XP)

    I tried to uninstall Windows Media Player 11 using the 2 methods in http://support.microsoft.com/kb/934372/en-us The 1st method rolled back Windows Media Player 11 , but I want to uninstall it. The 2nd method gave me the following pop-window: Run C:\

  • SAP Standard Report:  Trial balance that include trading partner

    Good Morning Guru's- To avoid creating a custom report, does anyone know of a standard SAP report trial balance that includes trading partner? Thank you.  Points will be awarded promptly!

  • How to apply metadata to sharepoint site collection

    Hello, We have almost 1000 teamsite and we are working to arrange those according to department and site admins. So requirement is Let say if the HR department has 10 team sites, those 10 team site's department should be marked as "HR". Now how can w

  • Unable to update iPad 2 to latest iOS 7.0.2

    I'm unable to update my iPad 2 to the latest software iOS 7.0.2, please help. Thanks'

  • OSB to ODSI Poller

    How do I make an OSB (10gR3) proxy service regularly poll an ODSI service? I have a WSDL and I can call out to the ODSI easily enough, but I can't figure out how to configure it to poll. The only way I can currently think of is to create a temporary