My e-mail how can I be.able to get it

l would like to get my e-mail using Firefox.
how do I go about it.

Hi goldteck,
Firefox is a web browser. It displays the content of existing sites. Things like email or page contents come from the content provider. Who is your email provider? All you have to do is go to the url of you email provider and enter your user credentials. If you are having issues doing this, you'll probably have better luck consulting their help documentation.
Hopefully this helps!

Similar Messages

  • How can i be able to get the same LIST?

    im a newbei in java, and still studying about it. i hope i can ask some help from you all.^^
    i really have a problem about my project, this program adds,searches and deletes the items inputted by the user. my problem is that, i cant make a connection between the objects added by the user to the searching class. i have different classes for adding, searching and deleting. the objects are first created in the adding class and the object must be present during the time when i start the searching class or even the delete class. i am using the LinkedList datastructure to search add and delete. and also i am using GUI for this project.
    what should i do to build the connection between the objects and the other classes?
    please help me. thank you for the time to reply to this post^^ i really appreciate it!

    thank you CeciNEstPasUnProgrammeur , here i changed it and ther is no error:
         public Object post(Object o){
              for(Node node=first.getNext();node!=last;node=node.getNext()){
                   if(o.equals(node.getData())){
                        Object aw = node.getData();
                        return aw;
              return null;
         }is the code valid?
    here is the code for my Aadd class (the class for the adding of the inputs in the List), its not the final because i think there's something wrong with my codes, but i don't know what. Eventhough i already got the point on the connection between the object from another class to the class that would search, the output isn't diplayed.
    I have a class Aresult(the class that displays the inputs of the user). even with the searching class no output from the adding of the inputs was produced. i wonder if it is the initialization of the objects, is it valid?
    Sorry if the code is too long, i hope you woudn't mind.
    here is a part of the code from the search class:
        public Sresult(String date) {
              setResizable(false);
            SresultLayout customLayout = new SresultLayout();
              dates = date;
              Aadd.aaddS.contains(dates);//<<<------- here is for the display
              if(Aadd.aaddS.contains(dates)==true){
                   Aadd.aaddS.post(dates);
                   String datess = Aadd.aaddS.post(dates).toString();
                   setDate(datess);//<<<-- up to here
            getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
            getContentPane().setLayout(customLayout);
            ifevent = new JLabel("here are the found event/s in the date.");
            ifevent.setFont(new Font("Copperplate Gothic Bold", Font.BOLD,16));
            getContentPane().add(ifevent);
            resultevent = new JTextArea();
            sp_resultevent = new JScrollPane(resultevent);
            getContentPane().add(sp_resultevent);
            resultevent.setText(getDate());//<<<<---- for the string to appear in the JTextArea, but it doesn'tThere is no error from these codes but there is something wrong. can you please check it? thank you! i would really appreciate your help^^.
    here is the code, but i cut the last part with the Layout class:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Aadd extends JFrame {
        JLabel instructdate;
        JTextField inputdate;
        JScrollPane sp_inputdate;
        JLabel instructe;
        JTextField inpute;
        JScrollPane sp_inpute;
        JLabel instructn;
        JTextField inputn;
        JScrollPane sp_inputn;
        JButton cancelb;
        JButton exitb;
        JButton doneb;
        JLabel instructetitle;
        JTextField inputetitle;
        JLabel bgad;
        String dates;
        String events;
        String notes;
        String titles;
        static List aaddS = new LinkedList();<<<--- the use of static for searching
        List aaddBig = new LinkedList();
        public Aadd() {
              setResizable(false);
            AaddLayout customLayout = new AaddLayout();
            getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
            getContentPane().setLayout(customLayout);
            instructdate = new JLabel("input the date at the space below.");
            instructdate.setFont(new Font("Copperplate Gothic Bold", Font.BOLD,16));
            getContentPane().add(instructdate);
            inputdate = new JTextField("");
            sp_inputdate = new JScrollPane(inputdate);
            inputdate.addActionListener(new TextHandler());
            getContentPane().add(sp_inputdate);
            instructe = new JLabel("input the event at the space below.");
            instructe.setFont(new Font("Copperplate Gothic Bold", Font.BOLD,16));
            getContentPane().add(instructe);
            inpute = new JTextField("");
            sp_inpute = new JScrollPane(inpute);
            inpute.addActionListener(new TextHandler());
            getContentPane().add(sp_inpute);
            instructn = new JLabel("input the note at the space below.");
            instructn.setFont(new Font("Copperplate Gothic Bold", Font.BOLD,16));
            getContentPane().add(instructn);
            inputn = new JTextField("");
            sp_inputn = new JScrollPane(inputn);
            inputn.addActionListener(new TextHandler());
            getContentPane().add(sp_inputn);
            Icon cbpic = new ImageIcon("bgs/button-cancel.jpg");
            cancelb = new JButton(cbpic);
            cancelb.setActionCommand("cancel");
            cancelb.addActionListener(new ButtonHandler());
            getContentPane().add(cancelb);
            Icon ebpic = new ImageIcon("bgs/button-exit.jpg");
            exitb = new JButton(ebpic);
            exitb.setActionCommand("exit");
            exitb.addActionListener(new ButtonHandler());
            getContentPane().add(exitb);
            Icon dbpic = new ImageIcon("bgs/button-done.jpg");
            doneb = new JButton(dbpic);
            doneb.setActionCommand("done");
            doneb.addActionListener(new ButtonHandler());
            getContentPane().add(doneb);
            instructetitle = new JLabel("input the title of the event.");
            instructetitle.setFont(new Font("Copperplate Gothic Bold", Font.BOLD,16));
            getContentPane().add(instructetitle);
            inputetitle = new JTextField("");
            inputetitle.addActionListener(new TextHandler());
            getContentPane().add(inputetitle);
              int q=1+(int)(Math.random()*2);
              switch(q){
                   case 1: Icon bgpic = new ImageIcon("bgs/bgf.jpg");
                               bgad = new JLabel(bgpic);
                           getContentPane().add(bgad);
                           break;
                   case 2: Icon bgpic2 = new ImageIcon("bgs/bgf2.jpg");
                               bgad = new JLabel(bgpic2);
                           getContentPane().add(bgad);
                           break;
            setSize(getPreferredSize());
    /*       addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
            pack();
            show();
      /*  public static void main(String args[]) {
            Aadd window = new Aadd();
            window.setTitle("Aadd");
            window.pack();
            window.show();
        class TextHandler implements ActionListener{   //<<<------- here to
              public void actionPerformed(ActionEvent e){
                   if(e.getSource()==inputdate){
                        String date = "";
                        date = e.getActionCommand();
                        setDate(date);
                        aaddS.add(date);
                   if(e.getSource()==inpute){
                        String event = "";
                        event = e.getActionCommand();
                        setEvent(event);
                        aaddS.add(event);
                   if(e.getSource()==inputn){
                        String note = "";
                        note = e.getActionCommand();
                        setNote(note);
                        aaddS.add(note);
                   if(e.getSource()==inputetitle){
                        String title = "";
                        title = e.getActionCommand();
                        setTitle(title);
                        aaddS.add(inputetitle); //<<<<<<--------- here is the forming of the objects.
        class ButtonHandler implements ActionListener{
              public void actionPerformed(ActionEvent e){
                   if(e.getActionCommand().equals("done")){
                        hide();
                        Aresult ar = new Aresult(getDate(),getEvent(),getNote(),getTitle());
                        aaddBig.add(aaddS);
                   //     out.writeObject(aaddBig);
                   //     out.writeObject(aaddBig);
                        //put the IO here to save
                   else if(e.getActionCommand().equals("cancel")){
                        hide();
                        Main ma = new Main();
                   else if(e.getActionCommand().equals("exit")){
                        Option op = new Option();
         public void setDate(String d){
              dates = d;
         public void setEvent(String e){
              events = e;
         public void setNote(String n){
              notes = n;
         public void setTitle(String et){
              titles = et;
         public String getDate(){
              return dates;
         public String getEvent(){
              return events;
         public String getNote(){
              return notes;
         public String getTitle(){
              return titles;
    }THANK YOU!^^

  • I recently upgraded to maverick and i lost 2 apps i want back they are network utility and mail how can i get them back or where can i find them to download

    i recently upgraded to maverick and i lost 2 apps i want back they are network utility and mail how can i get them back or where can i find them to download

    Hi megamike1969,
    I've been losing some apps also in the Dock. As Niel said I think is that you may be able to just drag them back to the Dock, if you can find them.
    What I do is open Launchpad and while you're in there, drag the application to the Dock. If you can't locate the apps, then disregard this post.
    gl,
    kel

  • I BOUGH A EBOOK WITH A INCORRECT MAIL, HOW CAN I TRANFER THIS EBOOK TO MY CORRECT ADOBE ACCOUNT?

    I BOUGH A EBOOK WITH A INCORRECT MAIL, HOW CAN I TRANFER THIS EBOOK TO MY CORRECT ADOBE ACCOUNT?

    Hi there
    No need to get testy. Lilybiri was being spot on with the comparison.
    The only solution for you will be to uninstall the Flash player, then locate an older version of the Flash player and install it on the Windows XP you have. Captivate is now at version 8 and several years have passed since version 1.1. You will likely not make 1.1 work with Windows 7 or Windows 8. In fact, the only way I'm aware to remotely make it work on those operating systems is by first ensuring you have the Professional or Ultimate version, then installing the Windows XP mode Virtual Machine.
    Here is a link for uninstalling the Flash Player
    And here is a link for the older versions
    Sorry, but you are on your own to sort exactly how far back you will need to go to find a version of Flash Player that works with this version of Captivate. And keep in mind, that even though you finally get a Flash Player version that allows it to run, you will only be able to run it on some form of Windows XP. It will not run on Windows 7 or 8 unless you install the VM. And when you do that, you will be stuck inside the VM and will not be able to record anything outside it in the 7 or 8 environment.
    Cheers... Rick

  • I'm going to another country for a year and I would like to unlock my phone to take another sim other than my carrier. My contract with my present carrier is finished yet they still wouldnt unlock the iphone 4 for me. How can I be able to unlock it?t

    I'm going to another country for a year and I would like to unlock my phone to take another sim other than my carrier. My contract with my present carrier is finished yet they still wouldnt unlock the iphone 4 for me. How can I be able to unlock it?t

    Only the carrier to whom the device is locked can unlock it.
    If you do not meet their requirements or they do not offer unlocking there is no official way to unlock the device.
    Who is your carrier?

  • How can I be able to add url link in the standard text

    Hi expert,
    I want to add a url link in the standard text.Please guide me how can i be able to do that.

    Hi experts,
    I findout that there is no option in the standard text to add a url link and i findout the solution also we can create text module sepreatly ,here we can add a url link and then add in the smartfrom.In this way the user only can edit the text contents of the samrtfrom without seeing ht settings.
    Thanks everyone for help.

  • HT4061 My iPhone 4 has been recently stolen :( and I am wondering how can I be able to blocked my iPhone 4 so the one steal it cannot use my phone pls let me know what to do thanks.

    My iPhone 4 has been recently stolen :( and I am wondering how can I be able to blocked my iPhone 4 so the one steal it cannot use my phone pls let me know what to do thanks.

    Apple does not get involved with lost or stolen items.  A carrier may offer IMEI blocking (non in the USA currently do, but elsewhere some do).  Your carrier would already know your IMEI number anyway, so just contact them and ask them about it.
    It is VERY good that you had a passcode lock on the device.  That means your personal information will be safe.  And yes, after 10 failed attempts (each with increasing time out between allowing another attempt) the device will permanently lock them out until they restore the device in iTunes.  Anyone can go ahead and restore your iPhone as new in iTunes, but that also wipes everything off it and restores it to new condition - which does mean they can go off and use it as theirs, but at least all your data is gone.
    Did you file a police report it was stolen?  Also your carrier should be told (and ask them about IMEI blocking).  Sorry it is gone, but you did the best thing possible to protect yourself and your information when you set up that passcode lock.

  • My iPad mini was disable due to wrong password how can It be able again??

    My iPad mini was disable due to wrong password how can It be able again??

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. If you did not do step 4 properly, start all over again.

  • In Mail, How can I continue editing an email saved as a draft?

    In Mail, seems that once I save an email I've been working on to the Drafts folder, when I reopen it, I cannot continue editing it.
    In Mail, How can I continue editing an email saved as a draft to the drafts folder?
    Steve

    Came here to find the solution but eventually found one myself. You just simply double click on the e-mail you want to edit on the left pane, and it'll open a composing window.

  • Hello i would like to stop using outlook (office 2011) and use instead "mail": how can i transfer the database?

    hello i would like to stop using outlook (office 2011) and use instead "mail": how can i transfer the database?

    Hello Sylviefrombuenosaires, here is a link from macworld that can solve your question. Try reading this.
    http://www.macworld.com/article/158112/2011/02/export_outlook_ical.html
    Carlos

  • When sending e-mails, how can I show only the name and not include the e-mail address?

    When sending e-mails, how can I show only the name of the recipient and not include their full e-mail address?

    Hi beverlyfromnull,
    Have you added the recipients to your address book?

  • Apple Mail: How can I automatically set a signature, depending on the sender, NOT on the account?

    Apple Mail: How can I automatically set a signature, depending on the sender (have several for one account), NOT on the account?
    I have some comma-separated senders in my Apple Mail accounts, some for business, some for private (using the same account). When I'm sending a business mail, I would like to append my business signature, when I send a private one, either nothing, or a fun signature.
    Best,
    Berlin1892

    karenbee,
    Here's the solution for PCs: Tools>Options, then click Sync in the Options window. Good luck.

  • Iphone has been in recovery mode for 4 hours and hasn't come back to the home screen and how can i fix this and get it back to working order?

    iphone has been in recovery mode for 4 hours and hasn't come back to the home screen and how can i fix this and get it back to working order?
    the iphone 4S has been in recovery mode for a long time and i have tried to press and hold the power and home buttons until the apple symbols comes on the screen again but it stay on the screen until the screen turns off and doesn't come back on to the home screen and have tried to sync with mac and doesn't do anything it does display the itunes and cable icons for a while but then goes back to the apple symbol and doers nothing what can I do to fix this  and not loose what is on the phone at all?

    Hi, simonRM.  
    Thank you for visiting Apple Support Communities. 
    I understand that you are unable to restore your iPhone.  Here are the best troubleshooting resources to start with when not being able to update or restore your iPhone.
    If you can't update or restore your iPhone, iPad, or iPod touch
    Resolve iOS update and restore errors in iTunes
    -Jason H.  

  • How can i stop user to get the same screen while entering same T code

    hi experts,
    how can i stop user to get the same screen while entering same T code (_Means i want user enter same t code but got different different screen how it is possible.)_
    i want to know how can we set a authorization is such a manner ...
    Through different different login id user got different different screen while entering same T-code.
    for example if there is two functional login id mum & noida...
    then user login through that and
    enter any same functional tcode (for getting purchase order)
    but get different different window...so how come it is possible.....
    plz explain in brief
    thanks in advance...plz do reply as soon as possible

    For a custom transaction this is easy, you need to ask your developers to be able to direct users to different screens based on the results of an authorisation check.  You could have an auth field e.g. ZSCREEN which is checked in the program & decides what screen the user has access to.
    For standard transactions, unless already coded, I would forget it & do what is recommended by Subramaniam and create transaction variants as required.  Assign each variant to a custom t-code and users access it that way.
    What I am interested is is why do you want to do this?

  • Someone hacked my computer and set up a new administrative account by re-registering my computer. I can not access this account nor delete it. How can I fix this and get my computer back to the way it was?

    Someone hacked my computer and set up a new administrative account by re-registering my computer. I can not access this account nor delete it. How can I fix this and get my computer back to the way it was? And also prevent this from being able to happen again. I have the link the kid used (http://www.ihackintosh.com/2009/05/how-to-hack-the-user-password-in-mac-os-x-wit hout-an-os-x-cd/) Apparently he used hack 2. HELP PLEASE!

    Not sure why you can't delete that account. If you have admin privileges, you should be able to. Sounds like you only removed the Home Folder for that account.
    You should highlight/select the account you want to remove and then click the minus button. Might need to unlock the padlock with your admin password.
    Have a look at these articles from Apple, if necessary.
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8235.html
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8162.html
    http://support.apple.com/kb/DL1399

Maybe you are looking for

  • Normal text options not autotext

    I update the software on my pearl so that I could send and receive mms msgs figured out how to turn off the auto text before but now it wont turn off I am so used to typing the old way how do turn this feature off it takes me to long to text. Alltel

  • FaceTime on macbook pro takes long time to start up and sometimes crashes

    My FaceTime on my macbook pro is taking a long time to start up. It just bounces for in the dock for a long time until it finally opens. its really annoying since t takes a while to open and then sometimes it shuts down unexpectedly in the middle of

  • Why can I receive emails but not send them?

    I have an iPhone 4, and I recently updated to iOS 7. Since the. I have not been able to send any emails. I am able to receive them, but not send them. I keep getting an error message saying that something is wrong with my password or username. I have

  • Where can i find the JAR files related to JSF

    Hey folks Where can i find the JSF API JAR, so that i can include in my WEB-INF\lib dir plz help me

  • REST Webservice from Workbench

    Hello, I have a simple requirement, I need to invoke a REST webservice from a workbench process, and store the output in a variable (content is XML data to render in a form). I tried using the Invoke WebService component, but it is only allowing SOAP