Create the lack of "New folder" menu drop-down

All other options in the 'New' menu are there except 'create a new folder '.  I'm completely unable to create a new folder.  I can create all of the other options, but not a record.  Must be a registry change error on this key.  Does anyone know how to locate and fix this?  What happened since I upgraded from Vista to Windows 7, and somehow he lost this option.

For any question on Windows 7:

http://social.answers.Microsoft.com/forums/en-us/category/Windows7

Link above is Windows 7 Forum for questions on Windows 7.

Windows 7 questions should be directed to the it.

You are in the Vista Forums.

See you soon.

Mick Murphy - Microsoft partner

Tags: Windows

Similar Questions

  • Select the customer name in a menu drop-down select or be able to type in

    Hello

    Is there a way to allow my users to have an option to select a customer name in a menu drop-down select or be able to kick it...

    Thanks in advance

    Hello

    I don't know about build Apex point of AutoComplete.
    But if you use jQuery UI to create the AutoComplete for the text element, you must limit not list user see all values.

    Kind regards
    Jari

  • Show alert window when the selection is made in menu drop-down (or when the text field is filled)

    I'm a JavaScript novice writer and need help a warning window that meets the programming user selection form a menu drop-down.

    If the user selects any option except the default choice (which is just an empty space), I want an alert is displayed.  If the user is moving through this area without changing the default value, nothing should happen.

    I have a script attached to the "blur" event for the dropdown menu, but it appears each time you tab in this area, of course.  I don't know how to tell him to display the alert if and only if the user has changed the selection.

    Similarly, I have another field which is a simple text field.  If the user types anything in this area, I would like another alert window pops up.  The thing from the drop-down list seems a little more difficult, so if anyone can help me get that squared away, I can probably understand how to program the alert text field.

    In fact, it's the same code for both types of fields:

    If (event.target.value! = event.target.defaultValue) app.alert ("your message");

  • Toshiba Portege 3505 with addition of XP tablet, the cursor is moved and menu drop-down window opens intermittently

    My cursor is moved to the left of the screen, then a drop down window opens to display an element of right mouse drop-down window. It is intermittent in the duration and doen not always happen.

    I've performed on a toshiba portege 3505 with addition of windows xp tablet with all security updates. I tried maleware.org and run ms security essential.

    Pleaes tell me what I have and how to get rid of this bug.

    David

    It really doesn't look like a malware problem as much as you have scanned with MSE and Malwarebytes and found no problem.

    You can see this thread: http://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/menu-appear-to-the-left-of-my-cursor/4287cf85-42fe-4b49-92c6-bac01f007a6d

    Good luck...

  • How to add items to the Windows Explorer right-click menu drop-down?

    Sometimes it would be nice to be able to add a shortcut to a program that shows when you right click on a file in Windows Explorer.  Is it possible manually?  And can we remove others that we never use as well by the same method?

    You can, to a limited extent.  And it's the registry changes, so I would recommend caution.  There are also a few small programs that change the menu.

    http://vlaurie.com/right-click/Customize-context-menu.html

    A simple way, I used is to create shortcuts custom in the SendTo context menu folder.  With which you can perform most any function, such as send a text file to open with MS Word or send any type of image to open it with any number of image viewers.

    You can access the SendTo file by entering shell: sendto in the navigation bar of the Explorer, or simply run and the shell: sendto

  • Collect the value of edittext box & menu drop-down list to manipulate the project

    I built a simple GUI with a dropdown Panel and three boxes of edittext. I know not how to retrieve the values of each object to pass to the ASP (layers of text, project items). I'm still confussed on how to the onClick, onChange, onDeactivate, etc. methods work with functions... If I want to for example, to take the values in the boxes edittext to change values to text in a model layer, how could - I collect these values and pass them? In the sample code below it passes the default values for areas of edittext straight for layers of text in the model as soon as the GUI is launched...

    myGUI (this);

    function myGUI (thisObj) {}

    var myGUIPalette = myGUI_buildUI (thisObj);

    function myGUI_buildUI (thisObj) {}

    var myPanel = (thisObj instanceof Panel)? thisObj: new window ("palette", "user input panel', undefined, {resizable: true}");

    {//Build GUI

    res = "group {orientation:"column",-}".

    titleGroup: group {orientation: 'row', \}

    myStaticText: StaticText {text: 'Handset team word interludes'}, \

    },\

    textLineGroup: Panel {orientation: "column,"------}

    teamList:DropDownList {properties: {items: ['SORT CODES', '-', "ARI", "ATL", "BALL"]}}, \

    line01: EditText {}, \

    line02: EditText {}, \

    line03: EditText {}, \

    },\

    'ButtonGroup': group {orientation: 'row', \}

    clearButton: button {text: 'Clear'}, \

    renderButton: button {text: 'Making'}, \

    },\

    }";

    }

    myPanel.grp = myPanel.add (res);

    Default values

    var myPanel.grp.textLineGroup = textBox;

    textBox.teamList.selection = 0;

    textBox.line02.visible = false;

    textBox.line03.visible = false;

    var button = myPanel.grp.buttonGroup;

    var textBoxSize = (200, 20);

    var textBoxCharacters = 30;

    textBox.line01.size = textBoxSize;

    textBox.line01.characters = textBoxCharacters;

    textBox.line02.characters = textBoxCharacters;

    textBox.line03.characters = textBoxCharacters;

    Text box settings

    var defaultText01 = "enter the text of the line 01 ';

    var defaultText02 = "enter the text of the line 02."

    var defaultText03 = "enter line 03 Text."

    var myPanel.grp.textLineGroup = textBox;

    textBox.line01.text = defaultText01;

    textBox.line02.text = defaultText02;

    textBox.line03.text = defaultText03;

    textBox.line01.onActivate = function() {setTextBox (textBox.line01, defaultText01)};

    textBox.line02.onActivate = function() {setTextBox (textBox.line02, defaultText02)};

    textBox.line03.onActivate = function() {setTextBox (textBox.line03, defaultText03)};

    function setTextBox (activeTextBox, defaultText) {}

    if(activeTextBox.Text == DefaultText) {}

    activeTextBox.text = "";

    }

    activeTextBox.onDeactivate = function() {}

    If (activeTextBox.text == "") {}

    activeTextBox.text = defaultText;

    }

    ElseIf (activeTextBox == textBox.line01) {}

    textBox.line02.visible = true;

    }

    ElseIf (activeTextBox == textBox.line02) {}

    textBox.line03.visible = true;

    }

    };

    }

    var teamTri;

    textBox.teamList.onChange = function() {teamTri = textBox.teamList.selection};

    Settings button

    button.clearButton.onClick = function() {}

    textBox.line01.active = false;

    textBox.line02.active = false;

    textBox.line03.active = false;

    textBox.line02.visible = false;

    textBox.line03.visible = false;

    textBox.teamList.selection = 0;

    textBox.line01.text = defaultText01;

    textBox.line02.text = defaultText02;

    textBox.line03.text = defaultText03;

    }

    Manipulate the AE project

    ////////////////////////////////////

    ////////////////////////////////////

    #include "/ GFXM1/Script_Workflows/commonFunctions.jsx".

    var targetWidth;  Horizontal limit for altered text layers

    var modifiedLayers = new Array();

    numItems = app.project.items.length; collect the number of project items

    var teamLogosFolderMov = locateProjItems (FolderItem, "teamLogosMov");  Use CompItem to comps

    var teamLogosFolderRaster = locateProjItems (FolderItem, "teamLogosRaster");  Use CompItem to comps

    var teamLogosFolderVector = locateProjItems (FolderItem, "teamLogosVector");  Use CompItem to comps

    If (textBox.line03.text! = ' ': textBox.line03.text! = defaultText03) {}

    lineValue = textBox.line01.text + textBox.line02.text + "\r\n" + "\r\n", textBox.line03.text;

    }

    ElseIf (textBox.line02.text! = ' ': textBox.line02.text! = defaultText03) {}

    lineValue = textBox.line01.text + "\r\n" + textBox.line02.text;

    }

    else {lineValue = textBox.line01.text ;}

    for (c = 1; c < = numItems; c ++) {}

    model var = app.project.items [c];

    If (comp instanceof CompItem) {}

    for (i = 1; i < = comp.numLayers; i ++) {}

    {Switch (COMP. Layer (i). Name)}

    case 'textLines_GD ':

    targetWidth = 1720;

    setTextLayer_caseSensitive (comp.layer (i), lineValue);

    projectName = lineValue;

    If (scaleTextLayer (COMP. Layer (i), comp.layer (i).sourceRectAtTime(1,_true).width, targetWidth)) {}

    modifiedLayers.push (comp.layer (i));

    }

    break;

    case 'teamLogo_GD ':

    var numFolderItems = teamLogosFolderMov.numItems; Get the number of items in the folder teamLogos

    swapTeamLogo (numFolderItems, teamLogosFolderMov, teamTri, comp.layer (i));

    break;

    }

    }

    }

    }

    function swapTeamLogo (numFolderItems, teamLogosFolder, teamTri, layer) {}

    for (b = 1; b < = numFolderItems; b ++) {/ / loop in the teamLogos folder}

    If (teamLogosFolder.item (b) .name == teamTri) {/ / Check for game}

    layer.replaceSource (teamLogosFolder.item (b), true);  team swap in comp teamLogo logo

    }

    } //end check the teamLogos folder

    }

    ////////////////////////////////////

    ////////////////////////////////////

    Return myPanel;

    }

    If ((myGUIPalette! = null) & & (myGUIPalette instanceof window)) {}

    myGUIPalette.center ();

    myGUIPalette.show ();

    }

    }

    Hello, if your range variables are in the scope of your function (which is the case here) you need not pass them as arguments to your function.

    Then you can simply activate what wrote you in a function already and call on events, something like this:

    doIt() function

    {

    var

    targetWidth, numFolderItems, lineValue, ProjectName

    modifiedLayers = new Array(),

    numItems = app.project.items.length; collect the number of project items

    teamLogosFolderMov = locateProjItems (FolderItem, "teamLogosMov"), //Use CompItem for comps

    teamLogosFolderRaster = locateProjItems (FolderItem, "teamLogosRaster"), //Use CompItem for comps

    teamLogosFolderVector = locateProjItems (FolderItem, "teamLogosVector"), //Use CompItem for comps

    model,

    I, c;

    If (textBox.line03.text! = ' ': textBox.line03.text! = defaultText03) lineValue = textBox.line01.text + textBox.line02.text + "\r\n" + "\r\n", textBox.line03.text

    ElseIf (textBox.line02.text! = ' ': textBox.line02.text! = defaultText03) lineValue = textBox.line01.text + "\r\n" + textBox.line02.text

    else lineValue = textBox.line01.text;

    for (c = 1; c<= numitems;="" c++)="" if="" (="" (comp="app.project.item(c))" instanceof="">

    {

    for (i = 1; i<= comp.numlayers;="" i++)="">

    {

    case 'textLines_GD ':

    targetWidth = 1720;

    setTextLayer_caseSensitive (comp.layer (i), lineValue);

    projectName = lineValue;

    If (scaleTextLayer (COMP. Layer (i), comp.layer (i).sourceRectAtTime(1,_true).width, targetWidth)) modifiedLayers.push (comp.layer (i));

    break;

    case 'teamLogo_GD ':

    numFolderItems = teamLogosFolderMov.numItems; Get the number of items in the folder teamLogos

    swapTeamLogo (numFolderItems, teamLogosFolderMov, teamTri, comp.layer (i));

    break;

    default:;

    };

    };

    };

    myPanel.grp.buttonGroup.renderButton.onClick = needs;

    If instead you want to write a function that is independent from the UI variables, IE not dependent on variables of string, then you must pass these values as arguments:

    function must (text01 text02 text03, defaultText01, defaultText02, defaultText03)

    {

    same start

    get lineValue of arguments

    lineValue = text01; If (text02! = "" |) Text02! = defaultText02) {lineValue += "\r\n" + text02;}  If (text03! = "" |) Text03! = defaultText03) lineValue += "\r\n" + text03 ;} ;

    same end

    };

    myPanel.grp.buttonGroup.renderButton.onClick = function() {has (textBox.line01.text, textBox.line02.text, textBox.line03.text, defaultText01, defaultText02, defaultText03) ;};

    Note: I changed my computer var = app.project.items [c]; (does not work) to comp = app.project.item (c); and if (textBox.line02.text! = ' ' | textBox.line02.text! = defaultText03) (risky) if (textBox.line02.text! = ' ': textBox.line02.text! = defaultText03).

    Xavier.

  • Change the background color on a menu drop down based on the value

    Hello

    I am new to LiveCycle Designer and I need a little help.

    I try to make a ComboBox with 3 options (lets say in January, February and March). When I selected one of these options, I want the bottom to automatically change (say January in yellow, for February in red and blue March).

    Your help will be much appreciated,

    Adrian

    Hi Adrien,.

    I suspect that the form is not set to automatically save changes to script. If you go to file > form properties > default tab and select Auto in the option buttons:

    That seems to work here.

    Niall

  • old printer still appears in the menu drop-down

    I use a brother printer now but had a kodak which is completely uninstalled but many times, when I download a document and you want to print in the kodak printer is shown menu drop down and it does not change, so I can't print how can I get rid of the kodak list, which is the only place wherever it manifests

    Please do not let your Windows version a secret.

    What menu do you mean?  Have you looked into "Devices and printers" or "printers and faxes" (depending on your version of Windows) to see if the device has been deleted?

  • How do I change destination on right click menu drop-down ' send to ' command in Windows 7?

    I run 1 PC to 2 laptops with Windows 7.   How can I change the destinations on right click menu drop-down command "send to."

    Add to send it to, the menu list.

    http://www.howtogeek.com/HOWTO/Windows-Vista/customize-the-Windows-Vista-send-to-menu/

    http://www.howtogeek.com/HOWTO/Windows-Vista/add-any-application-to-the-desktop-right-click-menu-in-Vista

    New context menu,

    http://www.SevenForums.com/customization/249733-add-items-new-option-right-click-menu.html

  • Filtering Page master/detail with a menu drop-down

    Hey there!

    I'm going to build a Web site where I have the list of some products on a master page and can be clicked to go into details.

    I do it through the Insert > data objects > page master detail and it works very well...

    but I can't filter the results of the master page with a menu drop-down.

    Can anyone help? I'm in a bit of desperation ;-)

    Thank you

    Jaume

    Yes, this is what happens - you will be variable on the page of search results page. The variable name is what you called the drop, as MyDropDown. The value is what is the value of the selected item. So, now on the results page, create your recordset. As we use only a variable as a filter, use the simple mode. Working up and down in the dialogue window, name the Recordset, select the connection and the table.  Below, yo have four entries/selections to make. Select the database column that is filtered, in the other, select '='. Below on the left select "Variable form". The text box to the right of that will be pre populated with the name of the column. Replace it with the variable name, the name of the drop-down list on the page of research - such as "MyDropDown", without the quotes, or anything else. Click Test and you will be presented with a window asking for a value - enter any value that is contained in the menu drop down and ensure that the recordset object gives results and only records with that value. If it works, save it and're you good to go. If this isn't the case, then we will do some troubleshooting.

  • menu drop-down icons sparkle and cannot be read

    for the latest versions of several menu drop downs and pitchers will stay visible long enough to read the ads and make a choice. Is there a setting that I can't find?

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

    Try turning off hardware acceleration.

    • Tools > Options > advanced > General > Browsing: "use hardware acceleration when available.

    If disable hardware acceleration works then check if there is an update available for your graphics display driver.

  • left menu quich launch menu drop-down

    Hello

    just loaded a CS5 demo version and loaded on my windows 7 64 bit quadcore system which has 8 GB of memory,

    In my copy of photoshop when I click on the rectangle tool (menu bar on the left of the screen) I get a menu drop-down offering me circles etc.

    However in Illustrator I have not. I doo see arrow (bottom right of the box), but I have no had a drop-down.

    Any ideas?

    Thank you

    Ian

    You must click and hold for a second. If it does not show, just hold out a little longer.

  • I created a custom and registered with a specific name date format. However, when I open a new worksheet, my saved format does not display in the menu drop-down? Am hoping that I don't need to create the same format for each new sheet?

    I created a custom and registered with a specific name date format. However, when I open a new worksheet, my saved format does not appear in the menu drop-down? Am hoping that I don't need to create the same format for each new sheet?

    You must save the spreadsheet containing the new date as a model format and use this custom template for each new spreadsheet where you want that this date format personalized at your disposal.

  • Create application option not available in the menu drop-down

    I can't access the option 'Create approx...' in the drop down menu to the Folio Builder. All the options in the menu drop-down are there except for the option Create App. Does anyone know why this is the case?

    Thanks in advance for the help.

    Mac only

  • Create a drop down that fills the list based on the shape of the selection a menu drop-down.

    I need to set up a drop down menu which is popualated (i.e. displays a certain list of selctions in the drop-down list) based on the choice of the form user selects an adjacent list

    For example

    There are two drop-down list field sitting side by side in form

    1. Select State 2. Select the course

    I want to do is have a list of States in the first drop (State 1.Select) and depending on the State in which the form user selects, the second menu drop-down (2. Select courses) is filled with a selction of courses available in this selected only State (i.e. will it be on; show course available in QLD if QLD is selected).

    Is it difficult to do?

    Hello

    You can also use events preOpen from the drop-down list, to recall the previous selections in other objects and populate the drop-down list accordingly: http://assure.ly/jcTahK

    Good luck

    Niall

Maybe you are looking for

  • No support for Satellite L850-1Z1

    Hello I buy a Satellite L850-1Z1, then when I go to the support section, the site tell me that my product is not recognized...Is there a model with the same specifications as the L850-1Z1?Or is the support will soon recognize?Thanks for your replies

  • appleid balance hand but no purchases allowed

    GIFT CARD REDEEMED BUT NO PURCHASES ALLOWED

  • PROGRAM COMPATIBILITY ASSISTANT

    Have advice that guard appearing indicating PROGRAM COMPATIBILITY WIZARD THIS PROGRAM has KNOWN COMPATIBILITY ISSUEScheck online with Microsoft ACER UPDATER PROGRAMEDITOR ACER INCORPERATEDLOCATION c. / PROGRAMS ACER / ACERePOWER MANAGEMENT/e POWER PL

  • Cannot find modem drivers

    Hello I have a HP Pavilion Notebook ze5568CL and am using Windows XP Professional. I looked at downloads of driver for this model and I can't seem to find a driver for the modem 56 k I contacted the help section of online chat and they can't tell me

  • Intel RST 15.2.0.1020 removes the ability to see or select the two disks in SSD Dashboard 1.4.3

    Save yourself some headaches if your RAID with Intel RST race of 10 to win... Installed Intel Rapid Storage Technology 15.2.0.1020 technology application & driver. Readers SanDisk Extreme Pro 240 GB SanDisk SSD Dashboard 1.4.3 lost to see and choose