Trying to access an object's field but it has private access ! !

Dear People,
I am trying to access the highestBid, a data member of the Bid class
in an Auction program.
If I try to set the highestBid:
bicycle.setHighestBid(steveBicycleBid);
The error message says:
"TryAuction.java": Error #: 306 : method setHighestBid(stan_bluej_ch4p90.Bid) has private access in class stan_bluej_ch4p90.Lot at line 58, column 15
IF I try to get the highest bid by saying:
System.out.println("The highest bid for this item is " + bicycle.getHighestBid() );
I get an object hex address as seen below instead of an integer value:
The highest bid for this item is stan_bluej_ch4p90.Bid@f4a24a
^^^
Below are the classes
Thank you in advance
stan
package stan_bluej_ch4p90;
//Purpose of project: To demonstrate collections of objects
//Version: 2001.05.31
//How to start this project:
// Create an Auction object.
// Enter a few lots via its enterLot method. Only String
// descriptions of the lots are required.
// Create one or more Person objects to represent bidders.
// Show the lots and select one to bid for.
// Get the required Lot onto the object bench.
// Enter a bid for the lot, passing the Person who is
// bidding to the bidFor method.
public class TryAuction
public static void main(String[] args)
//create the auction
Auction cityAuction = new Auction();
//create the lots for sale
Lot bicycle = new Lot(1,"bicycle");
Lot lamp = new Lot(2, "lamp");
Lot trailer = new Lot(3, "trailer");
//enter the lots into the city Auction
cityAuction.enterLot("A bicycle in so so condition");
cityAuction.enterLot("A brand new lamp");
cityAuction.enterLot("A trailer built in 2001");
//show the lots
System.out.println();
System.out.println("The first lot for sale: " + bicycle.getDescription());
System.out.println("The second lot for sale: " + lamp.getDescription());
System.out.println("The third lot for sale: " + trailer.getDescription());
//create the people who will bid for the lots
Person Steve = new Person("Steve");
Person Maria = new Person("Maria");
//create the people's bids
Bid mariaLampBid = new Bid(Maria, 460);
Bid steveLampBid = new Bid(Steve, 510);
//create the people's bids
Bid mariaBicycleBid = new Bid(Maria, 1460);
Bid steveBicycleBid = new Bid(Steve, 1510);
//create the people's bids
Bid steveTrailerBid = new Bid(Steve, 700510);
Bid mariaTrailerBid = new Bid(Maria, 900460);
//give the bids
bicycle.bidFor(Maria,1460);
bicycle.bidFor(Steve, 1510);
//bicycle.setHighestBid(steveBicycleBid);
System.out.println("The highest bid for this item is " + bicycle.getHighestBid() );
lamp.bidFor(Maria,460);
lamp.bidFor(Steve,510);
trailer.bidFor(Steve, 700510);
trailer.bidFor(Maria,900460);
System.out.println(" \nMaria's bicycle bid is : " + mariaBicycleBid.getValue() );
System.out.println("Steve's lamp bid is : " + steveBicycleBid.getValue() );
System.out.println(" \nMaria's lamp bid is : " + mariaLampBid.getValue() );
System.out.println("Steve's lamp bid is : " + steveLampBid.getValue() );
System.out.println("\nSteve's trailer bid is : " + steveTrailerBid.getValue() );
System.out.println(" Maria's trailer bid is : " + mariaTrailerBid.getValue() );
System.out.println();
cityAuction.showLots();
//cityAuction.close();
//The output I get is:
//The first lot for sale: bicycle
//The second lot for sale: lamp
//The third lot for sale: trailer
//The highest bid for this item is stan_bluej_ch4p90.Bid@f4a24a
//Maria's bicycle bid is : 1460
//Steve's lamp bid is : 1510
//Maria's lamp bid is : 460
//Steve's lamp bid is : 510
//Steve's trailer bid is : 700510
// Maria's trailer bid is : 900460
//1: A bicycle in so so condition
// (No bid)
//2: A brand new lamp
// (No bid)
//3: A trailer built in 2001
// (No bid)
package stan_bluej_ch4p90;
import java.util.*;
//Ex4.14
* A simple model of an auction.
* The auction maintains a list of lots of arbitrary length.
* @author David J. Barnes and Michael Kolling.
* @version 2001.06.08
public class Auction
// The list of Lots in this auction.
private ArrayList lots;
// The number that will be given to the next lot entered
// into this auction.
private int nextLotNumber;
* Create a new auction.
public Auction()
     lots = new ArrayList();
     nextLotNumber = 1;
* Enter a new lot into the auction.
* Lots can only by entered into the auction by an
* Auction object.
* @param description A description of the lot.
public void enterLot(String description)
     lots.add(new Lot(nextLotNumber, description));
     nextLotNumber++;
* Show the full list of lot numbers and lot descriptions in
* this auction. Include any details of the highest bids.
public void showLots()
     Iterator it = lots.iterator();
     while(it.hasNext()) {
     Lot lot = (Lot) it.next();
     System.out.println(lot.getNumber() + ": " +
               lot.getDescription());
     // Include any details of a highest bid.
     Bid highestBid = lot.getHighestBid();
     if(highestBid != null) {
          System.out.println(" Bid: " +
                    highestBid.getValue());
     else {
          System.out.println(" (No bid)");
* Return the lot with the given number. Return null
* if a lot with this number does not exist.
* @param number The number of the lot to return.
public Lot getLot(int number)
     if((number >= 1) && (number < nextLotNumber)) {
     // The number seems to be reasonable.
     Lot selectedLot = (Lot) lots.get(number-1);
     // Include a confidence check to be sure we have the
     // right lot.
     if(selectedLot.getNumber() != number) {
          System.out.println("Internal error: " +
                    "Wrong lot returned. " +
                    "Number: " + number);
     return selectedLot;
     else {
     System.out.println("Lot number: " + number + " does not exist.");
     return null;
// public void close()
// Iterator i = lots.iterator();
// while(i.hasNext())
//     System.out.println("The winning amount for the " + bicycle.getDescription()
//     + " is " + bicycle.getHighestBid());
//     System.out.println("The winning amount for the " + lamp.getDescription()
//     + " is " + lamp.getHighestBid());
//     System.out.println("The winning amount for the " + trailer.getDescription()
//     + " is " + trailer.getHighestBid());
package stan_bluej_ch4p90;
* A class to model an item (or set of items) in an
* auction: a lot.
* @author David J. Barnes and Michael Kolling.
* @version 2001.06.08
public class Lot
// A unique identifying number.
private final int number;
// A description of the lot.
private String description;
// The current highest bid for this lot.
private Bid highestBid;
* Construct a Lot, setting its number and description.
* @param number The lot number.
* @param description A description of this lot.
public Lot(int number, String description)
     this.number = number;
     this.description = description;
* Attempt to bid for this lot. A successful bid
* must have a value higher than any existing bid.
* @param bidder Who is bidding.
* @param value The value of the bid.
public void bidFor(Person bidder, long value)
     // We trust that lot is genuine. There is nothing to
     // prevent a spurious lot from being bid for, but it
     // would not appear in the auction list.
     if((highestBid == null) ||
     (highestBid.getValue() < value)) {
     // This bid is the best so far.
     setHighestBid(new Bid(bidder, value));
     else {
     System.out.println("\nLot number: " + getNumber() +
               " (" + getDescription() + ")" +
               " has a bid of: " +
               highestBid.getValue());
* @return The lot's number.
public int getNumber()
     return number;
* @return The lot's description.
public String getDescription()
     return description;
* @return The highest bid for this lot. This could be null if
* there are no current bids.
public Bid getHighestBid()
     return highestBid;
* @param highestBid The new highest bid.
private void setHighestBid(Bid highestBid)
     this.highestBid = highestBid;
package stan_bluej_ch4p90;
* A class that models an auction bid. The bid contains a reference
* to the Lot bid for and the user making the bid.
* @author David J. Barnes and Michael Kolling.
* @version 2001.05.31
public class Bid
// The user making the bid.
private final Person bidder;
// The value of the bid. This could be a large number so
// the long type has been used.
private final long value;
* Create a bid.
* @param bidder Who is bidding for the lot.
* @param value The value of the bid.
public Bid(Person bidder, long value)
     this.bidder = bidder;
     this.value = value;
* @return The bidder.
public Person getBidder()
     return bidder;
* @return The value of the bid.
public long getValue()
     return value;
package stan_bluej_ch4p90;
* Maintain details of someone who participates in an auction.
* @author David J. Barnes and Michael Kolling.
* @version 2001.05.31
public class Person
// The name of this user.
private final String name;
* Create a new user with the given name.
* @param name The user's name.
public Person(String name)
     this.name = name;
* @return The user's name.
public String getName()
     return name;
if I try to say
LotObjectName.getHighestBid, I get a

Dear EsoralTrebor,
Thank you very much for an enlightening explanation.
I had never tried to chain methods together before but it works !
anObject.methodOfTheObjectClassThatReturnsAnObjectOfAnotherClass.
methodOfTheObjectClassThatWasReturned();
my output correctly states:
The highest bid for the bicycle is 1510
The highest bid for the lamp is 510
The highest bid for the trailer is 900460
Thank you !
Stan
ps tomorrow I need to study the showLots() method in the Auction class
to figure out why that method is saying "No Bid" to everything
Have a Good Thanksgiving !

Similar Messages

  • Today, randomly my iPhone 5 stopped working. It has been on this black screen with the apple logo and some small white writing at the top of the screen for many hours. I've tried rebooting it and connecting to iTunes but nothing has worked.PLEASEHELP

    It has been on this black screen with the apple logo and some small white writing at the top of the screen for many hours. I've tried rebooting it and connecting to iTunes but nothing has worked.
    PLEASE HELP!!!!!!!!

    It likely means there was still water inside it and something has now shorted out and permanently damaged one or more components.  THE very worst thing you can do with wet electronics is energize them - even a small drop of water inside on any of the circuitry or electrical contacts can cause catastrophic damage.
    Take it to Apple for a free evaluation, but most likely you will need to replace it.  For the out of warranty fee ($269.00 USD) you will get a refurbished replacement (like new, with a factory new screen and battery).  An out of warranty replacement will also re-instate your remaining warranty, or 90 days warranty, whichever is longer.

  • HOW TO SET  VARIABLE WHEN METHOD HAS PRIVATE ACCESS ? ?

    Dear People,
    When I try to use an if then else statement the if part is not executed
    only the else
    if(highestBid != null)
    System.out.println( Bid is: + highestBid.getValue());
    else
    System.out.println(" (no bid) )";
    which can only mean that "highestBid is not being set
    but since "Class Lot" has a private method
    private void setHighestBid(Bid highestBid)
    this.highestBid = highestBid;
    the error message says:
    "TryAuction.java": Error method setHighestBid()
    has private access in class
    so how do I get a value to "highestBid" so the "if" statement
    will have a vaule for "highestBid ?
    the showLots() method in the Class "Auction" doesn't print out the bids !
    below are the classes
    thank you in advance
    Stan
    package stan_bluej_ch4p90;
    //Purpose of project: To demonstrate collections of objects
    //Version: 2001.05.31
    //How to start this project:
    // Create an Auction object.
    // Enter a few lots via its enterLot method. Only String
    // descriptions of the lots are required.
    // Create one or more Person objects to represent bidders.
    // Show the lots and select one to bid for.
    // Get the required Lot onto the object bench.
    // Enter a bid for the lot, passing the Person who is
    // bidding to the bidFor method.
    public class TryAuction
    public static void main(String[] args)
    //create the auction
    Auction cityAuction = new Auction();
    //create the lots for sale
    Lot bicycle = new Lot(1,"bicycle");
    Lot lamp = new Lot(2, "lamp");
    Lot trailer = new Lot(3, "trailer");
    //enter the lots into the city Auction
    cityAuction.enterLot("A bicycle in so so condition");
    cityAuction.enterLot("A brand new lamp");
    cityAuction.enterLot("A trailer built in 2001");
    //show the lots
    System.out.println();
    System.out.println("The first lot for sale: " + bicycle.getDescription());
    System.out.println("The second lot for sale: " + lamp.getDescription());
    System.out.println("The third lot for sale: " + trailer.getDescription());
    //create the people who will bid for the lots
    Person Steve = new Person("Steve");
    Person Maria = new Person("Maria");
    //create the people's bids
    Bid mariaLampBid = new Bid(Maria, 460);
    lamp.setHighestBid(mariaLampBid);
    Bid steveLampBid = new Bid(Steve, 510);
    //create the people's bids
    Bid mariaBicycleBid = new Bid(Maria, 1460);
    //bicycle.setHighestBid(mariaBicycleBid);
    Bid steveBicycleBid = new Bid(Steve, 1510);
    //create the people's bids
    Bid steveTrailerBid = new Bid(Steve, 700510);
    //trailer.setHighestBid(steveTrailerBid);
    Bid mariaTrailerBid = new Bid(Maria, 900460);
    //give the bids
    bicycle.bidFor(Maria,1460);
    bicycle.bidFor(Steve, 1510);
    System.out.println("The highest bid for the bicycle is " + bicycle.getHighestBid().getValue() );
    lamp.bidFor(Maria,460);
    lamp.bidFor(Steve,510);
    System.out.println("The highest bid for the lamp is " + lamp.getHighestBid().getValue() );
    trailer.bidFor(Steve, 700510);
    trailer.bidFor(Maria,900460);
    System.out.println("The highest bid for the trailer is " + trailer.getHighestBid().getValue() );
    System.out.println(" \nMaria's bicycle bid is : " + mariaBicycleBid.getValue() );
    System.out.println("Steve's bicycle bid is : " + steveBicycleBid.getValue() );
    System.out.println(" \nMaria's lamp bid is : " + mariaLampBid.getValue() );
    System.out.println("Steve's lamp bid is : " + steveLampBid.getValue() );
    System.out.println("\nSteve's trailer bid is : " + steveTrailerBid.getValue() );
    System.out.println(" Maria's trailer bid is : " + mariaTrailerBid.getValue() );
    System.out.println();
    cityAuction.showLots();
    //cityAuction.close();
    //The output I get is:
    //The first lot for sale: bicycle
    //The second lot for sale: lamp
    //The third lot for sale: trailer
    //The highest bid for this item is stan_bluej_ch4p90.Bid@f4a24a
    //Maria's bicycle bid is : 1460
    //Steve's lamp bid is : 1510
    //Maria's lamp bid is : 460
    //Steve's lamp bid is : 510
    //Steve's trailer bid is : 700510
    // Maria's trailer bid is : 900460
    //1: A bicycle in so so condition
    // (No bid)
    //2: A brand new lamp
    // (No bid)
    //3: A trailer built in 2001
    // (No bid)
    package stan_bluej_ch4p90;
    import java.util.*;
    //Ex4.14
    * A simple model of an auction.
    * The auction maintains a list of lots of arbitrary length.
    * @author David J. Barnes and Michael Kolling.
    * @version 2001.06.08
    public class Auction
    // The list of Lots in this auction.
    private ArrayList lots;
    // The number that will be given to the next lot entered
    // into this auction.
    private int nextLotNumber;
    * Create a new auction.
    public Auction()
         lots = new ArrayList();
         nextLotNumber = 1;
    * Enter a new lot into the auction.
    * Lots can only by entered into the auction by an
    * Auction object.
    * @param description A description of the lot.
    public void enterLot(String description)
         lots.add(new Lot(nextLotNumber, description));
         nextLotNumber++;
    * Show the full list of lot numbers and lot descriptions in
    * this auction. Include any details of the highest bids.
    public void showLots()
         Iterator it = lots.iterator();
         while(it.hasNext()) {
         Lot lot = (Lot) it.next();
         System.out.println(lot.getNumber() + ": " +
                   lot.getDescription());
         // Include any details of a highest bid.
         Bid highestBid = lot.getHighestBid();
         if(highestBid != null) {
              System.out.println(" Highest Bid: " +
                        highestBid.getValue());
         else {
              System.out.println(" (No bid)");
    * Return the lot with the given number. Return null
    * if a lot with this number does not exist.
    * @param number The number of the lot to return.
    public Lot getLot(int number)
         if((number >= 1) && (number < nextLotNumber)) {
         // The number seems to be reasonable.
         Lot selectedLot = (Lot) lots.get(number-1);
         // Include a confidence check to be sure we have the
         // right lot.
         if(selectedLot.getNumber() != number) {
              System.out.println("Internal error: " +
                        "Wrong lot returned. " +
                        "Number: " + number);
         return selectedLot;
         else {
         System.out.println("Lot number: " + number + " does not exist.");
         return null;
    // public void close()
    // Iterator i = lots.iterator();
    // while(i.hasNext())
    //     System.out.println("The winning amount for the " + bicycle.getDescription()
    //     + " is " + bicycle.getHighestBid());
    //     System.out.println("The winning amount for the " + lamp.getDescription()
    //     + " is " + lamp.getHighestBid());
    //     System.out.println("The winning amount for the " + trailer.getDescription()
    //     + " is " + trailer.getHighestBid());
    package stan_bluej_ch4p90;
    * A class that models an auction bid. The bid contains a reference
    * to the Lot bid for and the user making the bid.
    * @author David J. Barnes and Michael Kolling.
    * @version 2001.05.31
    public class Bid
    // The user making the bid.
    private final Person bidder;
    // The value of the bid. This could be a large number so
    // the long type has been used.
    private final long value;
    * Create a bid.
    * @param bidder Who is bidding for the lot.
    * @param value The value of the bid.
    public Bid(Person bidder, long value)
         this.bidder = bidder;
         this.value = value;
    * @return The bidder.
    public Person getBidder()
         return bidder;
    * @return The value of the bid.
    public long getValue()
         return value;
    package stan_bluej_ch4p90;
    * A class to model an item (or set of items) in an
    * auction: a lot.
    * @author David J. Barnes and Michael Kolling.
    * @version 2001.06.08
    public class Lot
    // A unique identifying number.
    private final int number;
    // A description of the lot.
    private String description;
    // The current highest bid for this lot.
    private Bid highestBid;
    * Construct a Lot, setting its number and description.
    * @param number The lot number.
    * @param description A description of this lot.
    public Lot(int number, String description)
         this.number = number;
         this.description = description;
    * Attempt to bid for this lot. A successful bid
    * must have a value higher than any existing bid.
    * @param bidder Who is bidding.
    * @param value The value of the bid.
    public void bidFor(Person bidder, long value)
         // We trust that lot is genuine. There is nothing to
         // prevent a spurious lot from being bid for, but it
         // would not appear in the auction list.
         if((highestBid == null) ||
         (highestBid.getValue() < value)) {
         // This bid is the best so far.
         setHighestBid(new Bid(bidder, value));
         else {
         System.out.println("\nLot number: " + getNumber() +
                   " (" + getDescription() + ")" +
                   " has a bid of: " +
                   highestBid.getValue());
    * @return The lot's number.
    public int getNumber()
         return number;
    * @return The lot's description.
    public String getDescription()
         return description;
    * @return The highest bid for this lot. This could be null if
    * there are no current bids.
    public Bid getHighestBid()
         return highestBid;
    * @param highestBid The new highest bid.
    private void setHighestBid(Bid highestBid)
         this.highestBid = highestBid;
    package stan_bluej_ch4p90;
    * Maintain details of someone who participates in an auction.
    * @author David J. Barnes and Michael Kolling.
    * @version 2001.05.31
    public class Person
    // The name of this user.
    private final String name;
    * Create a new user with the given name.
    * @param name The user's name.
    public Person(String name)
         this.name = name;
    * @return The user's name.
    public String getName()
         return name;

    Are you ready to kick yourself? The problem lies in the class Auction. You are using showLots() to print the lots, which you are trying to show the lot number, the description and the highest bid. But no there is no where in the class where you set the highest bid. In enterLot() you pass the description of the lot and it creates a new lot with the lot number and the description, but you don't give a bid. Then after the bids are done you do not update Auction to reflect the bids. Let the kicking commence. :-)

  • Has private access in mudclient

    Alright, i've been getting on this error on every int I try to pull from the mudclient:
    .\Script.java:19: dgf has private access in mudclient
                    rs.dfm[0] = rs.dgf[idx].gmi;
                                  ^
    .\Script.java:20: djk has private access in mudclient
                    rs.djk[0] = rs.dgf[idx].gmf;
                      ^
    .\Script.java:20: dgf has private access in mudclient
                    rs.djk[0] = rs.dgf[idx].gmf;
                                  ^
    .\Script.java:21: emg(int) has private access in mudclient
                    rs.emg(0);
    etc.here is what I have in script.java
    public void AN(int idx) {
    public abstract class Script
        protected mudclient rs;
        public Script(mudclient rs)
            this.rs = rs;
        public void start(String command, String parameters[])
        public String[] getCommands()
            return new String[0];
         public void AN(int idx) {
                      rs.dga[0] = 715;
                     rs.dfl[0] = rs.dgf[idx].gmh;
                     rs.dfm[0] = rs.dgf[idx].gmi;
                     rs.djk[0] = rs.dgf[idx].gmf;
                rs.emg(0);
    }Not quite sure wich wich java version I have, but I've tryed to compile with an online compilier that uses 1.5.0, and i still got the same errors... any help is appreciated :)

    This means the arrays inside mudclient are private and cannot be access inside Script.
    rs can be accessed but not the variables inside it.
    You should not be trying to do this in any case. Try to write your code so that variables are only accessed by methods in the same class.

  • EntrySet has private access in java.util.Hashtable

    Hi friends,
    While i try to retrieve the data from the hashtable through a JSP page, i'm getting the error saying "E:\Tomcat 5.0\work\Catalina\localhost\dd\org\apache\jsp\disp_jsp.java:55: entrySet has private access in java.util.Hashtable
    Iterator i = h.entrySet.iterator();
    For your reference the code goes like this,
    <% Hashtable h = (Hashtable) session.getAttribute("hash");
    Iterator i = h.entrySet.iterator();
    while(i.hasNext())
    %>
    <tr><td>
    <% String st = i.next().toString();
    String k[] = st.split("=");     
    out.println(k[0]); %>
    </td><td><%
    out.println(k[1]); %></td></tr><% } %>
    can anyone tell me how to get rid of this error quickly please.. Thanks in advance...
    Regards,
    Prakash.

    Iterator i = h.entrySet.iterator();Iterator i = h.entrySet().iterator();

  • HT4113 hi im trying to access my old iphone 3s but it has being disabled as i have forgotten my passcode can you tell me what i need to do

    i am trying to access my iphone 3gs but i have lost the passcode and it has being disabled can you tell me how i can access it

    The following may help: http://support.apple.com/kb/ht1212

  • All browser run can access javascript objects in iframe but in firfox you can not do that after first refresh

    1- I have a DIV tag in html page
    2- Load dynamically an IFrame into that DIV
    3- suppose that I have a JS function in that IFrame with name "func".
    4- after first loading IFrame in DIV I can access "func"
    5- but after reloading another IFrame into DIV I can access "func" in all browser IE,Chrome,Opera but I can not do this in FireFox

    Hello,
    Thank you for using the Troubleshooter extension. It seems you use Kasperskey - first see if this post helps you fix the problem:
    * https://support.mozilla.org/en-US/questions/1026631#answer-650916
    You can also check the article [["This Connection is Untrusted" error message appears - What to do]] as it provides common troubleshooting steps.
    Let us know if that solves your problem!

  • I tried to set up a new account but it has a master password and do not recall setting one how do I change that it will not let me turn it off without knowing the password I do not recall ever setting on. How do I clear the Master Password?

    I was trying to set up my mobile phone with Android with the Firefox App and my Netbook which I use the Firefox on and sync them but it came up that I have a Master Password but I do not recall setting one up and I have record of all my passwords that I keep in a secure place and I had trouble with a hacker who had accessed several of my accounts and I am now concerned that they may have also access this and we did not catch this one as we did the other accounts and stopped them from getting access. But that is not my concern any longer as that has been remedied the problem is how do I get the password unlocked or changed since I have no idea what it is? I tried to turn it off but it will not allow me to do that either without knowing it. Please advise as to what can be done so I can use this App on my Droid. Thanks. Deborah

    I was trying to set up my mobile phone with Android with the Firefox App and my Netbook which I use the Firefox on and sync them but it came up that I have a Master Password but I do not recall setting one up and I have record of all my passwords that I keep in a secure place and I had trouble with a hacker who had accessed several of my accounts and I am now concerned that they may have also access this and we did not catch this one as we did the other accounts and stopped them from getting access. But that is not my concern any longer as that has been remedied the problem is how do I get the password unlocked or changed since I have no idea what it is? I tried to turn it off but it will not allow me to do that either without knowing it. Please advise as to what can be done so I can use this App on my Droid. Thanks. Deborah

  • I can access farmville on internet explorer but can no longer access it on firefox. why?

    I have always played Farmville on Mozilla Firefox. I have all the lastest download, Firefox, Adobe Flashplayer. etc. Now all of a sudden since last night, I can't get into it. I play it through Facebook on Mozilla.
    I can play on Internet Explorer but not Mozilla. Why??

    IE uses an ActiveX version of Flash. Most other browsers use a plug-in version of Flash. Firefox and most other browsers do not use ActiveX. See: [[ActiveX]]
    <u>'''Install/Update Adobe Flash Player for Firefox'''</u>: your ver. 10.0 r42; current ver. 10.0 r45
    See: '''[http://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash Updating Flash]'''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    -exit Firefox (File > Exit)
    -check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -double-click on the Adobe Flash installer you just downloaded to install/update Adobe Flash
    -when the Flash installation is complete, start Firefox, and test the Flash installation here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507&sliceId=1
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version of Flash. To install/update the IE ActiveX Adobe Flash Player, same instructions as above, except use IE to download the ActiveX Flash installer.

  • Can't Access Public Folders Within Outlook, But Can Through Web Access

    Hi all,
    I have an Exchange 2010 Server (V14.02.0387.000) with clients using Outlook 2007-2013. Until recently all users could access all public folders without issue. However, since moving the location of the public and private mailboxes on the server (to new drives
    with more space and defragging etc), a number of users are unable to access the public folders, getting error "Cannot expand the folder. the attempt to log on to Microsoft Exchange has failed". However, when they log in through Outlook Web Access,
    they can view the public folders without issue. 
    I've tried restarting all the Exchange services, as well as multiple reboots of the server. 
    Many thanks in advance.
    Bob

    I'm going to start with some general advice.  Don't bother running ESEUTIL anymore to reduce database sizes.  If you find you need to do that, simply create a new database, move all the mailboxes to it, and then delete the old database.
    If you created a new public folder database, did you change the mailbox databases to point to it using Set-MailboxDatabase -PublicFolderDatabase?
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Trying to obtain serial number for PS but Adobe has closed my application

    Can anyone please tell me how I can actually communicate with adobe, they have closed my application., giving the reason that they don't cross platform changes- but I haven't asked for, nor do I need a cross platform change. I just need a serial number.
    The live chat won't work. ( I have tried many times!) I have also posted 2 times on their facebook page with no response. is there anyway I might be able to talk or reach someone remotely helpful?! TiA

    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • My iTunes is refusing to work with any device I attach to my computer: iPod, iPad and iPhone. I've tried everything recommended to me by Apple, but nothing has worked, not even several uninstallments of iTunes. Help please!!

    All my computer says is that it reconises that there's a iPod there but that it can't use it for some reason.
    All of the solutions offered have not worked. I just want to be able to use my iTunes properly again.

    Hello, Beckara. 
    Thank you for visiting Apple Support Communities. 
    I would need some clarification on the issue you are experiencing to better assist you.  However, if your device is not recognized by iTunes, I would recommend the steps in the article below.  Start with the section labeled Verify that the Apple Mobile Device USB Driver is installed > For Windows Vista, Windows 7, and Windows 8 > Update the Apple Mobile Device Driver.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    If iTunes becomes unresponsive when connecting a device, try the troubleshooting steps in the article below. 
    iTunes: May become unresponsive when connecting iPhone, iPad, or iPod touch
    http://support.apple.com/kb/TS3219
    Cheers,
    Jason H.

  • I have updated to windows 8.1 from windows 8.  My ipod nano (6th gen) is no longer identified properly in itunes.  I have tried all steps in the troubleshooting guide but it has not resolved the issue.  What can I do?

    My ipod nano (6th gen) is no longer identied properly in itunes.  I have followed all steps in the troubleshooting guide (uninstall and reinstall itunes several times, Apple Mobile Device running ok, verified USB port runs) but the issue is still not resolved.  What can I do?

    Universal Serial Bus controllers
         Intel(R) ICH9 Family USB Universal Host Controller - 2934
         Intel(R) ICH9 Family USB Universal Host Controller - 2935
         Intel(R) ICH9 Family USB Universal Host Controller - 2936
         Intel(R) ICH9 Family USB Universal Host Controller - 2937
         Intel(R) ICH9 Family USB Universal Host Controller - 2938
         Intel(R) ICH9 Family USB Universal Host Controller - 2939
         Intel(R) ICH9 Family USB Universal Host Controller - 293A
         Intel(R) ICH9 Family USB Universal Host Controller - 293C
         USB Composite Device
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
    I'm not sure if it charged when I hooked it up to my roommate's computer, but it definately didn't register either. If I put it on the dock it plays so the port is fine, but that still doesn't help me sync it to my computer.

  • Hi, im a student and i get access to adobe for free. but its says the access is going to expire today.

    however when i go purchase the soft wear again. it say the product is in my cart but when i click on the cart its comes up with an error message saying either this page does not exist or a general error has occurred. WHY!

    Olivettip I would recommend removing your current installation of Creative Cloud and Creative Suite 6 and reinstalling.  It is likely the Adobe Application Manager and other components have been upgraded to support subscription only features and upgrades.  If you wish to utilize your perpetual license then a complete removal and reinstall will ensure you have the applicable components for that version.

  • I have updated my iPad 1 to iOS 5.1.1 and I am trying to email a document from pages but it has changed and I don't know how to email directly from pages anymore can someone please help ?

    I have updated my iPad 1 to iOS 5.1.1.  Now I cannot email from pages . Cannot anyone help me please ?

    Hi Lila,
    Bring up the document you want to email, and tap the wrench in the upper right-hand corner. Under that Tools icon you will see several options, select Share and Print.
    Select Email Document
    Then select the document format you wish to send the document in: Pages, PDF, or Word
    Tap on one, and the document will format into that selection, and then take you to a blank email page with the document attached and ready to go!
    Hope this helps!
    Cheers,
    GB

Maybe you are looking for