How to change the links of the Spry Menu

I have a Horizontal Spry Menu on my page and have some questions about the creation of the custom links:
-I know how to add a link to my reports, Pages, etc. using the link properties
-I also know how to open the link in a _blank page by using the target property box

But

-How can I change the link of the Menu in the code to open my new page in a new smaller window?
(Currently, TicketSummaryAcct.cfm page opens fine, in a new window 'full')

Here's the code currently found under this key Menu:
---------------------------------------------------------------------------------
< li > < a href = "reports/TicketSummaryAcct.cfm" title = "click here to print the report by account number in PDF format" target = > _blank "> by Acct # Prompt < /a > < /li >"
---------------------------------------------------------------------------------

Thank you
jlig

In the header of the Web page:

in the "links" section:

JavaScript:popUp('reports/TicketSummaryAcct.cfm')

do not use a target attribute, because it will break the javascript code in my experience. If you use the pop - ups in more than 1 webpage, or even for good programming practices, make a page function.

Name of the Web page: newWindow.js

function popUp (URL) {}
day = new Date();
ID = day.getTime ();
eval ("page" + id + "= window.open (URL, '" + id + "', 'toolbar = 0, scrollbars = 0, location = 0, statusbar = 0, menubar = 0, resizable = 0, width = 350, height = 300');'");
}

And then, in the webpage (s) that you need from the pop-up window for the header, add this:

Tags: Dreamweaver

Similar Questions

  • How to change the start menu of Windows 8 in the version of Windows 7?

    How to change the start menu of Windows 8 in the version of Windows 7?

    How to change the start menu of Windows 8 in the version of Windows 7?

    Hello

    If you find that you just cannot function without a Start button, there are third-party solutions.

    Debut8 for Windows 8:

    http://www.stardock.com/products/Start8/

    Concerning

  • How to change the Spry CSS tab

    I like to use these old screens provided with the former DW Spry tab.  I just looked in DW CC and it looks like they aren't there and more.  But anyway, I made one for my client.  Now, they want to get one of the tabs on the far right of the margin.  See the image below:

    tabs.jpg

    I don't know yet if it's possible to do and if someone has done this before, can you tell me what code I need to change in the CSS?  I would have joined the CSS file, but it seems that you cannot attach files in this forum, so I've copied below.

    Please offer any means to change the color of the tabs, etc. - I just need to know how - or at all - this tab can be moved to the right.

    Thanks, Guy deaf

    PS I'm sorry that the CSS code does not correctly appear in this forum.  When I type this message, looks like it will display line-by-line, but it's not.  I'm sorry.

    ---------------------------------------------

    @charset "UTF-8";
    
    
    /* SpryTabbedPanels.css - version 0.6 - Spry Pre-Release 1.6.1 */
    
    
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    
    
    /* Horizontal Tabbed Panels
     *
     * The default style for a TabbedPanels widget places all tab buttons
     * (left aligned) above the content panel.
     */
    
    
    /* This is the selector for the main TabbedPanels container. For our
     * default style, this container does not contribute anything visually,
     * but it is floated left to make sure that any floating or clearing done
     * with any of its child elements are contained completely within the
     * TabbedPanels container, to minimize any impact or undesireable
     * interaction with other floated elements on the page that may be used
     * for layout.
     *
     * If you want to constrain the width of the TabbedPanels widget, set a
     * width on the TabbedPanels container. By default, the TabbedPanels widget
     * expands horizontally to fill up available space.
     *
     * The name of the class ("TabbedPanels") used in this selector is not
     * necessary to make the widget function. You can use any class name you
     * want to style the TabbedPanels container.
     */
    .TabbedPanels {
      overflow: hidden;
      margin: 0px;
      padding: 0px;
      clear: none;
      width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
    }
    
    
    /* This is the selector for the TabGroup. The TabGroup container houses
     * all of the tab buttons for each tabbed panel in the widget. This container
     * does not contribute anything visually to the look of the widget for our
     * default style.
     *
     * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
     * necessary to make the widget function. You can use any class name you
     * want to style the TabGroup container.
     */
    .TabbedPanelsTabGroup {
      margin: 0px;
      padding: 0px;
    }
    
    
    /* This is the selector for the TabbedPanelsTab. This container houses
     * the title for the panel. This is also the tab "button" that the user clicks
     * on to activate the corresponding content panel so that it appears on top
     * of the other tabbed panels contained in the widget.
     *
     * For our default style, each tab is positioned relatively 1 pixel down from
     * where it wold normally render. This allows each tab to overlap the content
     * panel that renders below it. Each tab is rendered with a 1 pixel bottom
     * border that has a color that matches the top border of the current content
     * panel. This gives the appearance that the tab is being drawn behind the
     * content panel.
     *
     * The name of the class ("TabbedPanelsTab") used in this selector is not
     * necessary to make the widget function. You can use any class name you want
     * to style this tab container.
     */
    .TabbedPanelsTab {
      position: relative;
      top: 1px;
      float: left;
      padding: 5px 20px;
      margin: 0px 1px 0px 0px;
      font: bold 12px sans-serif;
      background-color: #f1c185;
      list-style: none;
      border-left: solid 1px #CCC;
      border-bottom: solid 1px #999;
      border-top: solid 1px #999;
      border-right: solid 1px #999;
      border-radius: 5px 5px 0px 0px;
      -moz-user-select: none;
      -khtml-user-select: none;
      cursor: pointer;
    }
    
    
    /* This selector is an example of how to change the appearnce of a tab button
     * container as the mouse enters it. The class "TabbedPanelsTabHover" is
     * programatically added and removed from the tab element as the mouse enters
     * and exits the container.
     */
    .TabbedPanelsTabHover {
      background-color: #ffd197;
    }
    
    
    /* This selector is an example of how to change the appearance of a tab button
     * container after the user has clicked on it to activate a content panel.
     * The class "TabbedPanelsTabSelected" is programatically added and removed
     * from the tab element as the user clicks on the tab button containers in
     * the widget.
     *
     * As mentioned above, for our default style, tab buttons are positioned
     * 1 pixel down from where it would normally render. When the tab button is
     * selected, we change its bottom border to match the background color of the
     * content panel so that it looks like the tab is part of the content panel.
     */
    .TabbedPanelsTabSelected {
      background-color: #ffe9cd;
      border-bottom: 1px solid #EEE;
    }
    
    
    /* This selector is an example of how to make a link inside of a tab button
     * look like normal text. Users may want to use links inside of a tab button
     * so that when it gets focus, the text *inside* the tab button gets a focus
     * ring around it, instead of the focus ring around the entire tab.
     */
    .TabbedPanelsTab a {
      color: black;
      text-decoration: none;
    }
    
    
    /* This is the selector for the ContentGroup. The ContentGroup container houses
     * all of the content panels for each tabbed panel in the widget. For our
     * default style, this container provides the background color and borders that
     * surround the content.
     *
     * The name of the class ("TabbedPanelsContentGroup") used in this selector is
     * not necessary to make the widget function. You can use any class name you
     * want to style the ContentGroup container.
     */
    .TabbedPanelsContentGroup {
      clear: both;
      border-top: solid 1px #999;
      background-color: #FFF;
    }
    
    
    /* This is the selector for the Content panel. The Content panel holds the
     * content for a single tabbed panel. For our default style, this container
     * provides some padding, so that the content is not pushed up against the
     * widget borders.
     *
     * The name of the class ("TabbedPanelsContent") used in this selector is
     * not necessary to make the widget function. You can use any class name you
     * want to style the Content container.
     */
    .TabbedPanelsContent {
      overflow: hidden;
      padding: 4px;
    }
    
    
    /* This selector is an example of how to change the appearnce of the currently
     * active container panel. The class "TabbedPanelsContentVisible" is
     * programatically added and removed from the content element as the panel
     * is activated/deactivated.
     */
    .TabbedPanelsContentVisible {
    }
    
    
    /* Vertical Tabbed Panels
     *
     * The following rules override some of the default rules above so that the
     * TabbedPanels widget renders with its tab buttons along the left side of
     * the currently active content panel.
     *
     * With the rules defined below, the only change that will have to be made
     * to switch a horizontal tabbed panels widget to a vertical tabbed panels
     * widget, is to use the "VTabbedPanels" class on the top-level widget
     * container element, instead of "TabbedPanels".
     */
    
    
    .VTabbedPanels {
      overflow: hidden;
      zoom: 1;
    }
    
    
    /* This selector floats the TabGroup so that the tab buttons it contains
     * render to the left of the active content panel. A border is drawn around
     * the group container to make it look like a list container.
     */
    .VTabbedPanels .TabbedPanelsTabGroup {
      float: left;
      width: 10em;
      height: 20em;
      background-color: #EEE;
      position: relative;
      border-top: solid 1px #999;
      border-right: solid 1px #999;
      border-left: solid 1px #CCC;
      border-bottom: solid 1px #CCC;
    }
    
    
    /* This selector disables the float property that is placed on each tab button
     * by the default TabbedPanelsTab selector rule above. It also draws a bottom
     * border for the tab. The tab button will get its left and right border from
     * the TabGroup, and its top border from the TabGroup or tab button above it.
     */
    .VTabbedPanels .TabbedPanelsTab {
      float: none;
      margin: 0px;
      border-top: none;
      border-left: none;
      border-right: none;
    }
    
    
    /* This selector disables the float property that is placed on each tab button
     * by the default TabbedPanelsTab selector rule above. It also draws a bottom
     * border for the tab. The tab button will get its left and right border from
     * the TabGroup, and its top border from the TabGroup or tab button above it.
     */
    .VTabbedPanels .TabbedPanelsTabSelected {
      background-color: #EEE;
      border-bottom: solid 1px #999;
    }
    
    
    /* This selector floats the content panels for the widget so that they
     * render to the right of the tabbed buttons.
     */
    .VTabbedPanels .TabbedPanelsContentGroup {
      clear: none;
      float: left;
      padding: 0px;
      width: 30em;
      height: 20em;
    }
    
    
    /* Styles for Printing */
    @media print {
    .TabbedPanels {
      overflow: visible !important;
    }
    .TabbedPanelsContentGroup {
      display: block !important;
      overflow: visible !important;
      height: auto !important;
    }
    .TabbedPanelsContent {
      overflow: visible !important;
      display: block !important;
      clear:both !important;
    }
    .TabbedPanelsTab {
      overflow: visible !important;
      display: block !important;
      clear:both !important;
    }
    }
    

    !-[CodeBlockStart:dffe5525-a787-4a98-a87f-f24554b12141]-->@charset 'UTF-8'; / * SpryTabbedPanels.css - 0.6 - pre-release Spry 1.6.1 version * / / * Copyright (c) 2006] Adobe Systems Incorporated. All rights reserved. * / / * Horizontal tabbed panels * the default style for a TabbedPanels widget puts all the tab buttons * (stalled left) above the content panel. * / / * This is the selector for the main container of TabbedPanels. For our * style by default, this container does not contribute anything visually, * but it is floated to the left to ensure that all floating or compensation done * with any which of her children the elements lie entirely within the limits the * TabbedPanels container, in order to minimize any impact or unwanted * interaction with other floating elements on the page which may be used * for page layout. * If you want to limit the width of the widget TabbedPanels, define a * width of the container TabbedPanels. By default, the widget TabbedPanels * extends horizontally to fill the available space. * The name of the class ("TabbedPanels") used in this selector is not * necessary to make the widget service. You can use a class name, you * want to style the TabbedPanels container. */ . TabbedPanels {overflow: hidden;}   margin: 0px;   padding: 0px;   Clear: none;   Width: 100%; / * Hack IE to force the layout correct when preceded by a paragraph. (hasLayout bug) * /} / * this is the selector for the TabGroup. The container of TabGroup houses * all buttons on the tab for each tabs in the widget panel. This container * does not contribute to what both visually in the appearance of the widget for our * default style. * The name of the class ("TabbedPanelsTabGroup") used in this selector is not * necessary to make the widget service. You can use a class name, you * want to style the TabGroup container. */ . TabbedPanelsTabGroup {margin: 0px;}   padding: 0px; } / * This is the selector for the TabbedPanelsTab. This container houses * the title of the Panel. It is also tab 'button' that the user clicks on * to activate the corresponding content panel so that it appears on top * of the other tabs in the widget panels. * For our style by default, each tab is positioned relatively 1 pixel down from * where it would normally. This allows each tab overlap content * panel that renders underneath. Each tab is rendered with a background of 1 pixel * border which has a color that corresponds to the upper edge of the current content * panel. This gives the appearance that the tab is drawn behind the * content panel. * The name of the class ("TabbedPanelsTab") used in this selector is not * necessary to make the widget service. You can use any class name you want * to style the tab container. */ . TabbedPanelsTab {position: relative;}   Top: 1px;   float: left;   padding: 5px 20px;   margin: 0px 1px 0px 0px;   Police: bold 12px without serif.   background-color: #f1c185;   list-style: none;   border-left: 1px solid #CCC;   border-bottom: 1px solid #999;   border-top: 1px solid #999;   border-right: 1px solid #999;   border-radius: 5px 0px 5px 0px;   -moz-user-select: none;   -khtml-user-select: none;   cursor: pointer; } / * This selector is an example how to change the appearance of a button in the tab * container as the mouse enters in the it. The class is "TabbedPanelsTabHover" * programatically add and remove the element tab as the mouse between in * in and out of the container. */ . TabbedPanelsTabHover {background-color: #ffd197 ;} / * this selector is an example how to do to change the appearance of a button in the tab * container after the user has clicked on it to activate a content panel.} * The 'TabbedPanelsTabSelected' class is programmatically added and removed * the tab element as long as the user clicks button tab containers in * the widget. * As mentioned above, for our style by default, the tab buttons are positioned * 1 pixel down where he would normally. What is the tab key * selected, we change its bottom border to match the background color of the * content panel so that it looks like the tab is the content panel. */ . TabbedPanelsTabSelected {background-color: #ffe9cd;}   border-bottom: 1px solid #EEE; } / * This selector is an example of how to make a link inside a tab button * look like normal text. Users may want to use the links within a tab button * so that when it gets the focus, the text * inside * the tab button gets a focus * ring around it, instead of the ring around the whole tab. * /. TabbedPanelsTab a {color: black;}   text-decoration: none; } / * This is the selector for the ContentGroup. The ContentGroup container houses * all panels of content for each tabs in the widget panel. For our * style by default, this container provides the background color and borders that * surround content. * The name of the class ("TabbedPanelsContentGroup") used in this selector is * not necessary to make the widget function. You can use a class name, you * want to style the ContentGroup container. */ . TabbedPanelsContentGroup {clear: both;}   border-top: 1px solid #999;   background-color: #FFF; } / * This is the selector for the content panel. The content panel contains the * content for a single panel tabs. For our default style, this container * provides some padding, so that content is not pushed upward against the * widget borders. * The name of the class ("TabbedPanelsContent") used in this selector is * not necessary to make the widget function. You can use a class name, you * want to style the content container. */ . TabbedPanelsContent {overflow: hidden;}   padding: 4px; } / * This selector is an example of how to change the appearance of the currently * active panel container. The class is "TabbedPanelsContentVisible" * programatically added and removed from the content as the Panel item * is enabled/disabled. */ . TabbedPanelsContentVisible {} / * vertical tabbed panels * following rules override some of the default rules above so that the * TabbedPanels widget is rendered with its buttons on the tab on the left of * the active content panel. * With the rules defined below, the only change that will be made * to move a widget panels to horizontal tabs to vertical tabbed panels * widget, is to use the 'VTabbedPanels' class on the top-level widget * element container, instead of "TabbedPanels. */ . VTabbedPanels {overflow: hidden;}   Zoom: 1; } / * This selector floats the TabGroup so that the tab buttons it contains * make left of active content panel. A border is drawn around * the group container to make it look like a container from the list. */ . VTabbedPanels. TabbedPanelsTabGroup {float: left;}   Width: 10em;   height: 20em;   background-color: #EEE;   position: relative;   border-top: 1px solid #999;   border-right: 1px solid #999;   border-left: 1px solid #CCC;   border-bottom: 1px solid #CCC; } / * This selector disables the float property that is placed on each button of the tab * by the rule above TabbedPanelsTab default selector. He also draws a background * border for the tab. The tab button will get his left and right border of * the TabGroup and its superior border of the tab above it or button TabGroup. */ . VTabbedPanels. TabbedPanelsTab {float: none;}   margin: 0px;   border-top: none;   border-left: none;   border-right: none; } / * This selector disables the float property that is placed on each button of the tab * by the rule above TabbedPanelsTab default selector. He also draws a background * border for the tab. The tab button will get his left and right border of * the TabGroup and its superior border of the tab above it or button TabGroup. */ . VTabbedPanels. TabbedPanelsTabSelected {background-color: #EEE;}   border-bottom: 1px solid #999; } / * This selector fleet contained signs of the widget while they * make it to the right of the tabs buttons. */ . VTabbedPanels. TabbedPanelsContentGroup {clear: none;}   float: left;   padding: 0px;   Width: 30em;   height: 20em; } / * Printing styles * / @media print {.} TabbedPanels {overflow: visible! important;}. TabbedPanelsContentGroup {display: block! important;}   overflow: visible! important;   height: auto! important; } . TabbedPanelsContent {overflow: visible! important;}   display: block! important;   clear: both! important; } . TabbedPanelsTab {overflow: visible! important;}   display: block! important;   clear: both! important; } }

    Add the class like below:

  • Open Ocean
  • Delete the following in your css spry as file its in the ' query print media "and has no effect on the screen - have added you it to the wrong place."

    {.alignRight}

    position: relative;

    Top: 1px;

    float: right! important;

    padding: 5px 20px;

    margin: 0px 1px 0px 0px;

    Police: bold 12px without serif.

    background-color: #f1c185;

    list-style: none;

    border-left: 1px solid #CCC;

    border-bottom: 1px solid #999;

    border-top: 1px solid #999;

    border-right: 1px solid #999;

    border-radius: 5px 0px 5px 0px;

    -moz-user-select: none;

    -khtml-user-select: none;

    cursor: pointer;

    }

    Add the below css just above the press query written:

    {.alignRight}

    float: right! important;

    }

    / * Print styles * /.

    @media print {}

  • change the spry menu bar

    Just opened my page in the new Dreamweaver 20141. What happened to the easy edit function for the Spry menu bar? I'm sure he's here somewhere, I just can't find it. It was so easy in the previous version. It just appeared at the bottom of the screen when I clicked on the bar. Where is he now?

    Never mind. I found it. Window > properties

  • How to change the Navigation Menu in DPS

    Hi all

    I would like to know if it is possible to modify and customize the menu of navigation of DPS that appears when the screen is touched (see attachment).

    Is it possible to change the background color, add icons and links, make it always displayed and so on...

    Thank you very much in advance.

    Best regardsphotoDPS-menu.jpg

    Although you can change the entire library or storefront, I don't think you can go as far as it modifies the actual Viewer UI.

  • How to change the Start Menu of Vista Home Premium?

    I would like to make my Start Menu more compact and convenient. When I try to access - settings-taskbar and Start Menu - advanced settings, most of the programs in my start actual Menu doesn't appear. How to handle this?

    Click with the right button on the Start menu and select open all users , repeat and choose Open.

  • How to change the Services Menu.

    Installed WordService to test. Ran very well but I have no reason to keep it. I removed all traces of it except, WordService choices that are listed in the preferences of Services. It does not hurt anything for them to be there, but if someone knows which file needs change or to delete I wouldn't mind if they were gone.

    TIA

    Look in your library in the folder of the User Services:

    ~/Library/services/

    You also can right-click on the item in the preferences of Services (keyboard shortcuts) and choose to Revel in the Finder, and it will open a window to the Services folder.

    If it's there, move it to the Recycle Bin and restart the computer.

  • My drop down bookmark does not offer 'manage bookmarks '. Support find Ican, is how to change the bookmarks. How can I find the link manage if this isn't in the menu drop-down?

    Question
    My drop down bookmark does not offer 'manage bookmarks '. All the support I can find that this is how to change the bookmarks. How can I find the link manage if this isn't in the drop-down list?

    In Firefox 4, "Organize bookmarks" was changed to "Show all bookmarks" to open the library window.

  • How to change the recovery of main mobile phone account is linked to a mobile phone that is no longer in use

    Using Hotmail, how to change the recovery of main mobile phone account is linked to a mobile phone that is no longer in use.

    I can't remove it, I can't change it or do anything else without the system you want to send a text message for that phone for conformation. can you change the setting to send an email to the place or the main number of conformation ahange.

    Steve

    Hello

    The question you have posted is related to hotmail; This is why it would be better suited in the Windows Live community. Please visit the link below to find a community that will provide the best support.

    http://www.windowslivehelp.com/product.aspx?ProductID=1

    http://www.windowslivehelp.com/

  • How to change the xml link?

    First a few words about my background:

    I got a page on a version of InDesign CS3 layout. Now, I'm creating a procedure to automate the production of several pdf based on this provision. Manually process would be to open the page layout; change the xml with each xml source link and create a file pdf corresponding...

    First question:

    In CS4 when I want to manually edit the xml link, the open dialog box prevents me (xml files are grey) to select xml files, it is a well known problem? How can I avoid it?

    Second question:

    How to change the script xml link?

    Last question - applescript question -:

    How to skip application dialog boxes? As "this document is missing a few links, would continue you?

    If you want to be able to help me, thanks in advance!

    There is a piece of code found on the net:

    tell document 1 of application "Adobe InDesign CS3"relink thisItemLink to someFileReferenceupdate thisItemLinkend
    
  • How I change the fonts and colors of default return?

    I changed the font and the color of the text through the Tools button and the button options and the tab content. I can't find anything tell me how to change the fonts and colors to the colors and fonts by default. Can you advise me? I use Windows 7 Home Premium OS. Thank you.

    Hi Brenda19605,

    You can use this article to set the fonts and colors: https://support.mozilla.org/en-US/kb/change-fonts-and-colors-websites-use?esab=a & s = do & r = 0 & s = as

    The default settings for the police are in this article:
    https://support.Mozilla.org/en-us/KB/some%20text%20shows%20up%20bold%20after%20upgrade

    Unfortunately for the default color has no good reference. For the text, but it is black (most lower-left), the background is white (color above left). Unvisited links is blue (column 8, line 5) and the visited link is purple (column 9, line 5).

    Let me know if you need help more!

    Lordfreak

  • Portege S100: How to change the RAID in the BIOS

    Change the BIOS setting for Portege S100 of JBOD to RAID0, I hit space on Exectute creation and enter the key of type string in the manual, and press "enter".
    Settings and then return to existing arrangements and not the new RAID0 configuration setting that I selected.

    I stayed in this part of the day / night looking at different positions, but I don't see anything wrong with the data entered.

    This is the same as that recorded in this link: -.
    [How to change the RAID configuration | http://aps2.toshiba-tro.de/kb0/TSB6901K60006R01.htm]

    I'm now at the end of my home, I just wanted to install new HDD WD and new installation of XP Pro, is - it too much to ask?

    Maybe it s a silly question but; have you installed the second HDD to the Ultra Slim Bay?
    The RAID did feature is available when a second HDDD is installed in Ultra Slim Bay.

    If the second HDD was inserted and then change the RAID in the Windows operating system.
    There should be a Toshiba RAID Console.
    You can use this console to create or manage a RAID array.

    To start the utility, click Start, point to all programs, point to Toshiba, RIAD-tap and click RAID console.
    It of possible to change the RAID1 (mirroring) of a configuration non-RAID (default).

    But note; When RAID1 is set, you cannot change your settings unless you completely restore your preinstalled software.

  • Pavilion 15-P290NO: how to change the function of the buttons behavior in Windows 10

    I just received my new laptop (a Pavilion 15-P290NO) the other day and installed Windows 10 top immediately. Now I can't figure out how to change the behavior of the function keys so that I won't have to press the fn key if I want for example to use f2 for other functions that turn down the brightness of the screen. Instead, I want him out if I for some reason any really want to turn down the brightness, I hold the fn and f2. At this point, I am open to almost any suggestions.

    Hello

    Shut down the laptop.  Tap away at the esc you key start Notepad to open the Start Menu.  Select the Bios ( f10 ) option, and then change the figure in the document at the following link.

    http://support.HP.com/us-en/document/c02035108

    Kind regards

    DP - K

  • How to change the shutdown preferences in Windows XP?

    Original title: how to get the option in the list and selecting turn off computer option rather wide stand-by, turn off, restart icons in win xp sp3 proff

    standby Turn off reboot

    in the list

    Wait a second
    Disable
    Restart

    example of

    What do you do on the computer

    Hello

    I suggest you to see the steps in the link with the work on the issue.

    How to change the logon window and the shutdown preferences in Windows XP

    http://support.Microsoft.com/kb/291559

    Registry warning

    To do: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    322756 (http://support.microsoft.com/kb/322756/ )

    Hope this information is useful.

  • How to change the folder opens when windows Explorer opens

    In XP Service Pack 3, when Win Explorer is open, files that open has changed on its own (or I don't know what I did to cause this change). Records of Documents are all posted, but the C: drive is closed, where it will display all folders to open at this stage.

    How can I reset so that all the files under C: drive open when I open Win Explorer?

    Kind regards

    bytes2001

    Hello bytes2001,

    I enclose a link below that I hope can fix this problem.  Please let us know status.

    How to customize the Windows Explorer views in Windows XP: the bottom of the page talks about how to change the default folder of Windows Explorer.

    http://support.Microsoft.com/kb/307856

    Thank you

  • How to change the security settings on a wireless network

    I would change the existing network security settings to WPA2, AES, or at least from TKIP AES.

    I am familiar with access via browser to the router and how to change the settings of the router.

    My question is how to make this as painless as possible for the network.  Step by step would be great

    First of all, I guess I have to change the settings of the router using the computer running Easy Link Advisor?

    Do I then have to disconnect/reconnect this computer?

    Do I have to unplug all the other computers and then sign in again with the update settings?

    The change of security settings affect my print server?  If so, I put up from scratch in ELA?

    For the record, I have a WRT 300N and the print server is a 54g.

    Anyone who reads this can also focus on recent news.  Maybe not a big deal, but a WPA/TKIP vulnerabilities has been identified.

    Thanks in advance to anyone who responds.

    If you change the router's wireless security settings, it will affect all devices that connect wireless to the router. To change the settings, simply set until you want on the web interface of the router. Save the settings. You need not link to that Advisor. Direct access to the web interface of the router is sufficient and preferable.

    All devices configured to connect to this network should ask if they connect more. It depends on type of what you had before. If you have not used WPA2 or WPA before having to ask for the password. If you used the WPA or WPA2 with the same password that they cannot even ask the password. How it works in detail with a specific wireless device depends on the device and the software you use. Some devices may require you to first remove the network wireless in the list of "preferred networks" and then reconnect.

    Check the manual of the print server how to configure for the new security settings. You should be able to reconfigure the print server through a web interface. First, it is probably best to change the settings on the print server and then make the change on the router. Otherwise, you may have a hard time, connection to the print server to make the change. In addition, depending on how old the print server is that it cannot even support WPA2 and AES.

Maybe you are looking for

  • How can I download Mozilla Firefox Windows 7 (32-bit)?

    I need to download this program so that I can do FAFSA application.

  • Satellite Pro U400-12A - cannot load my battery

    Hello I have a problem with my battery. I bought a toshiba laptop has named satellite pro U400-12 or something similar.But so far I was unable to load the original battery. The light orange is always burn for about 10 minutes when I connect to the ne

  • Could not open the xls for some reason any

    When I try to open a XLS file with numbers 3.6.1 I get the error message ' cannot be opened for some reason any. " I tried to change the type of file csv and txt but neither technique gives readable results. I also tried to fix HD Mac (in fact a SSD)

  • How better to connect a parallel to a network printer

    We have two laptops running Windows 7 and a parallel printer of HP Color LaserJet 5 1996... No laptop computer has parallel port... We also have a D-Link 4 port ethernet router The love printer... want to keep... THX Kelly

  • resolveLocalFileSystemURL works only on Android Nougut

    resolveLocalFileSystemURL is not the success of fire or reminders about Android Nougut to fail. Nothing happens!I had installed an app that worked very well but after the upgrade of Nougut, it has stopped working.Further investigation, I found that t