Need help with Verizon DSL & Windows XP

Hello All,
I am personally running Verizon FIOS without any problems. However, my father-in-law still has Verizon DSL, which he has been using without any problems for the last 4 years until now.
To make the long story short, it seems that the LAN card that came with his old Dell PC died. I pulled it (there is no LAN NIC on the motherboard), and installed a new LAN card, which supports 10/100 MBps and is RoHS complient. However, for some unknown still to us reason, he is getting the LAN "Limited Connection" error.
I have tried everything I could think of, and spent over 6 hours with 3 different Verizon DSL tech support folks. However, we cannot even get to 192.168.1.1 (which is the address of the Westell 6100). I have tried even slowing the LAN card to 10 Mbps / Half-Duplex (or Full). TCP/IPv4 is set to obtain IP / DNS automatically and etc...  It's also set to DHCP.
We know fo sure that his Verizon DSL connection does work. Why? Because when I plugged in the same Ethernet cable into a laptop that I brought with me, we had an instant Internet connection (running Windows 7).
So it must be something within Windows XP that is blocking access. I am trying to do everything to not having for him to buy a new computer at this time and save the current system.
I have deleted any and all Network cards drivers in the Control Panel / System / Devices. I have NOT messed with any registry tricks, but am now willing.
Any and all help with suggestions is greately appreciated.

Best guess is that you need a WindowsXP compatible driver for your new LAN card.   You definitely need a driver, so if you "deleted any and all Network cards drivers" it isn't going to work.  Go to the company website for the new LAN card and they should have a suitable driver.
There should not be any need to mess with the registry.

Similar Messages

  • Need Help with safari for Windows 8

    i am stuck with the need to have a pc due to a proprietary business software... I am a mac user and prefer to use safari... i just had to by a new pc and tried to download safari for windows 8.1 but cannot find it... any help out there?

    Apple hasn't supported Safari for Windows in quite a while (and even when they did, you wouldn't want it - total crap). IE 11 actually isn't bad, you can also try Chrome.

  • Need help with refreshing open window in new tab

    Hello all,
    First, all my other problems I've solved.  One last thing, being a newbie and trying things I've found on the net and them
    not working, I can use your help one last time.  My code has a Home page that peforms a Search (most of you have
    I am sure done this), and from that search submit a window opens in a new tab (browser tab) and has the results on
    it.
    That works fine.  What I'm having trouble with is being able to perform a new search and refreshing that open window
    with the new data.  Right now I am closing that window by clicking on the tab and then performing the search.
    While it works, it's not user friendly.
    So, I've tried the usual  mywindow=window.open("url.cfm"); and then trying to grab that handle to refresh, but to
    no avail.  Has anyone done this?
    Thanks!

    Here's an example of how you could do it.
    <script>
    function submitAndFocusTarget(form) {
      var win = window.open("", form.target);
      form.submit();
      win.focus();
    </script>
    <form action="index.cfm" target="mysearchwin" method="get" onsubmit="submitAndFocusTarget(this); return false;">
      <input type="text" name="search" value="" />
      <input type="submit" value="search" />
    </form>

  • Need help with a popup window problem

    I have this code within my certAppB.js page :
    function AppSubmit() {
         str1 = "Submitting this form will begin the approval process.";
         str2 = "You will not be able to come back to this form to edit it again.";
         str3 = "Do you want to continue submitting this form?";
         if((confirm(str1 + "\n" + str2 + "\n" + str3))){
              document.forms[0].status.value="Submitted";
              document.forms[0].submit();
    Which produces a popup windows that says:
    Submitting this form will begin the approval process
    You will not be able to come back to this form to edit it again
    Do you want to continue submitting this form?
    OK Cancel (these are 2 buttons)
    I want to change this to say:
    Submitting this form will begin the approval process. You will not be able to change this form once submitted. You also agree that the following statement is true and correct to the best of your knowledge and belief:
    "I, [User Name], hereby certify and state on behalf of [Company Name] that the energy use data contained on this form are accurately determined and stated in accordance with federal test procedures set forth in 10 CFR Part 430 or 431, or 42U.S.C.�6314, as applicable, including authorized waivers, as they currently exist on [Date]."
    Do you want to continue submitting this form?
    OK           Cancel
    So I have to pull the users [User Name], [Company Name], and the [Date].
    On the approverView.jsp login page ( which is the first login page users see after loggin) it shows
    the users full name, so I nabbed the code from that page:
    <body>
    <jsp:include page="logo.jsp" />
    <jsp:include page="unav-navigate.jsp" />
    <table width="100%" border="0" cellspacing="0" cellpadding="5" class="info">
    <tr>
    <td width="25%" valign="top">
    <logic:present name="UserContainer" property="userView" scope="session">
    <span class="welcome">Welcome
    <bean:write name="UserContainer" property="userView.firstName" scope="session"/>
    <bean:write name="UserContainer" property="userView.lastName" scope="session"/>
    !</span><br>
    </logic:present>
    <span class="sm">If you are not this person, please click <html:link styleClass="norm" href="/fake_name/logoff.do">here</html:link>.</span></td>
    <td width="2%"> </td>
    <td width="73%" valign="top"><jsp:include page="instruction.jsp" /></td>
    </tr>
    </table>
    and made this code out of it to pull the username,companyname:
    <logic:present name="UserContainer" property="userView" scope="session">
    <span class="User"> User
    <bean:write name="UserContainer" property="userView.firstName" scope="session"/>
    <bean:write name="UserContainer" property="userView.lastName" scope="session"/>
    !</span><br>
    </logic:present>
    <logic:present name="UserContainer" property="userView" scope="session">
    <span class="Company">Company
         <bean:write name="UserContainer" property="userView.companyName" scope="session"/>
    !</span><br>
    </logic:present>
    This is the userView.java page that is referanced :
    * Created on Mar 28, 2003
    * To change this generated comment go to
    * Window>Preferences>Java>Code Generation>Code Template
    package org.fake.name.view;
    import java.io.Serializable;
    import java.util.List;
    import org.gama.cafs.businessobjects.TorqueDb;
    * @author chris
    public class UserView implements Serializable {
         private int userId;
         private int memberId;
         private int companyId;
         private String role;
         private String firstName;
         private String lastName;
         private String companyTitle;
         private String emailAddress;
         private String phoneNumber;
         private String companyName;
         private String address1;
         private String address2;
         private String address3;
         private String city;
         private String state;
         private String province;
         private String postalCode;
         private String countryName;
         private List productTypes = null;
         private List productTypeAcronyms = null;
         private List productTypeIds = null;
         private List tradeNameIds = null;
         private List tradeNames = null;
         private TorqueDb torqueDb = null;
         public UserView() { }
         * @return String
         public String getAddress1() {
              return address1;
         * @return String
         public String getAddress2() {
              return address2;
         * @return String
         public String getAddress3() {
              return address3;
         * @return String
         public String getCity() {
              return city;
         * @return String
         public String getCompanyName() {
              return companyName;
         * @return String
         public String getCompanyTitle() {
              return companyTitle;
         * @return String
         public String getCountryName() {
              return countryName;
         * @return String
         public String getEmailAddress() {
              return emailAddress;
         * @return String
         public String getFirstName() {
              return firstName;
         * @return String
         public String getLastName() {
              return lastName;
         * @return int
         public int getMemberId() {
              return memberId;
         * @return String
         public String getPhoneNumber() {
              return phoneNumber;
         * @return String
         public String getPostalCode() {
              return postalCode;
         * @return Set
         public List getProductTypes() {
              return productTypes;
         * @return String
         public String getProvince() {
              return province;
         * @return String
         public String getRole() {
              return role;
         * @return String
         public String getState() {
              return state;
         * @return int
         public int getUserId() {
              return userId;
         * Sets the address1.
         * @param address1 The address1 to set
         public void setAddress1(String address1) {
              this.address1 = trimString(address1);
         * Sets the address2.
         * @param address2 The address2 to set
         public void setAddress2(String address2) {
              this.address2 = trimString(address2);
         * Sets the address3.
         * @param address3 The address3 to set
         public void setAddress3(String address3) {
              this.address3 = trimString(address3);
         * Sets the city.
         * @param city The city to set
         public void setCity(String city) {
              this.city = trimString(city);
         * Sets the companyName.
         * @param companyName The companyName to set
         public void setCompanyName(String companyName) {
              this.companyName = trimString(companyName);
         * Sets the companyTitle.
         * @param companyTitle The companyTitle to set
         public void setCompanyTitle(String companyTitle) {
              this.companyTitle = trimString(companyTitle);
         * Sets the countryName.
         * @param countryName The countryName to set
         public void setCountryName(String countryName) {
              this.countryName = trimString(countryName);
         * Sets the emailAddress.
         * @param emailAddress The emailAddress to set
         public void setEmailAddress(String emailAddress) {
              this.emailAddress = trimString(emailAddress);
         * Sets the firstName.
         * @param firstName The firstName to set
         public void setFirstName(String firstName) {
              this.firstName = trimString(firstName);
         * Sets the lastName.
         * @param lastName The lastName to set
         public void setLastName(String lastName) {
              this.lastName = trimString(lastName);
         * Sets the memberId.
         * @param memberId The memberId to set
         public void setMemberId(int memberId) {
              this.memberId = memberId;
         * Sets the phoneNumber.
         * @param phoneNumber The phoneNumber to set
         public void setPhoneNumber(String phoneNumber) {
              this.phoneNumber = trimString(phoneNumber);
         * Sets the postalCode.
         * @param postalCode The postalCode to set
         public void setPostalCode(String postalCode) {
              this.postalCode = trimString(postalCode);
         * Sets the productTypes.
         * @param productTypes The productTypes to set
         public void setProductTypes(List productTypes) {
              this.productTypes = productTypes;
         * Sets the province.
         * @param province The province to set
         public void setProvince(String province) {
              this.province = trimString(province);
         * Sets the role.
         * @param role The role to set
         public void setRole(String role) {
              this.role = trimString(role);
         * Sets the state.
         * @param state The state to set
         public void setState(String state) {
              this.state = trimString(state);
         * Sets the userId.
         * @param userId The userId to set
         public void setUserId(int userId) {
              this.userId = userId;
         * @return List
         public List getProductTypeAcronyms() {
              return productTypeAcronyms;
         * Sets the productTypeIds.
         * @param productTypeIds The productTypeIds to set
         public void setProductTypeAcronyms(List productTypeAcronyms) {
              this.productTypeAcronyms = productTypeAcronyms;
         public List getProductTypeIds() {
              return productTypeIds;
         public void setProductTypeIds(List productTypeIds) {
              this.productTypeIds = productTypeIds;
         private String trimString(String str) {
              String tmp = null;
              if (str != null)
                   tmp = str.trim();
              else
                   tmp = str;
              return tmp;
         public List getTradeNameIds() {
              return tradeNameIds;
         public List getTradeNames() {
              return tradeNames;
         public void setTradeNameIds(List list) {
              tradeNameIds = list;
         public void setTradeNames(List list) {
              tradeNames = list;
         public TorqueDb getTorqueDb() {
              return torqueDb;
         public void setTorqueDb(TorqueDb db) {
              torqueDb = db;
         public int getCompanyId() {
              return companyId;
         public void setCompanyId(int i) {
              companyId = i;
    Question:
    How do I insert the code I assembled:
    <logic:present name="UserContainer" property="userView" scope="session">
    <span class="User"> User
    <bean:write name="UserContainer" property="userView.firstName" scope="session"/>
    <bean:write name="UserContainer" property="userView.lastName" scope="session"/>
    !</span><br>
    </logic:present>
    <logic:present name="UserContainer" property="userView" scope="session">
    <span class="Company">Company
         <bean:write name="UserContainer" property="userView.companyName" scope="session"/>
    !</span><br>
    </logic:present>
    INTO the function:
    function AppSubmit() {
         str1 = "Submitting this form will begin the approval process.";
         str2 = "You will not be able to come back to this form to edit it again.";
         str3 = "Do you want to continue submitting this form?";
         if((confirm(str1 + "\n" + str2 + "\n" + str3))){
              document.forms[0].status.value="Submitted";
              document.forms[0].submit();
    So that the popup window will show the [username], [CompanyName], [Date]. I can�t find any doc�s on how to insert logic into a function with str�s.
    Any help would be very much appreciated. Thanks in advance.
    Applications used by me: Sun solaris 8 server, Tomcat 4.1.24, pulling from postgresql 7.3, and I edit in Eclipse 2.11.

    These two tags:
    <logic:present name="UserContainer" property="userView" scope="session">
    </logic:present>
    surround things you only want to happen if there is a userView object present.
    This tag:
    <bean:write name="UserContainer" property="userView.firstName" scope="session"/>
    is replaced with the value of userView.getFirstName().
    So:
    <logic:present name="UserContainer" property="userView" scope="session">
    <span class="User"> User
    <bean:write name="UserContainer" property="userView.firstName" scope="session"/>
    <bean:write name="UserContainer" property="userView.lastName" scope="session"/>
    !</span><br>
    </logic:present>
    becomes:
    User Jim Steinberger !
    if the userView object is present and firstName == Jim and lastName == Steinberger.
    To insert those values into your JavaScript function:
    <logic:present name="UserContainer" property="userView" scope="session">
    function AppSubmit() {
    str1 = "Submitting this form will begin the approval process.";
    str2 = "You will not be able to come back to this form to edit it again.";
    str3 = "You also agree that the following statement is true and correct to the best of your knowledge and belief:";
    str4 = "";
    str5 = "I, <bean:write name="UserContainer" property="userView.firstName" scope="session"/>
    <bean:write name="UserContainer" property="userView.lastName" scope="session"/>, hereby certify and state on behalf of <bean:write name="UserContainer" property="userView.companyName" scope="session"/> that the energy use data contained on this form are accurately determined and stated in accordance with federal test procedures set forth in 10 CFR Part 430 or 431, or 42U.S.C.?6314, as applicable, including authorized waivers, as they currently exist on " + new Date().getDate() + "/" + new Date().getMonth() + "/" + new Date().getFullYear() + ".";
    str6 = "Do you want to continue submitting this form?";
    if((confirm( str1 + "\n" + str2 + "\n" + str3 + "\n\n\n" + str4 + "\n" + str5 + "\n" + str6 ))){
    document.forms[0].status.value="Submitted";
    document.forms[0].submit();
    </logic:present>
    Should become:
    function AppSubmit() {
    str1 = "Submitting this form will begin the approval process.";
    str2 = "You will not be able to come back to this form to edit it again.";
    str3 = "You also agree that the following statement is true and correct to the best of your knowledge and belief:";
    str4 = "I, Jim Steinberger, hereby certify and state on behalf of Dynamic Edge, Inc. that the energy use data contained on this form are accurately determined and stated in accordance with federal test procedures set forth in 10 CFR Part 430 or 431, or 42U.S.C.?6314, as applicable, including authorized waivers, as they currently exist on " + new Date().getDate() + "/" + new Date().getMonth() + "/" + new Date().getFullYear() + ".";
    str6 = "Do you want to continue submitting this form?";
    if((confirm( str1 + "\n" + str2 + "\n" + str3 + "\n\n" + str4 + "\n" + str5 + "\n\n" + str6 ))){
    document.forms[0].status.value="Submitted";
    document.forms[0].submit();
    after being processed by Tomcat and Struts. (Note: the function will not appear if userView is missing)
    By the way, you might be missing the closing bracket to function AppSubmit() { which might throw a JavaScript error. Just FYI :)
    Good luck!
    Jim Steinberger
    [email protected]

  • Need help with pop up window!

    I'm working on an online graphic design portfolio and one of the pages features online animated Flash banners.  The site can be viewed here...
    http://truetilldeathhq.com/Skiz/main8_v7.html
    I created a pop up window that displays a swf of the banner by putting this code on the View Banner link of each example of work...
    on (release) {
    var jscommand:String = "window.open('http://www.truetilldeathhq.com/Skiz/banners/336x280DuvalCX9.html','win','height= 296,width=352,left=112,top=330,toolbar=no,resizable=no,location=no,scrollbars=no ');";getURL("javascript:" + jscommand + " void(0);");
    Two problems though.  First is in Firefox the location bar with the url to the swf is visible, even though I set location=no as a variable in the code (it works ok in Safari).  The window is also resizable in Firefox and Safari even though the variable is set to resizable=no.  How can I fix this?
    Second problem, even though I painstakingly set the left and top variables by trial and error to get the pop up window to open exactly in the center of the "stage" area of the site, when I post it and view it in a browser, the window pops up lower.  When I'm in the fla of the site and I preview it in a browser, it's fine, but for some reason when I post the files online and then open it from http://truetilldeathhq.com/Skiz/main8_v7.html, the pop ups come in lower.  Any fixes or advice on this?
    Thanks for your help!

    Forgive me for my ignorance, but I'm new to Flash and any kind of scripting and I didn't quite follow that page you directed me to.  Right now I'm working up a Flash template and the action on the link for the banner pages looks like this:
    on(rollOver) {
    this.gotoAndPlay("s1");
    on(rollOut, releaseOutside) {
    this.gotoAndPlay("s2");
    on (release) {
    _root.popup_pressed=1;
    _root.scrHEIGHT=240
    _root.scroller.scroller.gotoAndStop(2);
    _root.TM_title = "Work 1 read more";
    _root.READ = 1;
    _root.scroller.gotoAndPlay("s1");
    How can I work up the on (release) so I'll get a simple pop up window, say 728x90, no scrollbars or resizing, that will open somewhere in the middle of the site?  If I wanted a title to the pop up window, how would I do that?
    Again, thanks so much for your time and excuse my newbieness.

  • Need help with jre-1_5_0_04 windows i586 use windows 98 first edition HELP

    HI,
    this is my first post here so please bear with me while I try to explain the problems I seem to be having here . I hope that someone here can assist me with these issues as well???
    I am using the windows98 first edition, and I wanted to use the latest version of java which I think is this 1_5_0_04 version, but when I get it download it said it is recommended that I not use this version,
    but I work with Yahoo sitebuilder for my online websites and need this verision to get sitebuilder to work?
    Now I read somewhere just dont remember where forgive me, but it said in that artical that there is a workaround or something to that nature to make this version of Java to work with the windows 98 version I am using?
    I do seem to have other versions of java on this PC as well but dont no how to remove them all and where to look to remove the older versions of java if need be to get this latest version of java to work right for me?
    I did the test and it said I have the latest version of the java but like I said it now wont seem to work with this yahoo site builder and it was working before but just mega and I do mean mega sloww???
    can someone please further assist me with this and please, I will need detail step by step as to how to get this java to work with my PC and be workable with the Yahoo sitebuilder as well???
    thanks in advance and I eagerly await some useful steps to try out here .
    I think also that I might need to go in and change paths or classes or something of that nature as well to try to get it to work. the java??
    Now the download took I wanted to mention apart from the install part that said this might not be compatiable with the version of windows that I am useing but I am hopeing again that there is a work around to this issue??
    thanks
    LIBBY

    There is no work around, that Windows version is no longer compatible.
    You can find older versions of Java here:
    http://java.sun.com/products/archive/index.html
    You may want to find the latest version that is compatible with your Windows, and install that.
    I strongly recommend that you uninstall all existing Java versions first. Do that using Windows' Add/Remove Program function.

  • I need help with itunes for windows 7.

    wondering if any one can help? i am running windows 7 and i recently had trouble with itunes it used to open and work, when i recieved my new iphone itunes decided not to open any more i tried un-install and re-install and it didnt work i reset my laptop back to its factory settings and re-installed itunes it worked for that day then went wrong again. i have tried doing apple software update and it comes up with error and some numbers followed by cc. if i try and re-install itunes it says invalid right to use bonjour.
    any help? thanks

    I have absolutely no idea who Ari is
    It appears you do not know how to use this forum
    To reply back to Ari, you should have done that on the same thread so that he can see it
    Yes, you can call Apple if you are willing to pay for it
    Allan

  • Almost finished with site, really need help with pop up window!!!!!

    I've got one last thing to finish up on this site I've been working on.  I've posted what I've worked up so far at:
    http://truetilldeathhq.com/main8_v7/main8_v7.html
    I still have to finish linking the actual banner swfs on the Online Banners page, which will display animated banner ads for the portfolio.  Ideally, when the user clicked the View Banner link, I wanted to have the banners display in a similar pop up window like the other examples of the work (with same title area, close button, etc., click the Detailed View button on Merchandise page for example).  That was problematic due to different frame rates of the banner swfs, getting the pop up window to contain just the stage area of the swf and not the working area, getting the window to pop up in the middle and not get cut off at the right side, etc.  Like I said, ideally I'd like to do this, so if anyone has a relatively quick fix, I'm all ears.
    I figured my best route now is to somehow have Flash trigger an html pop up window when the link is clicked and have it display in the middle of the page at the exact dimensions of the banner.  Anybody know the best way to do this?  I'm at my wits end and I really have to have this finished for Monday so any help is more than appreciated, thank big time in advance!

    Forgive me for my ignorance, but I'm new to Flash and any kind of scripting and I didn't quite follow that page you directed me to.  Right now I'm working up a Flash template and the action on the link for the banner pages looks like this:
    on(rollOver) {
    this.gotoAndPlay("s1");
    on(rollOut, releaseOutside) {
    this.gotoAndPlay("s2");
    on (release) {
    _root.popup_pressed=1;
    _root.scrHEIGHT=240
    _root.scroller.scroller.gotoAndStop(2);
    _root.TM_title = "Work 1 read more";
    _root.READ = 1;
    _root.scroller.gotoAndPlay("s1");
    How can I work up the on (release) so I'll get a simple pop up window, say 728x90, no scrollbars or resizing, that will open somewhere in the middle of the site?  If I wanted a title to the pop up window, how would I do that?
    Again, thanks so much for your time and excuse my newbieness.

  • Need help with pop up windows!

    I'm working on a page that's very long and it has your basic
    "click on a small thumbnail of an image and a larger version opens
    up in a pop up window". I downloaded a free extension from the
    Macromedia exchange called Open Picture Window Fever, but it has a
    couple of problems. First, there's no option to center the pop up
    window, only dimensions you can manually put in. Plus when you
    click on the picture, the new window opens but the original page
    with the thumbnails automatically goes to the top when the pop up
    opens (this is a problem because the page is very long and the user
    would have to scroll back down each time they clicked on an image,
    a big pain). The only other option I have is to use the Dreamweaver
    Open Browser Image Behavior. The problems with that is that you
    have to make a html page for each image, which is a drag. Also, I
    can get the pop up window to center with a different extension I
    downloaded, but I still have the same problem with the original
    page jumps to the top.
    What can I do to fix this? Anybody have other ideas or free
    extensions I haven't tried yet?

    > Plus when
    > you click on the picture, the new window opens but the
    original page with
    > the
    > thumbnails automatically goes to the top when the pop up
    opens
    Go to PVII and look for a free extension called Fix Null
    Links....
    http://www.projectseven.com/
    That'll take care of that one.
    > The only other option I
    > have is to use the Dreamweaver Open Browser Image
    Behavior.
    Go to E. Michael Brandt's site, and examine JustSo Picture
    Window. It's
    commercial but it's way nicer than PWF, in my opinion....
    http://www.valleywebdesigns.com
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "xslamx" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm working on a page that's very long and it has your
    basic "click on a
    > small
    > thumbnail of an image and a larger version opens up in a
    pop up window".
    > I
    > downloaded a free extension from the Macromedia exchange
    called Open
    > Picture
    > Window Fever, but it has a couple of problems. First,
    there's no option
    > to
    > center the pop up window, only dimensions you can
    manually put in. Plus
    > when
    > you click on the picture, the new window opens but the
    original page with
    > the
    > thumbnails automatically goes to the top when the pop up
    opens (this is a
    > problem because the page is very long and the user would
    have to scroll
    > back
    > down each time they clicked on an image, a big pain).
    The only other
    > option I
    > have is to use the Dreamweaver Open Browser Image
    Behavior. The problems
    > with
    > that is that you have to make a html page for each
    image, which is a drag.
    > Also, I can get the pop up window to center with a
    different extension I
    > downloaded, but I still have the same problem with the
    original page jumps
    > to
    > the top.
    >
    > What can I do to fix this? Anybody have other ideas or
    free extensions I
    > haven't tried yet?
    >

  • Need Help with iTunes and Windows 7

    Hi,
    I recently purchased a new Dell laptop and tried to install iTunes for my iPod and iPhone. The first time I tried it out it ran smooth as anything, but if I'm connected to the net things start to go downhill. At my flat in University (no internet connect) it ran fine, but the second I went to the University computer room with my laptop, iTunes wouldn't open.
    I have uninstalled and re-installed several times now, but obviously dont want to have to do this again and again...
    Can anyone please help?
    Thank you in advance
    Dan

    but the second I went to the University computer room with my laptop, iTunes wouldn't open.
    What security software are you running on the PC, Dan? (Firewall, antivirus, antispyware?)

  • TS1424 need help with error (0x80092013) windows,  very frustrated...please help.

    Very frustrated music lover but cant even sign in to my account without various errors occurring. ...the most recent onevhappened today...it seems Apple cant help me so please if anyone out there can I would be very greatful.

    I am getting similar error... I check stuff you guys mention earlier... and I am still getting and error..
    NewOrder class just have bunch of method get and set..
    public class NewOrder
    String customer_name;
    int customer_number;
    int quantity_order;
    int unit_price;
    *Get Methods.
    public String getcustomer_name()
    return customer_name;
    public int getcustomer_number()
    return customer_number;
    public int getquantity_order()
    return quantity_order;
    public int getunit_price()
    return unit_price;
    * Set methods.
    public String setcustomer_name(String name)
    customer_name=name;
    return customer_name;
    public void setcustomer_number(int num)
    customer_number=num;
    public void setquantity_order(int quantity)
    quantity_order=quantity;
    public void setunit_price(int price)
    unit_price=price;
    public class NewHandlingShipping extends NewOrder
    int quantityorder=10;
    int id=001;
    String myName="ABC Company";
    int cost=10;
    int ship=4;
    public class handling
    NewHandlingShipping cust_name = new NewHandlingShipping();
    NewHandlingShipping cus_id = new NewHandlingShipping();
    NewHandlingShipping quantity = new NewHandlingShipping();
    NewHandlingShipping item_price = new NewHandlingShipping();
    cust_name.setcustomer_name(myName);
    cust_id.setcustomer_number(id);
    item_price.setunit_price(ship);
    quantity.setquantity_order(quantityorder);
    ship=4+cost;
    System.out.println("Your Order is $ " + ship);
    Getting and error on the bold stuff..
    error output...
    NewHandlingShipping.java:22: <identifier> expected
    System.out.println("Your Order is $ " + ship);
    - Please Help..

  • Help setting up wireless network with Verizon DSL

    I bought a MacBook Pro and an Air Port Extreme yesterday. I have an iMAC G5 from October 2004. I have Verizon DSL service and a Westell Series 6100 modem.
    Bottom line --> I can't get the wireless connection to work.
    I have successfully used a wired dsl connection with my iMAC G5. But, I tried to just disconnect the ethernet cable from my computer and put it into the Airport Extreme and that didn't work. I used the utility to set up the base station and the network, but I'm not sure if I did it properly.
    I know a PPPoE is involved but I'm not sure of how to configure the system properly. I'm also not sure if the problem is with the configuration of the AirPort extreme or with my Verizon modem.
    All I know is that I want to see a green light on that thing and not a flashing orange one.
    Does any one have some instructions for setting up your AirPort Extreme using Verizon DSL? Has anyone else had similar problems? Thanks in advance!
    MacBook Pro & iMAC G%   Mac OS X (10.4.9)  

    Just finished solving this problem. I am not a strong tech guy, but I know that since it works for others it is just a question of poking and pushing. Anyway it was nine hours in the making...
    My snow airport working with an airport express had been bullet proof with verizon dsl for a couple of years. I wanted to upgrade since I am now Intel mac and hit the blinking amber light.
    I am only going to be able to give the big picture... The AEBS found and worked with all my computers from the beginning, so the problem became that the default IP Address and Subnet Mask were wrong and never automatically adjusted by the assistants.
    Take your working plug-in ethernet connections or the working snow connections from the Airport Utility Internet Connect page. I used the manual configure process to access the info screens.
    I copied all the numbers down, but I believe you only have to insert the IP Address, Subnet Mask, Router Address and DNS servers. I put "dsl.verizon.net" in the domain search box.
    Go up to the IPv4 pull down menu and select manual and put in the numbers you copied. Then click Update. When the software returns control, the AEBS will still be orange.
    Toggle the IPv4 to "using DHCP" Click Update.
    This should bring the green light.
    I think I then updated the Network Preference Pane, probably had to manually put in my wireless password again. Browser and mail program worked.
    I think that was all. I may have had to repeat the toggle to make it stick, but I am operational for the last several hours, including the airport express, a G4 laptop and a Sony PC.
    Hope this helps.
    Rpbert

  • On Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    on Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    The ID Program folder will be relevant to your OS...
    I took a shot and right clicked on my Scripts Samples, choose reveal in Explorer and opened up the ID Program folder.
    As shown, there is a Fonts folder.
    Drag/Copy/Paste fonts to this folder.

  • Purchased extreme to replace modem/router DSL used telephone cord need help with set up

    Prior to purchasing Airport Extreme had a standard modem/ wireless router from ATT for DSL. I have two macbooks both dropped connections while online with older modem.
    Airport Extreme purchased to correct connection issues I need help with set up. The older modem just used telephone cord. I tried to use telephone with extreme it did not work.
    How do I get extreme to work as the modem and router ?

    How do I get extreme to work as the modem and router ?
    you can't. the extreme is only a router. you need a separate modem (or disable the wireless part of your old router and use it as a modem - if that's possible).

  • I need help with my new ipod on windows me

    I bought myself an ipod in the states (usa) i was told it was universal & can be used in the uk! i have windows ME & was also told this would be compatible with this computer but once i tried to download my software of the cd & put in my details of the ipod it came up with the following error message:ERROR 1904.MODULEC:\PROGRAM FILES\IPOD\IPOD UPDATER 2005-02-07\IPOD UPDATER EXT.Dll FAIIED TO REGISTER .HRESULT-2147220473 CONTACT YOUR SUPPORT PERSONELL.
    can any one help????
    aslo i was told once downloaded onto my p.c i then cant use my ipod on another p.c this does not make any sense say if you upgrade your p.c does this mean you then cant use your ipod anymore ??? please help me ???

    Hello Andrew,
    Was the reply I gave you in the other post you made of no help?
    I explained that Windows ME is not compatible, but you can get it work with a little messing around, and once again, here's a link on how to do it.
    Guide to iPod and Windows ME.
    As I said previously though, you won't be able to use iTunes.
    See my other answer to you here.
    Jeff Bryan, "Need help with my iPod." #4, 06:13am Aug 8, 2005 CDT

Maybe you are looking for

  • How to share external hard drive connected to mac with pc

    I have and external hard drive connected to my mac-mini OSX 10.4.11 My iTunes music folder is in it. I want to share my music with my kids in my house so they can hear it in their windows xp computer with windows media player 11 I have the computers

  • Error message when changing Mail preferences

    Whenever I change anything in the Preferences of Mail 2.0.8 even just opening the preferences and then closing them, I get an error message that says "Error Saving Preferences" " Writing your preferences to disk has failed. Your preferences may not h

  • Previous GB songs are greyed out

    all my hundreds of GB songs projects are now greyed out... no reason, nothing new done... just one day pooof... thanks GB... and BTW really hate that they changed the master tracks mix modules. Just when I get to using the previous master track modul

  • Two different audio settings

    I have finally managed to import tapes that were filmed on two different cameras. One had it's audio set at 16bit and the other at 12bit. Is it possible to convert the captured 12bit footage to 16bit, or can I use them both in a project without effec

  • How do I remove an "orphaned" window from a closed application?

    Hi, Every now and then, I end up with an "orphaned" window on my desktop, left over from a closed application. Currently, I have a login window from the Screen Sharing application that's been spinning the spoked progress wheel next to "Connecting..."