TreeView - Expand only selected node and collapse others

Hi
How I can expand only selected node and collapse other nodes that was expanded earlier?!

Ghostenigma,
switch Option Strict On. I've tried to analyze the code but it's not usable due to type ignorance.
BTW, Goto is not required here. ELSEif means it's only executed if the previous expressions are not true.
Armin
Ignore other code and give an reply for what I've asked else you are not obligated to post a reply at all!
 I am not sure if you took the "type ignorance" part wrong but, Armin was only trying to give you helpful information which i would give too.  Option Strict is a GOOD thing to use and the GoTo statements are not needed inside your ElseIf
statements.  As far as that goes, i would not recommend using GoTo in any modern .Net programming.
 Anyways, the problem is with the way you are Adding and Removing all the child nodes every time the nodes are DoubleClicked and when they are Collapsing.  I just simulated your code to add the sub nodes when a main node is double clicked. 
You can just use the NodeMouseDoubleClick event instead of the TreeView`s DoubleClick event to make it a little easier on yourself too.
 This corrected the problem for me.
Public Class Form1
Private r As New Random ' this random class is only for my simulation of adding sub nodes (not needed)
Private expanded As TreeNode
Private Sub TreeView1_BeforeCollapse(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeViewCancelEventArgs) Handles TreeView1.BeforeCollapse
e.Node.Nodes.Clear()
End Sub
Private Sub TreeView1_BeforeExpand(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeViewCancelEventArgs) Handles TreeView1.BeforeExpand
Dim pn As TreeNode = e.Node
While pn.Parent IsNot Nothing
pn = pn.Parent
End While
If expanded IsNot Nothing And expanded IsNot pn Then expanded.Collapse()
expanded = pn
End Sub
Private Sub TreeView1_NodeMouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeNodeMouseClickEventArgs) Handles TreeView1.NodeMouseDoubleClick
'Added this part to collapse the prior expanded node and set the (expanded) node to the new one
If expanded IsNot Nothing And expanded IsNot e.Node Then
expanded.Collapse()
Dim pn As TreeNode = e.Node
While pn.Parent IsNot Nothing
pn = pn.Parent
End While
expanded = pn
End If
'This just simulates your code to add the new sub nodes to the main node that was double clicked
'you need to put your code here instead of this.
Dim str() As String = {"one.mp3", "Two.mp4", "Three.mvk"}
Dim s As String = str(r.Next(0, 3))
e.Node.Nodes.Add(s, s)
e.Node.Expand()
End Sub
End Class
 PS - I notice you are adding more and more Images to your ImageList every time you double click on a node.  If you just add the Images to it once when the app is loading then you can just use the Image Key to set the correct Image to the newly
added node.
If you say it can`t be done then i`ll try it

Similar Messages

  • How can i loop over treeview selected nodes and then to delete each node if it's a directory or a file ?

    I have this code:
    if (s == "file")
    file = false;
    for (int i = 0; i < treeViewMS1.SelectedNodes.Count; i++)
    DeleteFile(treeViewMS1.SelectedNode.FullPath, file);
    I know it's a file and it is working if it's a single file.
    On the treeView i click on a file right click in the menu i select delete and it's doing the line:
    DeleteFile(treeViewMS1.SelectedNode.FullPath, file);
    And it's working no problems.
    But i want to do that if i selected some files togeather multiple selection then to delete each file.
    So i added the FOR loop but then how do i delete from the SelectedNodes each node ?
    The treeView SelectedNodes dosen't have FullPath like SelectedNode also doing SelectedNodes[i] dosen't have the FullPath property.
    Same as for if i want to delete a single directory or multiple selected directories:
    This is the continue of the code if it"s not a "file" (else) it's null i know it's a directory and doing:
    else
    file = true;
    RemoveDirectoriesRecursive(treeViewMS1.SelectedNode, treeViewMS1.SelectedNode.FullPath);
    Also here i'm using SelectedNode but if i marked multiple directories then i how do i loop over the SelectedNodes and send each SelectedNode to the RemoveDirectoriesRecrusive method ?
    My problem is how to loop over SelectedNode(multiple selection of files/directories) and send each selected file/directory to it's method like i'm doing now ?

    foreach (TreeNode n in treeViewMS1.SelectedNodes)
    // Remove everything associated with TreeNode n here
    I don't think it's any harder than that, is it?
    If you can multi-select both an item and one of its descendents in the tree, then you'll have the situation that you may have deleted the parent folder and all of its children by the time you get around to deleting the descendent.  But that's not such
    a big deal.  A file can get deleted externally to your program too - so you'll just have to deal with it having been deleted already (or externally) when you get around to deleting it yourself.

  • Jtree Select node and change leafs icon problem

    Hi All,
    i create a tree and implement a TreeSelectionListener:
    my mission is whenever i select a node i need to change the icon of this node (for now.later i will have to find if it have childrens).
    import java.awt.Color;
    import java.awt.Component;
    import java.util.Enumeration;
    import java.util.NoSuchElementException;
    import java.util.Vector;
    import javax.swing.ImageIcon;
    import javax.swing.JTree;
    import javax.swing.event.TreeExpansionEvent;
    import javax.swing.event.TreeExpansionListener;
    import javax.swing.event.TreeSelectionEvent;
    import javax.swing.event.TreeSelectionListener;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.TreeModel;
    import javax.swing.tree.TreeNode;
    import javax.swing.tree.TreePath;
    public class TreeView{
         DefaultMutableTreeNode top;
         JTree tree ;
         Color frameColor;
         public static ImageIcon NoTSelIcon;
         public static ImageIcon SelIcon;
        public static String[] name= new String[8];
         public TreeView(Color BackColor) {
              // TODO Auto-generated constructor stub
            top =  new DefaultMutableTreeNode("Diagnostics");
            this.frameColor=BackColor;
             SelIcon = createImageIcon("../Resource/Images/Select.gif");
             if (SelIcon == null)
                 System.err.println("Tutorial icon missing; using default.");
             NoTSelIcon = createImageIcon("../Resource/Images/NotSelc.gif");
               if (NoTSelIcon == null)
                 System.err.println("Tutorial icon missing; using default.");
         public Component createTreeComponents(){
                //Create the nodes.
                 createNodes(top);
            //Create a tree that allows one selection at a time.
            tree = new JTree(top);
            //TREE LISTENERS
            //Treeselction listener
            Handler hObject = new Handler();
            tree.addTreeSelectionListener(hObject);
           //Tree expand/collapse listener
            HandlerExpansionListener hObjectExpan = new HandlerExpansionListener();
            tree.addTreeExpansionListener(hObjectExpan);
    //       tree.getSelectionModel().setSelectionMode(TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION);
            //set tree background
            tree.setBackground(frameColor);
             tree.setCellRenderer(new OverrideTreeCellRenderer(frameColor,SelIcon,NoTSelIcon));
            return tree;
          private void createNodes(DefaultMutableTreeNode top) {
                 DefaultMutableTreeNode category = null;
                 DefaultMutableTreeNode SubCategory = null;
                 DefaultMutableTreeNode SubCategoryBasee = null;
                 DefaultMutableTreeNode SubSubCategoryBasee = null;
                 category = new DefaultMutableTreeNode("Dfe");
                 top.add(category);
                 //Sub test visible
                 SubCategory = new DefaultMutableTreeNode("Test Visible");
                 category.add(SubCategory);
                 SubCategory.add(new DefaultMutableTreeNode("Son 1"));
                 SubCategory.add(new DefaultMutableTreeNode("Son 2"));
                 SubSubCategoryBasee = new DefaultMutableTreeNode("Test Base");
                 SubSubCategoryBasee.add(new DefaultMutableTreeNode("Grandson 1"));
                 SubSubCategoryBasee.add(new DefaultMutableTreeNode("Grandson 2"));
                 SubCategory.add(SubSubCategoryBasee);
          class Handler implements TreeSelectionListener {
                   public void valueChanged(TreeSelectionEvent arg0) {
                        // TODO Auto-generated method stub
                        System.out.println("treeSelect event ");
                        TreePath trph;
                        trph=arg0.getNewLeadSelectionPath();
                        int count=trph.getPathCount();
                        DefaultMutableTreeNode Selnode = (DefaultMutableTreeNode)tree.getLastSelectedPathComponent();
                        String Name = (String)Selnode.getUserObject();
                        setSelected(Selnode,true);
                        int number_ofnodes=getNodeCountBelow((TreeModel)tree.getModel() , Selnode, false);
                        System.out.println("The Number of nodes under "+Name+"="+number_ofnodes);
                        tree.setCellRenderer(new IconRenderer(SelIcon,NoTSelIcon,frameColor));
          class HandlerExpansionListener implements TreeExpansionListener {
                   public void valueChanged(TreeSelectionEvent arg0) {
                        // TODO Auto-generated method stub
                        DefaultMutableTreeNode node = (DefaultMutableTreeNode)  tree.getLastSelectedPathComponent();
                        if (node == null) return;
                      }     // The inner class
                   public void treeCollapsed(TreeExpansionEvent arg0) {
                        // TODO Auto-generated method stub
                        System.out.println("treeCollapsed event ");
                   public void treeExpanded(TreeExpansionEvent arg0) {
                        // TODO Auto-generated method stub
                        System.out.println("treeExpanded event ");
          /** Returns an ImageIcon, or null if the path was invalid. */
             protected static ImageIcon createImageIcon(String path) {
                  //ImageIcon imcon= new ImageIcon(path);
                  //return imcon;
                 java.net.URL imgURL = TreeView.class.getResource(path);
                 if (imgURL != null) {
                     return new ImageIcon(imgURL);
                 } else {
                     System.err.println("Couldn't find file: " + path);
                     return null;
             DefaultMutableTreeNode newnode;
             public void setSelected(DefaultMutableTreeNode Selnode ,boolean isSelected)
                    Enumeration Enchilds=Selnode.children();//ENUMRATE ALL CHILDS FOR THIS NODE
                 if (Enchilds != null)
                      while (Enchilds.hasMoreElements())
                           newnode=(DefaultMutableTreeNode)Enchilds.nextElement();
                           String NameSel = (String)newnode.getUserObject();
                           setSelected(newnode,isSelected);
             //GETTING THE TREE DEPTH
             public int getNodeCountBelow(TreeModel model, Object node, boolean includeInitialNode)
                 int n = includeInitialNode ? 1 : 0;
                 for (int i = 0; i < model.getChildCount(node); i ++)
                     n += getNodeCountBelow(model, model.getChild(node, i), true);
                 return n;
    import java.awt.Color;
    import java.awt.Component;
    import java.util.Enumeration;
    import java.util.NoSuchElementException;
    import javax.swing.Icon;
    import javax.swing.JTree;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellRenderer;
    public class IconRenderer extends DefaultTreeCellRenderer {
         private static final long serialVersionUID = 1L;
         Icon SelectedIcon;
         Icon NotSelectedIcon;
         Color BackgroundColor;
         boolean Selected=false;
         boolean Leaf=false;
         boolean IsItaChild=false;
         DefaultMutableTreeNode SelctedNode=null;
        public IconRenderer(Icon SelIcon,Icon NoTSelIcon,Color Bacground) {
             SelectedIcon = SelIcon;
             NotSelectedIcon = NoTSelIcon;
             BackgroundColor=Bacground;
             setBackgroundNonSelectionColor(BackgroundColor);
        public Component getTreeCellRendererComponent(JTree tree,Object value,boolean sel,boolean expanded,
                                                        boolean leaf,int row,boolean hasFocus)
             super.getTreeCellRendererComponent(tree, value, sel,expanded, leaf, row,hasFocus);
             Selected=sel;
             Leaf=leaf;
             DefaultMutableTreeNode node = (DefaultMutableTreeNode) value;
             String s2 = (String)node.getUserObject();
       return this;
    }my problem is :
    when i select a node the the method "getTreeCellRendererComponent"
    start to run on the entire tree from buttom to top and than from top to buttom.
    for me it waste of time because if has say 100 nodes it wont botthers me.
    but i have 20000 nodes and more its take a time.
    and for all this nodes i have to make compares.
    is there a way to force the DefaultTreeCellRenderer to not run the entire tree???
    Thanks

    You need to make sure that your TreeModel interprets your group nodes to be non-leaf nodes (one of the methods in the TreeModel interface is called isLeaf). If you are using a DefaultTreeModel with DefaultMutableTreeNode objects, you can use the askAllowsChildren property of DefaultTreeModel and the allowsChildren property of DefaultMutableTreeNode to control this. See the API for more details:
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/tree/DefaultTreeModel.html
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/tree/DefaultMutableTreeNode.html

  • Date Picker: Only select Month and Year

    Hallo,
    I try to configure the Date Picker. For the users it should only be possible to select Month and Year. The column should be automaticly completed with the first day of the select month and a static time (00:00:00).
    How can I do this?
    Sincerly

    You can't do that with a standard date picker. What you could do is to use it and after you change the value in it you modify the value using javascript and ajax similar to what I do in this example:
    http://htmldb.oracle.com/pls/otn/f?p=31517:9
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • I deleted all songs from the iPad multiple times.  Each time I reconnect and sync all of these songs sync instead of the chosen playlist. Settings on Summary page are Sync Only Selected Songs and Videos. Music only the playlist is checked.

    How to I stop iTunes from reloading what was on the iPad instead of what I have selected?  Summary screen shows "Sync only checked songs and videos"  Music has only the selected playlist.  All songs were deleted from iPad by swiping them to the left and hitting delete (very time consuming).  Sync is set to manual.  However whenever I hit Sync, the old music gets put back on the iPad.  I have had this happen at least 6 times.

    Solved it.  "Automatically fill free space with songs" was checked on the Music page.  Worked perfectly once this was unchecked.

  • Very frequently I am unable to click on anything within the brower, I need to alt-tab to another program or minimize firefox in order to click on any links. This is only within firefox and no other program or browser that I have having this problem.

    Very frequently I cannot click on any links within firefox. I have to either alt-tab or minimize the browser in order for me to navigate through website.
    This appears to be only issue with firefox and nothing else on my computer as I don't have this problem with any other program or web broswer.
    I needed to alt tab 5 times just to get this question submitted, very annoying!

    That problem can be caused by the Yahoo! Toolbar or the Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • My ipod only contains newstand and no other app how do i fix this?

    It only has newstand and nothing else.

    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                       

  • My contacts now only shows names and no other info

    I'm having trouble with developing my contacts. And now, on my iMac, my contacts book only shows names and no othe info unless I press edit.  Then I can see phone numbers, etc.
    What am I doing wrong?

    The Flash will not likely be able to load the file from your harddrive if it is on the server... hopefully your browser would prevent any online file from being able to access files on your harddrive.
    You will know if the file is dynamically loaded or not if you physically placed the flv contents into the Flash files (manual) or you just provide the name of the file for the Flash file to load (dynamic).

  • Global Track - Chords (Only selected Midi and Audio Tracks)

    I am looking to have only certain Audio/Midi tracks be trsposed when there is a change of chords in the Global Track section. For example, I am going C/Am/C. At the Am point, everthing (exclusing drums) gets transposed, even the Melody parts. Is there any way to select only the tracks that I want tranposed?
    Or is there a better way of doing this. Appreciate the help.
    Rgds
    Mark

    Hi Again
    I tried it out today and on the Midi tracks I found the no hassle in ticking the non transpose button. Worked great.
    On the audio loop tracks I could not find the no transpose option in the inspector. Appreciate your assistance.
    Rgds
    Mark

  • How can i read only .txt file and skip other files in Mail Sender Adapter ?

    Hi Friends ,
                       <b> I am working on scenario like , I have to read an mail attachement and send the data to R3.</b>
                        It is working fine if only the .txt file comes.
                      <b>Some times ,html files also coming along with that .txt files. That time my Mail adapter fails to read the .txt file.</b>
                       I am using PayLoadSwap Bean and MessageTransformBean to swap and send the attachment as payload .
                         <b>Michal as told to write the Adapter module to skip the files .But i am not ware of the adapter moduel . If any blogs is there for this kind of scenarios please give me the link.</b>
                           Otherwise , please tell me how to write adapter module for Mail  Sender Adapter?
                      How to download the following
                        newest patch of XI ADAPTER FRAMEWORK CORE 3.0
    from SAP Service Marketplace. Open the file with WinZip and extract the following
    SDAs:
    &#61589;&#61472;aii_af_lib.sda, aii_af_svc.sda
    &#61589;&#61472;aii_af_cpa_svc.sda
                        I have searche in servive market place .But i couldn't find that . Can you please provide me the link to download the above .
                      If any other suggestions other than this please let me know.
    Regards.,
    V.Rangarajan

    =P
    Dude, netiquette. Messages like "i need this now! Do it!" are really offensive and no one here is being payed to answer anyone's questions. We're here because we like to contribute to the community.
    Anyway, in your case, just perform some search on how you could filter the files that are attached to the message. The sample module is just an example, you'll have to implement your own. Tips would be to query the filename of the attachments (or maybe content type) and for the ones which are not text, remove them.
    Regards,
    Henrique.

  • 3G only connects Whatsapp and not other apps (NOT a carrier issue)

    Hi.
    Starting around 10 days ago, the 3G connection on my iPhone 4s suddenly stopped working. I cannot check email, browse anything, open any social media BUT Whatsapp, or play games online. Here's what I have done to try to fix it:
    1. Turning on Airplane Mode for a few seconds and turning it back off. Result: not ok.
    2. Resetting the network setting. Result: not ok.
    3. Contacting my carrier. Result: was suggested to change the APN.
    4. Changing the APN. Result: not ok.
    5. Rebooting the phone before Airplane Mode & Reset Network. Result: not ok.
    6. Rebooting the phone after Airplane Mode & Reset Network. Result: not ok.
    7. Reset All Settings. Result: not ok.
    8. Changing the sim card (same carrier that has data plan). Result: not ok. Meaning the issue is with the phone?
    9. Restoring to factory setting. Result: STILL NOT OK.
    10. Comparing setting with other iPhone 4s in the same area with same carrier & data plan. Result: all settings are exactly the same.
    11. Trying my sim card on another iPhone 4s. Result: works perfectly. So it's not a carrier issue, right?
    If I recall correctly, it started happening after I synced my music. I reverted the sync mid-way, because it was about to copy some songs I don't want to copy. Then I re-synced.
    It should NOT be the problem, but it cannot be a coincidence? Because I never changed any other setting or do anything unusual.
    Additional details:
    1. My phone is NOT jailbroken.
    2. I always purchase legally.
    3. 3G works to chat on Whatsapp, but I'm not able to download the media shared on Whatsapp no matter how small the size.
    4. Notification from Facebook and Echofon works fine.
    5. Sometimes when I open Echofon after a reboot tweets show up. Media on Whatsapp also already downloaded. But they don't continue showing up/not updating in real time.
    6. I have just updated to iOS 6.1.3, but the problem started before I updated and I think I only skipped 6.1.2, meaning my 3G did not work with 6.1.1 (the supposed correction to 6.1 with 3G issue), so I don't think it's an iOS issue.
    I'm so sorry for the long post, but I need to make it all clear. So... help? I'm desperate.
    Thanks, guys!

    UPDATE #2:
    I chatted with Ashley from Apple Support yesterday and she suggested me to restore the phone and set it up AS NEW, NOT restore from backup.
    And it worked!
    Of course, you have to back up everything, but I have my contacts, notes, and pictures on iCloud. All I did was merge them back to the phone from iCloud Setting.
    One downside: you'll lose all text messages. But it's worth it.
    So, thank you, Ashley!

  • How to enable only current row and disable others?

    Hi,
    We have a requirement like, the top row only should be editable in a detail block. For example,
    Item No. Item Name Qty
    1 Item1 1
    Add Row --> button
    when i click this "Add Row" button a new row should be created with editable text boxes for all 3 columns. and the existing row should become display only row.
    Could you any one please tell how to do in APEX?
    Thanks & Regards
    M Thiyagarajan

    Hi,
    Try this link:
    Re: Tabular Form Question
    Regards
    Rana

  • Configure only GL Balance and GL other Job

    Hi All,
    We are planning to implement real time solution for OBIEE. We have identified 2 fact table W_GL_BALANCE_F and W_GL_OTHER_F as of now.
    In real time implementation, the job will run every 30 minutes to load data from the source. Data loaded into EBS in last 30 minutes will be extracted and loaded. There are 2 possible ways we can achive this.
    1. Write a code (same as in OBIA) for these 2 tables to extract and load data into this 2 tables.
    2. Use only "Financial General Ledger" Subject Area and configure DAC, so that it load data only onto these 2 tables.
    Since i am new to OBIA, can someone help me to understand how to configure only those job, which are relevant for W_GL_BALANCE_F and W_GL_OTHER_F tables? So that every 30 mins, we run only one execution plan.

    Please check the link [Reconciliation ABST2 & GL|Re: ABST2- FI-AA reconciliation posting;
    It might help you.
    Regards,
    Sridevi

  • My cursor display (arrow) on my Mac disappears from view on Firefox only. Safari and all other software reveals the arrow, it's just missing from Firefox. Help! This is my access of choice!

    I had several things open on my laptop: Firefox, Safari (it opens automatically when I click a link in an e-mail), Mail. I was bouncing among all these places when I realized my cursor (arrow) wasn't showing up ... but only when I was in Firefox. I have set up all my usual accounts (facebook, Google+, Flickr, LinkedIn, etc.) using Pin Tabs, but I've had that for a few months.
    I don't know if this is a Mac issue or a Firefox issue--I'm thinking the latter because the problem occurs only when I'm using Firefox.

    I should note that while it is Ff 8.0.1 I use, I'm on OS X 10.7 / Lion, not 10.6 as noted above. More precisely, I use 10.7.2 but am not clear if the problem only appeared with the .2 update.

  • Would it be useful to set a partition on my internal HD only for data and the other for apps, OS and that kind of stuff?

    As I wrote in the title, would it be useful?
    I come from a Windows PC where I had that kind of division and it seemed everything had worked fine along 5 years.
    Please, give a motivation to your answers to let me get in the point.

    File fragmentation is not an issue with OS X, which looks after itself.
    Defragmentation in OS X:
    http://support.apple.com/kb/HT1375  which states:
    You probably won't need to optimize at all if you use Mac OS X. Here's why:
    Hard disk capacity is generally much greater now than a few years ago. With more free space available, the file system doesn't need to fill up every "nook and cranny." Mac OS Extended formatting (HFS Plus) avoids reusing space from deleted files as much as possible, to avoid prematurely filling small areas of recently-freed space.
    Mac OS X 10.2 and later includes delayed allocation for Mac OS X Extended-formatted volumes. This allows a number of small allocations to be combined into a single large allocation in one area of the disk.
    Fragmentation was often caused by continually appending data to existing files, especially with resource forks. With faster hard drives and better caching, as well as the new application packaging format, many applications simply rewrite the entire file each time. Mac OS X 10.3 onwards can also automatically defragment such slow-growing files. This process is sometimes known as "Hot-File-Adaptive-Clustering."
    Aggressive read-ahead and write-behind caching means that minor fragmentation has less effect on perceived system performance.

Maybe you are looking for

  • Flash crashes on simulate download

    create a recangle shape. convert it to movieclip symbol: object1. name the instance of object1 "main". enter the movie clip "main". create another shape. convert it to button symbol: button1. name this instance "btn1" exit the "main" movieclip and go

  • ESSO Error with IE 9 Compatibility Mode

    Can anyone help? We are implementing eSSO with OIM 11.1.2.. When testing the system, we receive an error that Compatibility Mode should be turned off. We can turn off Compatibility mode and the user can access the site fine while they are logged in.

  • Problem Managing Sounds and Alerts - Blackberry Z10

    I just bought a Z10,  love the phone, but I have the following issue when managing sounds and alerts: In previous phones, I was able to configure sounds for txt messages and e-mails separately, but the Z10 has included them in the same cathegory when

  • How are these effects being done?

    I just took apart the individual pieces of artwork that make up the button on the left side of the attached image. The shine seems to be made from the separate pieces that are grey with the blending mode set to screen in the Transparency panel. 1. Wh

  • My HP Pavilion dv6-3108ea cd-rom drive does not detect any dvd's or cd's........ help please!!!!!!!

    My CD-ROM drive cannot detect CD's or DVD's.  I have used the microsoft "fix it" tool and it doesn't detect that the driver is out of date nor does it need updating.  I have tried uninstalling the driver via the control panel settings  and restrating