See this JLS specification and give a code that works according to it...

5.1.5 Narrowing Reference Conversions
The following conversions are called the narrowing reference conversions:
NB: (NOT PART OF SPEC) : Rules for converting from class S to an interface K
From any class type S to any interface type K, provided that S is not final and does not implement K. (An important special case is that there is a narrowing conversion from the class type Object to any interface type.)
Give me a workable code example that illustrates this concept.
Thanks

1) For every narrowing (primitive or reference)
conversions there is a corresponding widening
(primitive or reference) conversion in the
opposite direction if the code is to be run without
throwing a run time exception. Where did you get that from? For the example code given by stevejluke in reply 5, there is no corresponding widening conversion in the opposite direction (the conversion in the opposite direction is in fact another narrowing conversion, from an interface type to a non-final class type). So no, in order for the codeto run without producing an exception, there does not need to be a widening conversion in the opposite direction.
Furthermore, primitive conversions never throw any exceptions anyway.
This can be put as:
It there is a narrowing (primitive or reference)
conversion from S to T, then there should be a
widening conversion from T to S (which is taken care
at Compile Time itself). No, this in itself is not correct
This guarantees that there
will be no run time exception.
Is this a necessary and sufficient condition for the
code to run without an exception? (Or)
Is it otherwise?Now its unclear what you really want to ask. It is not true that there is always an opposite widening conversion. Perhaps you mean to ask "If there happens to be an opposite widening conversion, then will the narrowing conversoin always execute at runtime without throwing an exception?". If this is what you are asking, then the answer is no: Consider a cast from type java.lang.Object to type int[]; This cast uses a narrowing reference conversion for which there is an opposite widening reference conversion (you can look them up in chapter 5 of the JLS); However, at runtime, the Object reference might be to any instance of Object, and so might fail. E.g.:
public class Test {
    public static void main(String[] argv) {
        Object obj = new Object();
        int[] arr = (int[])obj; // A narrowing reference conversion from type Object
                                 // to type int[]. There is a corresponding widening
                                 // reference conversion from int[] to Object,
                                 // but this cast will still fail at runtime as the runtime
                                 // type of arr is not int[]
2) Every narrowing conversion should be carried over
by an explicit cast using the cast operator, like:
S = (S) T;
No. This is true for narrowing reference conversions, but not for narrowing primitive conversions (which do not require a cast where the value is a compile-time constant small enough to be represented within the value set of the type it is being converted to).

Similar Messages

  • Umm I just got this iPhone 5 and cellular data is not working, can't access apps, heck can't even download any and Safari...ummm yeah not happening.  I'm with Sprint if that makes any difference.

    Umm I just got this iPhone 5 and cellular data is not working, can't access apps, heck can't even download any and Safari...ummm yeah not happening.  I'm with Sprint if that makes any difference.

    Are you in an area where there is no coverage?
    You can try a reset, hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    If that doesn't help, then yOu'll need to contact Sprint again.

  • I am having issues with 360 degree rotation, I have an iPhone 5 and ios 6.0.2. I have read alot about this issue online and I found out that my issue is software. I want to know if and when apple will fix this issue?

    I am having issues with 360 degree rotation, I have an iPhone 5 and ios 6.0.2. I have read alot about this issue online and I found out that my issue is software. I want to know if and when apple will fix this issue?

    I had the same experience with a new iPhone 5 that I bought  last week. Did not have a chance to measure battery life before the 6.0.2 upgrade installed but I set up my phone exactly like my 4S and immediately started running out of power after short periods. Went to Xmas get together with fully charged 5 and 4S. Heading home the iPhone 5 shut down for low battery and the 4S had 65% power. Both phones had two half phone calls on then and no data usage.
    That night I fully charged the iPhone 5 and, without lighting it up, put it on my night table. Next morning I picked it up and looked at battery indicator and I had 42% charge with NO activity!
    Tried it again next night and wound up with 37% charge. (Slept longer).
    Today I called the carrier and reactivated the 4S.  Took the 5 to Apple Store and they kindly gave me choice of new replacement phone or refund. I took the refund. Uniquely, the Apple Store said it was Verizon CDMA phones that were coming back.
    The are other strings on this with temporary solutions, but from my experience with 7 firmware changes on an HTC 4G phone the problem will continue because the solution will be hardware caused. We are in the days where RTM means Rush to Market - not Release To Manufacturing.
    I fear the only solution is to either wait for the next model (I did not notice a really major change in performance over the 4S in LTE heavy Seattle area) - or switch to another manufacturer.
    It might be useful for these forums to indicate if you have a GSM or CDMA phone to see which have more problems.
    Discouraged....

  • Region Monitoring iOS 7 : didEnterRegion method is not calling when app is killed by user or by OS in iOS 7 only. It is working fine when it is in background. and the same code is working fine with iOS 6 for both app in suspended mode and background mode.

    Region Monitoring iOS 7 : didEnterRegion method is not calling when app is killed by user or by OS in iOS 7 only. It is working fine when it is in background. and the same code is working fine with iOS 6 for both app in suspended mode and background mode. What changes I have to made to work great in iOS 7 also.

    I rewrote code for debugging purpose and tried to catch error using GetLastError();  method,
    but it only printed 0. Below is code snippet; I think Create() throw an exception
    and code goes to catch block. 
    LONG ConnectTS(CString strIP, UINT n_Port)
    try{
              ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
              if(!Create())
    // Exception Line
    n_Err = GetLastError();
    return NET_INIT;
    catch(...)
                       DWORD errorCode = GetLastError();
                       CString errorMessage
                       errorMessage.Format("%lu",errorCode);
                       ErrorLog (0, 0, "Image
    System", (LPTSTR)(LPCTSTR)errorMessage);
                       return  IS_ERR_WINDOWS;
    Output: -
    ConnectTS is calling Create [is going to call]
    Image System
    0

  • How to make the same code that works only?

    how to make the same code that works only?
    code:
    Form2.Close = Me.Enabled = true
    effect such as this code

    I have this code:
    Public Class Form1
    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
    Form2.Show()
    Me.Enabled = False
    End Sub
    Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
    Form3.Show()
    Me.Enabled = False
    End Sub
    End Class
    he wants to after closing Form2 and Form3 unblocked the whole form1
    it means that:
    when I click the button, displays the himself form2 and blocks himself form1" and after closing Form2 , unlocks himself Form1"
    the same with Form3

  • The IFS environment disable mail.jar code that works...

    I have code that works fine (sending email) until I include the
    IFS ifsdefault.properties file in my classpath. Then I get the
    the following error. I have tried changing the
    javamail.providers file to look like this:
    #protocol=ifs1; type=transport;
    class=oracle.ifs.adk.mail.IfsTransport; vendor=Oracle2
    #protocol=ifs; type=store; class=oracle.ifs.adk.mail.IfsStore;
    vendor=Oracle2
    protocol=ifs1; type=transport; class=javax.mail.Transport;
    I thought the IFS mail API is deprecated. How do I get IFS to
    use my mail.jar?
    Below is the error message that I get when I include the
    ifsdefault.properties in the classpath.
    DEBUG: not loading system providers in <java.home>/lib
    DEBUG: successfully loaded optional custom providers from URL:
    file:/C:/oracle/ora90/9ifs/settings/META-INF/javamail.providers
    DEBUG: successfully loaded default providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name:
    {oracle.ifs.adk.mail.IfsStore=javax.mail.Provider
    [STORE,ifs,oracle.ifs.adk.mail.IfsStore,Oracle1],
    javax.mail.Transport=javax.mail.Provider
    [TRANSPORT,ifs1,javax.mail.Transport],
    oracle.ifs.adk.mail.IfsTransport=javax.mail.Provider
    [TRANSPORT,ifs1,oracle.ifs.adk.mail.IfsTransport,Oracle1]}
    DEBUG: Providers Listed By Protocol: {ifs1=javax.mail.Provider
    [TRANSPORT,ifs1,javax.mail.Transport], ifs=javax.mail.Provider
    [STORE,ifs,oracle.ifs.adk.mail.IfsStore,Oracle1]}
    DEBUG: successfully loaded optional address map from URL:
    file:/C:/oracle/ora90/9ifs/settings/META-INF/javamail.address.map
    DEBUG: getProvider() returning javax.mail.Provider
    [TRANSPORT,ifs1,javax.mail.Transport]
    java.lang.InstantiationException: javax.mail.Transport
    at java.lang.reflect.Constructor.newInstance(Native
    Method)
    at javax.mail.Session.getService(Session.java:566)
    at javax.mail.Session.getTransport(Session.java:500)
    at javax.mail.Session.getTransport(Session.java:443)
    at javax.mail.Session.getTransport(Session.java:423)
    at javax.mail.Session.getTransport(Session.java:478)
    at javax.mail.Transport.send0(Transport.java:154)
    at javax.mail.Transport.send(Transport.java:80)
    at MSGR.main(MSGR.java:45)
    javax.mail.NoSuchProviderException: ifs1
    at javax.mail.Session.getService(Session.java:570)
    at javax.mail.Session.getTransport(Session.java:500)
    at javax.mail.Session.getTransport(Session.java:443)
    at javax.mail.Session.getTransport(Session.java:423)
    at javax.mail.Session.getTransport(Session.java:478)
    at javax.mail.Transport.send0(Transport.java:154)
    at javax.mail.Transport.send(Transport.java:80)
    at MSGR.main(MSGR.java:45)

    I have renamed the files, as suggested, in our sun directory as
    follows:
    :/app/oracle/product/9.0.1S/9ifs/settings/META-INF:>ls
    bak
    javamail.default.providers.bak
    javamail.address.map.bak
    javamail.providers.bak
    javamail.default.address.map.bak
    We still have mail.jar in our libraries, but need these. Can't
    think of what the problem could be? Did I miss something?
    Cheers,
    Susan

  • *when we use at user -command and give smaple code fro at user-command*

    Hi experts,
    i am new to abap can any body tell me when we use AT USER-COMMAND and give a sample code for that.
    point will be rewarded.
    thanks.

    Hi,
    AT USER-COMMAND  is a list Event.This Event is triggered when user make an action on the Application Toolber Or Menubar.
    Here is the Program.
    START-OF-SELECTION.
      SET PF-STATUS 'TEST'.
      WRITE:  'Basic list, SY-LSIND =', sy-lsind.
    AT LINE-SELECTION.
      WRITE:  'LINE-SELECTION, SY-LSIND =', sy-lsind.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'TEST'.
          WRITE:  'TEST, SY-LSIND =', sy-lsind.
      ENDCASE.
    This program uses a status TEST, defined in the Menu Painter.
    Function key F5 has the function code TEST and the text Test for demo.
    Function code TEST is entered in the List menu.
    The function codes PICK and TEST are assigned to pushbuttons.
    The user can trigger the AT USER-COMMAND event either by pressing F5 , or by choosing List -> Test for demo, or by choosing the pushbutton 'Test for demo'.The user can trigger the AT LINE-SELECTION event by selecting a line.
    Hopr This Will help You.
    Regards,
    Sujit

  • Trying to install software update, phone stopped responding and gives error code 9

    While trying to update software on my iPhone 4, it stopped during installation and gave error code 9, now it says the phone must be restored but will not complete the installation and still gives error code 9, very frustrating.  I tried on 3 different computers, same results.

    reset preferences -
    after effects:  http://helpx.adobe.com/after-effects/using/preferences.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    illustrator:  http://helpx.adobe.com/illustrator/using/setting-preferences.html
    indesign:  https://forums.adobe.com/thread/526990
    photoshop:  https://forums.adobe.com/thread/375776
    if that fails to solve the problem, restart in safe mode and test.  if ae works, you have a conflicting non-essential program.  you can use your activity monitor to find it.
    if restarting in safe mode fails, uninstall, clean (Do a clean install) and reinstall ae.

  • Linking to specific spry tabbed panel - code not working

    Hi,
    I have followed the tutorial at
    http://foundationphp.com/tutorials/spry_url_utils.php
    with regard to being able to link to a specific tab. For some
    reason though, my code doesn't work. I am usign Dreamweaver cs3,
    and as soon as I head back to the design view, or preview it in a
    browser for that matter, all I see is each tab one above the other,
    and the tabs no longer work.
    My code is as follows:
    <script src="../SpryAssets/SpryTabbedPanels.js"
    type="text/javascript"></script>
    <link href="../SpryAssets/SpryTabbedPanels.css"
    rel="stylesheet" type="text/css" />
    <style type="text/css">
    <script type="text/javascript"
    src="SpryAssets/SpryURLUtils.js"></script>
    <script type="text/javascript"> var params =
    Spry.Utils.getLocationParamsAsObject(); </script>
    is in the head, and the body for the tabbed panels is:
    <div id="mainContent">
    <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0">1st
    Team</li>
    <li class="TabbedPanelsTab" tabindex="0">2nd
    Team</li>
    <li class="TabbedPanelsTab" tabindex="0">3rd
    Team</li>
    <li class="TabbedPanelsTab" tabindex="0">4th
    Team</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent">
    <table width="100%" border="1" cellpadding="5"
    cellspacing="1px" bordercolor="#929925">
    <tr>
    <td width="54%"><!-- TemplateBeginEditable
    name="playername1" -->
    <div align="center" class="style3 style5">Player
    name</div>
    <!-- TemplateEndEditable -->
    <p align="center"><!-- TemplateBeginEditable
    name="playerpic1" --><img alt="" name="playerpic" width="180"
    height="245" border="1" id="playerpic" /><!--
    TemplateEndEditable --></p>
    <!-- TemplateBeginEditable name="playerinfo1" -->
    <p align="center" class="style3 style6 style4">Click a
    player name to view their profile. </p>
    <!-- TemplateEndEditable -->
    <p align="center"> </p></td>
    <td width="46%"><p align="center"><!--
    TemplateBeginEditable name="teamphoto1" --><img alt=""
    name="teamphoto" width="250" height="150" border="1" align="top"
    id="teamphoto" /><!-- TemplateEndEditable --></p>
    <p align="center" class="style3 style4
    style6"><u>Squad list</u></p>
    <p align="center" class="style5"> </p>
    <p></p></td>
    </tr>
    </table>
    <p> </p>
    <p> </p>
    </div>
    <div class="TabbedPanelsContent">
    <table width="100%" border="1" cellpadding="5"
    cellspacing="1px" bordercolor="#929925">
    <tr>
    <td width="54%">
    <div align="center" class="style3"><!--
    TemplateBeginEditable name="playername2" --><span
    class="style5">Player name</span><!--
    TemplateEndEditable --></div>
    <p align="center"><!-- TemplateBeginEditable
    name="playerpic2" --><img alt="" name="playerpic" width="180"
    height="245" border="1" id="playerpic2" /><!--
    TemplateEndEditable --></p>
    <!-- TemplateBeginEditable name="playerinfo2" -->
    <p align="center" class="style3 style4 style6">Click a
    player name to view their profile.</p>
    <!-- TemplateEndEditable --></td>
    <td width="46%"><p align="center"><!--
    TemplateBeginEditable name="teamphoto2" --><img alt=""
    name="teamphoto" width="250" height="150" border="1" align="top"
    id="teamphoto2" /><!-- TemplateEndEditable --></p>
    <p align="center" class="style3 style4
    style6"><u>Squad list</u></p>
    <p align="center"> </p>
    <p></p></td>
    </tr>
    </table>
    </div>
    <div class="TabbedPanelsContent">
    <table width="100%" border="1" cellpadding="5"
    cellspacing="1px" bordercolor="#929925">
    <tr>
    <td width="54%"><!-- TemplateBeginEditable
    name="playername3" -->
    <p align="center" class="style3 style6 style4">Player
    name</p>
    <!-- TemplateEndEditable -->
    <p align="center"><!-- TemplateBeginEditable
    name="playerpic3" --><img alt="" name="playerpic" width="180"
    height="245" border="1" id="playerpic3" /><!--
    TemplateEndEditable --></p>
    <!-- TemplateBeginEditable name="playerinfo3" -->
    <p align="center" class="style3 style6 style4">Click a
    player name to view their profile.</p>
    <!-- TemplateEndEditable -->
    <p align="center"> </p></td>
    <td width="46%"><p align="center"><!--
    TemplateBeginEditable name="teamphoto3" --><img alt=""
    name="teamphoto" width="250" height="150" border="1" align="top"
    id="teamphoto3" /><!-- TemplateEndEditable --></p>
    <p align="center" class="style3 style4
    style6"><u>Squad list</u></p>
    <p align="center"> </p>
    <p></p></td>
    </tr>
    </table>
    </div>
    <div class="TabbedPanelsContent">
    <table width="100%" border="1" cellpadding="5"
    cellspacing="1px" bordercolor="#929925">
    <tr>
    <td width="54%"><!-- TemplateBeginEditable
    name="playername4" -->
    <div align="center" class="style3 style4
    style6">Player name</div>
    <!-- TemplateEndEditable -->
    <p align="center"><!-- TemplateBeginEditable
    name="playerpic4" --><img alt="" name="playerpic" width="180"
    height="245" border="1" id="playerpic4" /><!--
    TemplateEndEditable --></p>
    <!-- TemplateBeginEditable name="playerinfo4" -->
    <p align="center" class="style3 style4 style6">Click a
    player name to view their profile.</p>
    <!-- TemplateEndEditable -->
    <p align="center"> </p></td>
    <td width="46%"><p align="center"><!--
    TemplateBeginEditable name="teamphoto4" --><img alt=""
    name="teamphoto" width="250" height="150" border="1" align="top"
    id="teamphoto4" /><!-- TemplateEndEditable --></p>
    <p align="center" class="style3 style4
    style6"><u>Squad list</u></p>
    <p align="center" class="style5"> </p>
    <p></p></td>
    </tr>
    </table>
    </div>
    </div>
    </div>
    <p> </p>
    </div>
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab:(params.tab ?
    params.tab : 0)});
    The link I would then use to link to tab 2 say, would be:
    ../"pagename".php?tab=2#TabbedPanels2
    Also, when I then go to click on the Spry tabbed panels
    region in design view, I get an error message saying:
    while executing inspectSelection in spry_tabbedpanels.htm, a
    javascript error occurred.
    I am pretty inexperienced with Spry and Java so I may have
    missed something simple.
    A solution would be much appreciated as this is driving me
    mad!
    Please let me know if you need me to post more code.
    Thanks in advance.
    p.s. I am using Dreamweaver CS3 and the SpryURLUtils.js
    script is from the Spry 1.6.1 prerelease framework.

    quote:
    Originally posted by:
    brownie_jedi
    Ok, so I've just changed the code to <script
    type="text/javascript"
    src="../SpryAssets/SpryURLUtils.js"></script>
    to mimic the code for <script
    src="../SpryAssets/SpryTabbedPanels.js"
    type="text/javascript"></script>
    since the spry files are all in the same folder. Is this what
    you meant?
    Having just installed firebug, I get the error params is not
    defined. So I guess that this all together means that the
    SpryURLUtils.js file is not being called correctly?
    p.s. Thanks for the speedy replies, much appreciated.
    Yes it means it cant find the file SpryURLUtils.js.
    in firebug theres a tab called scripts, if u click on it, u
    can see wich scripts are loaded. i suggest u check that out. Or
    post a online URL so we can see the problem for our selfs..

  • Loading multiple SWFs and storing them (code not working under Firefox 23 and Chrome)

    Hey guys,
    Anyone has any idea why this code suddenly don't work anymore? (It works under internet explorer but not firefox and chrome
    The code under is placed on my main swf to preload all my external swfs and store them for not having to wait too long to access them.
    Thx guys.
    I took the code from here btw: http://www.beautifycode.com/the-finer-art-of-loading-2-handling-multiple-swfs#snippet
    I'm running flash player 11.8.800.94... It used to work under Firefox and Chrome
    var _swfLoader:Loader;
    var _swfRequest:URLRequest;
    var _swfPathArr:Array = new Array("00.swf", "01.swf", "02.swf");
    var _swfClipsArr:Array = new Array();
    var _swfTempClip:MovieClip;
    var _loadedSWFs:int;
    startLoading(_swfPathArr);
    function startLoading(pathArr:Array):void {
    _swfLoader = new Loader();
    _swfRequest = new URLRequest();
    loadSWF(pathArr[1]);
    function loadSWF(path:String):void {
    setupListeners(_swfLoader.contentLoaderInfo);
    _swfRequest.url = path;
    _swfLoader.load(_swfRequest);
    function setupListeners(dispatcher:IEventDispatcher):void {
    dispatcher.addEventListener(Event.COMPLETE, onSwfComplete);
    function onSwfComplete(event:Event):void {
    event.target.removeEventListener(Event.COMPLETE, onSwfComplete);
    _swfTempClip = event.target.content;
    _swfTempClip.customID = _loadedSWFs;
    _swfClipsArr.push(_swfTempClip);
    if(_loadedSWFs <_swfPathArr.length - 1) {
    _loadedSWFs++;
    loadSWF(_swfPathArr[_loadedSWFs]);
    } else {

    Hi kglad,
    The problem was coming from my server.
    I recently played with some settings  from a "cache control tool" offered by my hosting but i thought i had it back at default. Turns out i must've missed something. Now i have the .html caching on and everything works good on all browser.
    I have another question tho...
    I'd like to know if there's a way to cache an html file without having to ask my hoster to cache all of my htmls...
    I'm using this code now but maybe there's a way to add something that will cache this page specifically?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>title</title>
    <script language="javascript">AC_FL_RunContent = 0;</script>
    <script src="fluid_site.js" language="javascript"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <link href="style.css" rel="stylesheet" type="text/css" media="screen"/>
    </head>
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script>
        if (AC_FL_RunContent == 0) {
            alert("This page requires fluid_site.js.");
        } else {
            AC_FL_RunContent(
                'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
                'width', '100%',
                'height', '100%',
                'src', 'index',
                'quality', 'medium',
                'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
                'align', 'middle',
                'play', 'true',
                'loop', 'true',
                'scale', 'showall',
                'devicefont', 'false',
                'wmode', 'window',
                'id', 'index',
                'name', 'index',
                'menu', 'false',
                'allowFullScreen', 'false',
                'allowScriptAccess','sameDomain',
                'movie', 'index',
                'salign', ''
                ); //end AC code
    </script>
    <body>
    <noscript>
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="100%" height="100%" id="index" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="MENU" value="false">
        <param name=wmode value=window>
        <param name="movie" value="index.swf" /><param name="quality" value="medium" /><embed src="index.swf" quality="medium" width="100%" height="100%" wmode="direct" name="fluid_site" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
        </object>
    </noscript>
    </body>
    </html>
    Thanks

  • Trying to do verizon a favor and give back equipment that is not mine

    I have spent the last hour on the phone being transferred 4 different times.
    I just moved into an apartment/condo. On our balcony was a verizon box (it has been sitting there since we have been coming to look at the place)
    Today i decided to throw it out. and lo and behold it is full of verizon equipment (boxes, router, etc.) Also as luck would have it two more boxes came shipped to my address. All three boxes are addressed to someone else (i imagine it was the person that lived here before)
    As i mentioned i called verizon in order to return the equipment and save the company a large chunk of money, I was told i can drop it off at the nearest usps or verizon store, but with my work hours that will be very difficult. 
    I also want to point out that the person that came to install our equipment a few days ago called me 15 minutes before his window was up and told me that he was 'running late' and that he will be taking his lunch before coming to install our equipment. So instead of the 11-1 window he came at 2 and completely ruined my fiance's day as she had made plans to go see her mother. 
    I don't mind doing helping out but i think it would be nice if Verizon did something for us for spending an hour on the phone trying to return their equipment instead of throwing it out or selling it. 

    there are pieces of verizon equipment that should be returned and there is equipment that doesn't get returned.
    so a router, or a modem or set top box (cable boxes) should be returned to local verizon stores or any UPS  they will package and send it.
    things that should not be returned, are cables, remote controls and battery back up units or ONT/Nids (interface devices)
    pictures found at links for things that should not be returned.
    those things you want to think of as electric meters or water meters, you wouldn't return a water meter, and you wouldn't return an optical network terminal or network interface device, regardless if you are using it or not.  you won't be in the apartment forever so it will go to the next customer that orders that service. 
    also with usps they will come pick it up, so you can pack it and take it to your work, and they will pick up 
    USPS.com® - Schedule a Pickup
    Images for fios ont
    Images for fios bbu

  • II have downloaded several Apps that state they work with iTouch but they will not install and give error message that I need updated software, while all my updates available are installed on both iTouch and my computer iTunesWhy will Mindtools app not

    My iPod Touch will not function with certain updated apps ie MindTools, YP.com, Mint, Ymessenger etc and I get the error message that I need to install updated software to load these apps to my iPod Touch; however, I have double checked and all the software updates have been loaded in obht the iPod touch and my computer. There are no updates availabe; yet the error message on App is a software update is required for App. "was not installed because it requires a newer version of iPod software."
    The iPod Touch is using 3.1.3 software and it tells me that is the current and updated software version.

    You are correct in that your 1G iPod Touch has all the latest software updates.  It can only be updated to version 3.1. 
    However that Apps you are trying to download and install likely require iOS version 4.0 or later, which is not compatible with your iPod Touch.  So either you'll need to buy a newer iPod Touch or find other Apps that are suitable replacements if possible. 
    Sorry.
    B-rock

  • IPhone 6 Trade-In Promotion Code That Works

    Okay, loads of posts about not getting the promotional amount and so on. I am in the same boat EXCEPT I haven't shipped my old iPhone back yet. I have been on the phone with Verizon three times trying to figure out how to get the trade-in page on their site to get the credit correctly stated so the shipping materials can be sent.
    I received this promo code from a Verizon Customer Service rep this morning who actually called me back. It was accepted by the vzw site and prints a receipt with the appraisal amount as well as the difference between that value and $200 so it totals up to what was advertised in the promotion. It is working as of today, November 5th, and I don't know for how much longer it will continue to do so.
    The website to use is: www.trade-in.vzw.com
    The promo code you enter that is currently working is: CAREIPHONE6200-Z3PG-8DV4
    IF you're planning on getting the trade-in promo amount of $200 they (Verizon-VZW) tells me I have until December 15th to send my old iPhone to them. Problem was NO promotional code. The old one didn't work after the promotion's end date. Of the posts I've read, most seem to be having trouble getting the full $200 pop for at least these common reasons/excuses from VZW (a contractor they have handling trade-ins). The list (likely not complete):
    1) Cracked screen
    2) Won't power on
    3) Case cracked
    4) Bad, missing or non-functional buttons
    5) Lock code still active (prevents access--yes, it does)
    6) Still connected to iCloud
    7)Find My iPhone still active
    Without documentation of the phone's condition the whole thing becomes a finger-pointing game. I've decided to do the following and recommend you do something similar if and before you send your old iPhone back:
    1) On the old phone, go to Settings/General
    2) In the right column of the General options at the very bottom is a Reset option
    3) Use this option and select Reset Phone And Erase All Data (wording may different but it's close enough)
    4) If you have an access code on the iPhone you'll have to enter it to do the process
    5) Two, "Are you sure?," style prompts must be pressed to verify you REALLY want to do this.
    6) After the second Are You Sure prompt is answered, the Apple shows up on the screen and following a complete reset and erase you're greeted with the Hello screen where you'd begin setup. At this point, the phone should no longer have an access code and should have been logged out of iCloud.
    7) Go through the setup screens and skip the ones that ask you to create a lock code, skip setting up an Apple ID and password, skip connecting to WiFi, DO SKIP turning on Find My iPhone. When you successfully reach what will now be an original Home screen, RUN THE RESET AND ERASE AGAIN. This verifies for you that there is no iCloud connection, and no access code.
    8) Take close up pics of the screen, the back, the sides, the buttons, the data/power port, everything. Even better, record a video and go from inspecting the iPhone's condition to and through a setup as described above to show there is no connection to iCloud or any access code. Then go begin the Reset and Erase process (still while recording video).
    9) Lots of users here write of the poor quality of packaging provided for shipping the trade-in, so if you still have the original box put the phone in that. Otherwise use some bubble wrap or another small sturdy box so the screen doesn't get broken or buttons stop working from poor handling by USPS or other shippers.
    Why pics and/or video? If you have to take the matter to arbitration or seek remedy from the BBB or other consumer resource there is nothing more convincing than good documentation.

        I can absolutely see the confusion regarding your trade in promotion, chimera09. But no worries! The iPhone trade in offer has a unique detail that will allow you to wait until you've received your iPhone 6. You can disregard the 30 days from submission that applies to the usual trade in program. The original portion you listed "return your old device to Verizon Wireless within 7 days after receiving your new iPhone 6 or iPhone 6 Plus, but no later than 12/01/14" is correct.
    JenniferH_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • I am trying to connect to my Wifi Network. It is a Galaxy Nexus. I am trying to connect to this Hotspot. I have an iMac that works fine with my network but for some reason with this computer I cannot connect.

    So far I have pulled the system configuration file, I have reset safari, I deleted all old passwords from the wifi network in Keychain I restarted both devices. I am at the end here and I cannot get it to work I have an iMac that works fine with my network but for some reason this computer will not connect. It is system wide specifically to my personal hotspot. I can connect fine to any other network (wifi) but just not mine. I have not changed any wifi settings. I have been trying to figure this out. I have a MacBook Pro Late 2006 model running Lion (10.7.5) So any ideas anyone? Please help!

    12. At a WiFi hotspot, you can't get connected.  The most frequent reason is the login screen for the WiFi hotspot is only able to be connected with a single type of browser.  If Safari doesn't work, try Firefox, Chrome, Omniweb, or Opera. 
    From my tip:
    https://discussions.apple.com/docs/DOC-6411

  • I have a code that work but it opens in a new tab. I would like it open in a new window. a href="#" onClick="window.open('Basic.html', 'newWnd','Left=5,Top=5,height=500,width=700,toolbar=0,status=0,scrollbars=0,resizable=0');" OpenNewWindow.html /a

    I am trying to have a smaller window to open. You can see from the script that this window has a size. Which for me makes sense when someone needs to fill up a form. I do not want repeat do not want a pop up window.

    Could you share a link to the page?
    Seeing it in context and in our browsers is much easier to debug.
    If not, make sure to run the validator here The W3C Markup Validation Service and clear out any problems. HTML errors, especially structural ones, will cause all kinds of display problems in various browsers/versions/platforms.

Maybe you are looking for

  • Is there a way to retrieve my projects and events?

    I have copied final cut projects and events to my Mac internal drive from an external drive on which they were located. I could not do this via FCPX because of a problem: FCPX being unable to open up unless [it says] some corrupt files are either res

  • NQSError: 15019, Hierarchy / Aggregates problem

    Hello, I have a problem with a hierarchy when I want to implement an aggregate fact and dimension table in the repository. I have a logical dimension table Time, a logical fact table and a hierarchy Time with the following levels: All,Years, YearWeek

  • Buy second hand iPhone ........... i have apple id of previous owner but no password ... now the phone is in icloud activation mode . any solution for this.

    i buy second hand iPhone from Olx ........... i have apple id of previous owner but no password ... now the phone is in icloud activation mode . any solution for this. totally wastage of money , if there is no solution . for security purpose this icl

  • Lenovo G505s: Overheatin​g?

    Hello. Is it normal for the temperature of the GPU to fluctuate around 60C when I'm not really doing anything on my laptop (Lenovo G505s)? So far it has turned itself off twice because of overheating (I think that's the reason, as each time it was re

  • I cant´t open finder!

    I was going trough some stuff and removed it and after that I can't open finder on my MacBook. I click but nothing happens, even not a failure/error message. And also Macintosh hd is gone from the screen, I can't open that or Itunes or trash with the