HP ProDesk 400 G1 Small Form Factor Business PC using vga and dvi at the same time.

Looking into purchase a HP ProDesk 400 G1 Small Form Factor Business PC which has a VGA and DVI-D ports on the integrated video card.  Can you use both ports simultaniously. one screen connected to vga and a 2nd monitor connected to the DVI port?

Hi,
You might get better assistance on the HP Enterprise Business Forum.
HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
HP Photosmart Premium C309G, HP Photosmart 6520
HP Touchpad, HP Chromebook 11
Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
Windows 7/8 UEFI/Legacy mode, MBR/GPT

Similar Messages

  • Opening Form in Insert mode but making a query at the same time

    My problem is that I want to open a Portal Form in Insert mode but at the same time making a query.
    If I call a form with patameters the form opens automatically in update mode (to be more precise with FORMSTATE = UPDATE_AND INSERT). In that case the insert button is not shown.
    I have come very close to a solution by running this code:
    BEGIN
    p_session.set_value(
    p_block_name => 'DEFAULT',
    p_attribute_name => '_FORM_STATE',
    p_value => 'QUERY_AND_INSERT');
    END;
    under "... before processing the form". The form-state changes to QUERY_AND_INSERT' and I get the record from the table that I want but I still see no insert button!
    I think that I can solve this problem in some table-triggers in the database but it would be interesting to know weather it is possible to do this in the portal.

    Kari,
    You can workaround the disappearing Insert button by creating a custom button instead.
    If you look at the "standard" Insert button code it looks like this:
    --- Type your PL/SQL code here...
    doInsert;--- This is the default handler
    --- ...and here, thanks...
    in the generated forms package doInsert just calls internal insert handler:
    procedure doINSERT
    is
    begin
    onINSERT(
    p_block_name => p_block_name ,
    p_object_name => p_object_name,
    p_instance => p_instance ,
    p_event_type => p_event_type ,
    p_user_args => p_user_args ,
    p_session => p_session);
    end doINSERT;
    If you add a custom button to your form and from PLSQL event combobox select "Custom", then copy&paste this code to the event code:
    onINSERT(
    p_block_name => p_block_name ,
    p_object_name => p_object_name,
    p_instance => p_instance ,
    p_event_type => p_event_type ,
    p_user_args => p_user_args ,
    p_session => p_session);
    You will get a custom button which does exactly what the Insert button does and it will not disappear from the screen.
    Thanks,
    Dmitry

  • Running FW 400 and 800 at the same time

    Somebody told me there are problems running a 400 drive and an 800 drive at the same time. Is that true? I'm considering what drive to buy for audio on my macbook which only has one 400 and one 800 port. Will I be able to back up from the 800 to a 400? The 800 drive has one 400 port so I can't daisy chain it as a 400. Does the 800 bus offer any advantages to audio recording besides faster archiving?

    There shouldn't be any problems, and I've never heard of any.
    However, chaining or bus sharing FW400 and FW800 (on any Mac) will always pull the overall bus speed down to the slower FW400 transfer rate. Which, when working with audio, will make no noticeable difference at all.
    It's the same when bus sharing USB1 and USB2, the slower connection always takes precident.

  • Form POST and GET at the same time?

    I am trying to add an entry to a database so the form has to
    be set to POST.
    But I would also like to have the code from the form added to
    the URL so I can use this in the next page, but I would need to
    have a GET action in the form for this...
    How can I do both at once?
    I have done a work around by adding a time stamp on the new
    entry, then the next page just finds the most recent addition - it
    works but its a bit clunky.
    Any better alternatives?

    Thank you for all your efforts, but the problem for me is
    that there are so many possibilities of what to do I would never be
    able to get it right. Its like being given the ingredients for a
    soufflé but not the method. It would take a heck of a lot of
    guesses to find something that was like a soufflé.
    Below is the PHP for the page, I assume you mean to put the
    < mysql_insert_id() > somewhere amongst the part where it
    says this:
    $insertGoTo = "AdminProductNewCheck.php";
    if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
    But I still have no idea EXACLY where to put it. Nor how to
    actually insert it, as the script you have sent refers to "kossu"
    ???? and printf ???? is this the same as echo?
    I am beginning to think there is nothing wrong with how it is
    set up now!
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "", $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    "'" : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
    $editFormAction .= "?" .
    htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) &&
    ($_POST["MM_insert"] == "updateForm")) {
    $insertSQL = sprintf("INSERT INTO products (`Department`,
    `Section`, `Show`, `Code`, `ShowOrder`, `Name`, `Description`,
    `Dimensions1`, `Dimensions2`, `Dimensions3`, `Dimensions4`,
    `Dimensions5`, `Dimensions6`, `Price`, `Note`) VALUES (%s, %s, %s,
    %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
    GetSQLValueString($_POST['Department'], "text"),
    GetSQLValueString($_POST['Section'], "text"),
    GetSQLValueString($_POST['Show'], "int"),
    GetSQLValueString($_POST['Code'], "text"),
    GetSQLValueString($_POST['ShowOrder'], "int"),
    GetSQLValueString($_POST['Name'], "text"),
    GetSQLValueString($_POST['Description'], "text"),
    GetSQLValueString($_POST['Dimensions1'], "text"),
    GetSQLValueString($_POST['Dimensions2'], "text"),
    GetSQLValueString($_POST['Dimensions3'], "text"),
    GetSQLValueString($_POST['Dimensions4'], "text"),
    GetSQLValueString($_POST['Dimensions5'], "text"),
    GetSQLValueString($_POST['Dimensions6'], "text"),
    GetSQLValueString($_POST['Price'], "double"),
    GetSQLValueString($_POST['Note'], "text"));
    mysql_select_db($database_chilstone_connection,
    $chilstone_connection);
    $Result1 = mysql_query($insertSQL, $chilstone_connection) or
    die(mysql_error());
    $insertGoTo = "AdminProductNewCheck.php";
    if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
    header(sprintf("Location: %s", $insertGoTo));
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "", $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    "'" : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    $colname_ProductCode_RS = "-1";
    if (isset($_GET['Code'])) {
    $colname_ProductCode_RS = $_GET['Code'];
    mysql_select_db($database_chilstone_connection,
    $chilstone_connection);
    $query_ProductCode_RS = sprintf("SELECT * FROM products WHERE
    Code = %s", GetSQLValueString($colname_ProductCode_RS, "text"));
    $ProductCode_RS = mysql_query($query_ProductCode_RS,
    $chilstone_connection) or die(mysql_error());
    $row_ProductCode_RS = mysql_fetch_assoc($ProductCode_RS);
    $totalRows_ProductCode_RS = mysql_num_rows($ProductCode_RS);
    mysql_select_db($database_chilstone_connection,
    $chilstone_connection);
    $query_SectionHeadings_Recordset = "SELECT * FROM sections";
    $SectionHeadings_Recordset =
    mysql_query($query_SectionHeadings_Recordset,
    $chilstone_connection) or die(mysql_error());
    $row_SectionHeadings_Recordset =
    mysql_fetch_assoc($SectionHeadings_Recordset);
    $totalRows_SectionHeadings_Recordset =
    mysql_num_rows($SectionHeadings_Recordset);
    $currentPage = $_SERVER["PHP_SELF"];
    $queryString_ProductCode_RS = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
    $params = explode("&", $_SERVER['QUERY_STRING']);
    $newParams = array();
    foreach ($params as $param) {
    if (stristr($param, "pageNum_ProductCode_RS") == false
    stristr($param, "totalRows_ProductCode_RS") == false) {
    array_push($newParams, $param);
    if (count($newParams) != 0) {
    $queryString_ProductCode_RS = "&" .
    htmlentities(implode("&", $newParams));
    $queryString_ProductCode_RS =
    sprintf("&totalRows_ProductCode_RS=%d%s",
    $totalRows_ProductCode_RS, $queryString_ProductCode_RS);
    ?>
    Text
    Text

  • Sending a form to 2 different partner e-mail ids at the same time

    Hi,
    A case where a shipment has two deliveries with two different partners(e-mail partner function YM)and a form(eg. picking list) should be sent to both the partner e-mail ids. Is there any option to pass two e-mail ids to the structure SWOTOBJID that is passed to the open_form function module?
    Regards,
    Asha

    See the response to your other post

  • HT4623 Why is my iPad 2 randomly opening and closing apps? And why, at the same time, does the screen goes bigger than smaller repetitively?

    7.29.2013 - iPad2 begins to randomly open and close apps and also the screen changes from bigger to smaller repetitively when the apps are randomly opening and closing. Nothing occurred with the device to indicate why this started happening; it was not dropped, etc.

    If still problem:
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - 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                       

  • How to update firmware for HP Compaq DC small form factor

    I have HP Compaq dc7700 small form factor, Windows xp pro. It was bought on ebay and works fine except for one thing. The Bios was upgraded  but the firmware is not upgrading. the Bios was upgraded to V3.05 but the firmware remains 2.04
    I downloaded al the updates and firmware and followed instructions but I seem to have problems updating the firmware. I would like to know how to do this step by step because the instructions I read seems to be missing some steps. my question is how to update the firmware. I did read the instructions but could not get it updated. either updating via windows or in dos, I can't seem to make it successful. There are two error messages,
    1. ME BIOS Extension module has halted. Update BIOS or Management Engine firmware if problem persists.
    2. Amt mamagement engine is disabled.

    HP normally uses the term BIOS to refer to motherboard/CPU "firmware" updates and Firmware to refer to other device "firmware" updates... Below is a list of the two classes of firmware;
    BIOS 
    Business Desktops BIOS Utilities 4.02 Rev. A
    Microcode Update for HP 786E BIOS Family Computers with Intel Processors 1.06 Rev. A
    HP Compaq Business Desktop ME Firmware Update and Utilities 2.2.30.1046 Rev. A
    HP Compaq dc7700p Business Desktop System BIOS for Intel vPro Technology (786E1 BIOS) 3.05 Rev. A
    HP Compaq Business Desktop System BIOS (786E1 BIOS) 1.15 Rev. A
    Firmware
    Western Digital 7200-rpm Hard Drive Firmware Update 3.03E03 Rev. A
    Intel PRO/1000 Firmware 1.10 Rev. A
    HP Optical Drive (TSST H353B DVD-ROM) Firmware Update BC08 Rev. A
    HP Optical Drive (TSST H653N DVD-RW) Firmware Update HB02 Rev. A
    Seagate Hard Drive Firmware Upgrade for 500-GB Barracuda 7200.11 HP13 Rev. A
    ATI X1600XT Graphics Card Video BIOS Update S3A67124.104 Rev. A
    Samsung Hard Drive Firmware Upgrade - SATA Drives 42_51 Rev. A
    Please identify the exact device you wish to upgrade/update the firmware to.
    Frank
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Dekstop DC7800p Small Form Factor system

    Hi,
    I've got a dc7800 Small Form Factor system. It was working fine but after a reboot it won't start up normally anymore. The black POST screen appears, RAM testing starts to count up and then I see and error about "system options not set". After less than a second, a blue window in the middle of the screen displays the message "smart card authentication" and below that, "smart card reader not present".
    From a bit of reading it seems like a BIOS problem but I can't figure out how to really reset the CMOS and get things working again. I've tried removing the CMOS jumper and booting the system, removing the power cord and CMOS battery for 10 minutes.
    Is there a way to do one of the following:
    - force the CMOS defaults to reset and remove the configuration that requires the smart card authentication?
    - force a BIOS recovery, with a key combination or by using a different jumper or jumpers on the motherboard?
    I see various other jumpers and pads on the motherboard like "ROM RCVRY" and the E15 Boot Block Recovery Header but scant information about how these might be used to solve the problem.
    It seems to me that the hardware is fine as it powers up and displays the POST screen. It's like a BIOS setting has been reset to require a smart card, even though there isn't one, nor even a smart card reader, in the system.
    Any advice would be greatly appreciated.

    After doing some research on the message, I came across this post.
    Apparently, your PC has a smart card optional system (maybe it was government surplus).
    http://h30499.www3.hp.com/t5/Business-PCs-Compaq-Elite-Pro/DC7800-smart-card-athentication/m-p/10691...
    Now, if you can get into the BIOS menus, if you look at the top of page 8, you will see what you need to do in order to enable/disable the smart card reader message.
    http://bizsupport1.austin.hp.com/bc/docs/support/SupportManual/c01162201/c01162201.pdf
    Whatever the problem is, it is a security setting issue, and clearing the CMOS or updating the BIOS will not have any effect on that setting.
    Unfortunately, I have no experience with the security settings or protect tools software on HP business PC's.
    I have a dc7800 (and only use HP business desktops and notebooks), so I am very familiar with all the other aspects of the PC, but that one.
    You may want to post your issue on the HP business support forum, business PC section.  Hopefully someone there has experience with turning this feature on or off.
    http://h30499.www3.hp.com/t5/Business-PCs-Compaq-Elite-Pro/bd-p/bsc-271#.Uk2rcJAo69I
    You may also want to log in and reply to that post, but don't get your hopes up that it will be answered.
    RichS hasn't replied to a post in 3 years. Although someone else may.
    Good luck, and please post back if you find the solution to the problem.

  • Dual monitors HP Z200 Small Form Factor Workstation

    I am waiting on my new Intel I-5 HP Z200 Small Form Factor Workstation running Windows 7.  What do I need to run two monitors?  I believe that there is an HDMI and a DVI video output on the rear - can I run two monitors off of these two outputs or do I need a video card?  If I buy a video card do I need one with two HDMI outputs (my preferred connection) or can I use the one on the motherboard and one on an add in card siumultaneously?

    Hi,
    For that card, with the right connectors and adaptors you can connect to TWO minitors ( Drive up to two 30-inch (2560x1600) digital displays through native dual DisplayPort connectors on a low-profile card.):
        http://www.nvidia.com/object/nvs-310-graphics-card.html#pdpContent=2
     Bau you can add an adapter such as:
         https://www.youtube.com/watch?v=ZkbaXkMQrIM
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Hp pro 3130 small form factor freezing

    Hey guys, I recently rolled out a HP Pro 3130 Small Form Factor PC to a client a month ago and they have been experiencing constant freezing. Basically the whole PC locks up and nothing can be done to revive it aside from a complete Power Cycle. As an IT Professional, I have done significant investigation and troubleshooting and have not been able to come to any conclusion. It appears to be completely random with no patterns (eg particular application or time) and happens several times a day. I have done the following: - checked event viewer for errors or warnings (none) - checked to see if a dump file is created (none) - run a CPU Stress test and monitoring the temperatures (max 70C) - run a RAM test (memtest) with no errors reported - run a HDD test (spinrite) with no errors reported - run a windows system file check (sfc) with 100% valid file integrity - downloaded and installed latest drivers - installed latest windows updates I feel I have exhausted all options short of either a complete OS reload (i would prefer not to do) or a warranty return. Any ideas?

    Hello RTerrell,
    If your computer is locking up and there are bands of lines going down the screen then something is failing hardware wise
    1. Memory
    2. Video Card
    3. Power Supply
    There could also be bulging capacitors on the boards.
    The best thing is to start ruling out hardware components by swapping in new ones. The power supply being the first easy one. Then try with one stick of RAM at a time, try replacing the RAM with other RAM. Finally replace the video card. If it's still failing after that then it may be the motherboard, but I'm hesitant to think that.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • No Audio from HP Compaq 6000 Pro Small Form Factor PC display port

    Hi
    I have a HP Compaq 6000 Pro Small Form Factor PC that has a display port. I bought a display port-HDMI adapter to use it on my LG plasma TV. The video is fine but i get no audio.
    Please what do i need to do? does my display port support audio? The symbol on it has the DP++ sign which indicates it should support audio.
    Please assist me.

    Hi:
    To the best of my knowledge, your PC does not support audio out of the display port.
    Check your sound and playback  menu in the contol panel, and see if you have 2 HD audio selection choices. If not, you won't be able to get sound out of the display port.
    Paul

  • 3548-XL-EN to switch with small form-factor pluggable (SFP) ports

    Is it possible to connect my 3548 with a WS-G5484 directly to a 3560-24TS
    with small form-factor pluggable (SFP) port?
    thanks

    Yes.. You will need a LC-SC connector. The part number for a 10-Meter Fiber Multimode SX LC-to-SC Connectors is "CSS5-CABSX-LCSC"

  • What replacement power supply for m72e small form factor

    Simple question
    I have a bunch of lenovo m72e small form factor pc's.
    is the power supply a standard tfx or some sort of proprietary system.
    I was thinking of upgrading and also preparing for furture failure contingency.

    Many thanks for the update.  it is as i feared.  i hate the proprietary major components.... oh well, thank goodness for ebay.
    also, much less important as I figured out how to sysprep a machine to move windows recently.  Since our office FINALLY migrated to windows 7 x64; any future upgrades will be fairly easy on a modern OS.
    The m72e we purchased have 3 years support build in so it should be a while before I have to worry about servicing them.
    Having said all this, the Dell vostro 200 systems we have are 7 years old and trucking along with no service issues so far.  
    Lenovo machines were cheaper / on sale at the time and dell has since discontinued their vostro line so we tried the switch over on 1/2 our workstations @ the office.
    The speed of the system is fine but there are certainly some bios/hardware bugs that we have noted around the network card.  
    I doubt we will transition the rest of the systems to lenovo at this point.  Sure is easy to service when all your systems are from 1 vendor and the exact same lineage though.

  • Random, excruciatingly slow load time with 7900 Elite small form factor desktops

    Hi all, I have approx 300 HP 7900 Elite small form factor machines in my environment that were deployed just over two years ago. from the time of deployment we have experienced on about 50 occasions a random, excruciatingly slow load time that take about one hour for the user to login and open their programs. there has been no rhyme or reason for it, different floors, areas of the building, etc. I searched the forum for similar probs and didn't see one like this, I hope I'm not duplicating efforts from someone else's question... One thing we have noticed is that if we re-boot while it is going through the start-up process, it seems to "make it angry" and will lengthen the overall load time. We use the 32-bit Vista Enterprise OS. This is with a "stock" build, that is to say, our standard corporate build. our security policy does not allow users to install software, by the way. Thanks so much if you can help!

    Hi,
    How is the issue going? Usually, this error can be caused by missing third-party NIC driver. To solve the issue, we can download the missing network
    driver and update the WDS boot image to include it.
    In addition to the article provided by Chris, the following blog can also be referred to as reference.
    http://askmetricks.blogspot.in/2013/03/solvedwdsclient-error-occurred-while.html
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this
    information.
    Best regards,
    Frank Shen

  • No sound output on installing a hdmi support graphics card on HP Compaq dc5800 Small Form Factor

    when i inserted a HDMI support graphics card on g-force nvidia on my HP Compaq dc5800 Small Form Factor no audio output was availabe i need a support for this problem

    You will have to switch the sound Playback from Speakers to the Digital Audio output.
    Disconnect the speakers from the default output at the rear of your PC.  Sound will be output through the HDMI cable to the device it is connected to if the video device has HDMI sound capability.  If you have it connected to an HDTV it should not be an issue. All you will have to do is use the TV's menu to accept the computer input instead of cable.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

Maybe you are looking for

  • Parent member level rollups of amount

    I have dimension formula in base level members of account and values are properly being calculated in base level. But these values are not being properly rolled up in to parent account in the report. Is someone is experiencing same issue in BPC7NW. T

  • I'm selling my ipod and need to erase all content.

    I'm selling my ipod and need to erase all content. I cannot enter the passcode to proceed because it's telling me to try again in 22433090 minutes. How can I get around this?

  • Changing a Mouse pointer

    I would like to be able to change my mouse pointer to something other that what set_application_property cursor_style can do for me. I would like to be able to call a mouse pointer from the file system and replace the the pointer in my forms app. Tha

  • Hover Effect in Top level navigation in Portal 7.3

    Hi All, We have achieved hover effect till 3 levels in Portal 7.3 We have tried to implement 4th level,but we are facing issue Kindly help me to implement 4 level hover effect in portal 7.3 (EHP6). Please find the attached CSS and JSP file for 3 leve

  • My iPhone 4 will not connect to my home wi-fi network.

    My iPhone 4 will not connect to my home wi-fi network, and it doesn't take me to the password as it used to do.  Comcast is my internet provider.