How can i make to not be saved everything that i spell?

How can i remove some spelling on websites and make it to not be saved anymore?
I hope the question was understand.

If I understand your problem, do you want to remove some words that you added to your personal dictionary of the spell checker? If that is the problem, see [[using the spell checker]], the "Removing a word you have accidentally added" section gives details of a file that you need to edit to remove the words.

Similar Messages

  • How can i make my scrollpane in a way that at the opening of a frame it doe

    How can i make my scrollpane in a way that at the opening of a frame it does not scroll down automatically?
    code is below
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.net.*;
    import javax.swing.JOptionPane.*;
    import java.io.*;
    import javax.swing.colorchooser.*;
    import javax.swing.filechooser.*;
    import javax.accessibility.*;
    import javax.swing.border.*;
    import java.sql.*;
    public class Signup extends JFrame
         JLabel p1,p2,p3,p4,p5,p6,uid,upass,cpass,fname,sname,hint,sl,ed,age,adr,cit,zip;
         JTextField uname,fnamet,snamet,hintt,adrt,adrt1,city,zipcode;
         JPasswordField upassw,cpassw;     
         JComboBox sex,education,agegr;
         Signup()
         Container c=getContentPane();
         c.setLayout(null);
         c.setBackground(Color.white);
         /** JPanel c = new JPanel();
         c.setBackground(Color.white);
         int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
         int h = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
         JScrollPane jsp = new JScrollPane(c, v, h); ***/
    p1=new JLabel("Create Your Icafe!ID",10);
         p2=new JLabel("Personal Information");
         p3=new JLabel("User Address");
         p4=new JLabel("Tell Us About Your Hobbiess (Optional) ");
         p5=new JLabel("Tell us something about what you like. This will help us choose the kind of content to display on           your pages.");
         p6=new JLabel("--------------------------------------------------------------------------------");
    uid=new JLabel("User Id");
         upass=new JLabel("Password");
         cpass=new JLabel("Confirmation Password");
         fname=new JLabel("UserName");
         sname=new JLabel("SurName");
         hint=new JLabel("Hint Question");
    sl=new JLabel("Sex");
         ed=new JLabel("Education");     
         age=new JLabel("Age Group");     
         adr=new JLabel("Address");
    cit=new JLabel("City");
    zip=new JLabel("ZipCode");
         uname=new JTextField(10);
         uname.requestFocus();     
         uname.setToolTipText("UserName");
    upassw=new JPasswordField(10);
         upassw.setToolTipText("Password");
         upassw.setEchoChar('*');
         cpassw=new JPasswordField(10);
         cpassw.setToolTipText("Confirmation Password");
         cpassw.setEchoChar('*');
         fnamet=new JTextField(10);
         fnamet.setToolTipText("FullName");
         snamet=new JTextField(10);
         snamet.setToolTipText("SurName");
         hintt=new JTextField(10);
         hintt.setToolTipText("Hint Question");     
    String[] gender={"[Select one]","Male","Female"};
         sex = new JComboBox(gender);          
    String[] edu={"[Select one]","S.S.C","Inter","Graduate","Post Graduate"};
         education= new JComboBox(edu);     
    String[] ageg={"[Select one]","0 - 15","16 - 35","36 - 70","70 - 100"};
         agegr= new JComboBox(ageg);     
    adrt=new JTextField(15);
         adrt.setToolTipText("Address");
         adrt1=new JTextField(15);
         adrt1.setToolTipText("Address");
         city=new JTextField(15);
         city.setToolTipText("City");
    zipcode=new JTextField(15);
         zipcode.setToolTipText("ZipCode");
         p1.setBounds(200,70,160,30);
         uid.setBounds(350,100,160,30);
         uname.setBounds(400,100,160,30);
         upass.setBounds(335,140,160,30);
         upassw.setBounds(400,140,160,30);
         cpass.setBounds(260,180,160,30);
         cpassw.setBounds(400,180,160,30);
         p2.setBounds(200,220,160,30);
         fname.setBounds(330,260,160,30);
         fnamet.setBounds(400,260,160,30);
         sname.setBounds(335,300,160,30);
         snamet.setBounds(400,300,160,30);
    hint.setBounds(315,340,160,30);     
    hintt.setBounds(400,340,160,30);
         sl.setBounds(370,380,160,30);     
         sex.setBounds(400,380,160,30);
         ed.setBounds(335,420,160,30);     
         education.setBounds(400,420,160,30);
    age.setBounds(330,460,160,30);
    agegr.setBounds(400,460,160,30);
    p3.setBounds(200,500,160,30);
         adr.setBounds(340,540,160,30);
         adrt.setBounds(400,540,160,30);
         adrt1.setBounds(400,580,160,30);
         cit.setBounds(370,620,160,30);
         city.setBounds(400,620,160,30);
    zip.setBounds(590,620,160,30);
    zipcode.setBounds(640,620,160,30);
         Font font = new Font("SansSerif",Font.BOLD, 12);
         setFont(font);
         c.add(p1);
    c.add(uid);
         c.add(uname);     
         c.add(upass);
         c.add(upassw);
    c.add(cpass);
         c.add(cpassw);
    c.add(p2);
    c.add(fname);     
         c.add(fnamet);
    c.add(sname);
    c.add(snamet);
         c.add(hint);
    c.add(hintt);     
    c.add(sl);
    c.add(sex);
    c.add(ed);
         c.add(education);
    c.add(age);
         c.add(agegr);
    c.add(p3);
    c.add(adr);
         c.add(adrt);
         c.add(adrt1);
    c.add(cit);
    c.add(city);
    c.add(zip);
    c.add(zipcode);
         setResizable(false);
         //int a=DO_NOTHING_ON_CLOSE;
         //setDefaultCloseOperation(a);
         show();
         setSize(800,500);
    // Border raisedBorder = new BevelBorder(BevelBorder.RAISED);     
         setContentPane(c);     
    public static void main (String arg[])
         try{
         UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
         }catch(Exception s)
         Signup swu=new Signup();

    just try the following:
    jsp.getVerticalScrollbar().setValue(0);after inserting and adding all your components. this will set the vertical scrollbar up to the very first line.
    regards

  • How Can I Make Acrobat Not Resize Images?

    I am trying to turn around 80 images into the pages of a PDF file. The pictures are saved as JPEGs and have the exact dimensions I want them to have as pages of a PDF. When I turn them into a PDF in Acrobat Pro 9 they get resized so when viewed at 100% the text looks like crap. I want to know how I can make Acrobat not mess with the dimensions of my pictures when turning them into a PDF. I make the PDF by clicking the Create button and selecting Merge Files into a Single PDF... . I then drag and drop the pictures into the window and click Combine Files. I have tried all three of the File Size settings and all of them turn out wrong. How can I make this expensive program work the way I want it to by doing htis simple thing right?
    I have attached two files, the first of one of the images that will make a page viewed in windows picture and fax viewer at the original size. The second is a screen shot of the messed up PDF with blurry text, viewed at 100%. I want the text in the second picture to look just like the text in the first.

    I am not trying to justify Adobe's choice, just an explanation of what may have happened. When one asks for 100%, there is a question of by pixel, by inches (cm), or by size on the screen. These are interpretations and the fact that MS and Adobe interpret them differently is not surprising. However, I think that what you are seeing is a result of the pixel display issues on the screen and with proper sizing, they should appear the same (at least I think). In Acrobat, there is also a smoothing feature under the display preferences that may be an issue and is related to how it extrapolates for the pixels.

  • How can I make my email boxes smaller, so that all the stuff does not show after I have opemed it?

    The email that I am reading is very large with a lot of stuff that I do not need to see. How can I make my box smaller?

    ''hhennes [[#question-1047185|said]]''
    <blockquote>
    The email that I am reading is very large with a lot of stuff that I do not need to see. How can I make my box smaller?
    </blockquote>

  • How can I make my hotmail account delete emails that I delete on my phone?

    How can I make my hotmail account delete the messages that I delete on my Droid 3? I selected the "obey the other program" in my hotmail account, but nothing's being deleted.
    Thanks,
    Cesslie

    You're welcome.     Lots of good info. can be found in this forum; if you can't find what you're looking for in a search, just post another question.  Have fun with your Droid!

  • How can I make Photos not open every time a photo card is inserted?

    Hello,
    Every time I insert an SD or CF card or even my iPhone, Photos opens up. How can I stop this from happening? I looked everywhere and I can't find a solution, thanks.

    Go to Edit> Preferences. Under "Import Options" uncheck "Show import dialogue when memory card is inserted".

  • How can I make Safari not to display on all desktops?

    I go to mission control, then try to change desktop, and there it is: Safari on all desktops. How can I keep Safari in only one desktop?

    Try only having one Safari window open at a time. You use tabbed browsing.

  • How can I make fx not be limited to layer or object edges?

    HI,
    Im having problems applying effetcs to objets,  the effects that i place on them when applied get limited to the edgdes and look cut off, how can I get rid of this?  thank you

    Pre-compose to a larger comp or use the Grow Bounds effect.
    Mylenium

  • How can i make siri not sound robotic?, how can i make siri not sound robotic?

    i recently bought an iphone5 and my siri had a more human voice  before i backed up my icloud and got all my apps and pictures back and now she sounds monotone and robotic , how can i change my siri to have a more normal and enjoyable voice to listen to?

    Hello nanny1151,
    You may need to set Voice feedback to Always in Settings -> General -> Siri.
    iPhone User Guide - Siri settings
    http://help.apple.com/iphone/8/
    Cheers,
    Allen

  • How can I make a complaint for an App that I bought thru the Mac App Store?

    Hello everybody, I just bought an app few minutes ago and I'm not satisfied with it.  How can I claim to receive my money back? Regards.

    Apple's policy is that all sales are final.
    Mac App Store Support -
    http://www.apple.com/support/mac/app-store/

  • How can i make the size of my document that i created smaller so that i can email it easier

    The 5 page document I created and need to send is 1.7MB.  I need it to be 250KB to send using the format requested.  All the info needs to be sent.  How can i shrink the data by such a large amount to enable the document to send?  I am on Windows 7 and using AcrobatXI

    Depending on the content you may be asking for a lot. From within Acrobat the two options to do this are PDF Optimize or Reduce File Size. The location of these options vary among menus based on version. In some versions they are under the File>Save As options (AA XI). The PDF Optimize also has an audit that helps you determine the source of the bloat. If you used WORD to create the PDF, a first step in a smaller file size is to print to the Adobe PDF printer to avoid all the tagging and other markup. Of course, that is a compromise if you had wanted the bookmarks and all.

  • How can I tell iTunes not to import files that I want to sample listen too?

    Let's say that I want to listen to a sample of something online. I download the file. When I click on the file iTunes opens, the file imports into my library and then it plays. How can I open the file without it importing into iTunes? I know that you can scroll over the file to play it, but I want to scrub around. My iTunes library has a bunch of random audio files in there now. If iTunes can't play without importing, is there any software that does that?
    Using: iTunes 11.0.4

    Click one of the downloaded files to highlight it. Hit command-i to bring up the info pane. Scroll down to 'Open with' (click the disclosure triangle if necessary) and click the drop-down menu - select the QuickTime Player. Click 'change all...'. Now all files with that extension will open with the QT player when double-clicked. Of course you can still drag them into iTunes if you should want them there.

  • How can i make firefox not load images from certain websites permanantly

    I am unable to block images on certain websites permanently. However, I can block images temporarily for a session through Option > Content > Load images automatically but whenever i clean the browser history or close down firefox the customized list that i entered disappear and i am back to square and again manually enter websites one by one and the same thing happens again.

    You can inspect and manage the permissions for all domains on the <b>about:permissions</b> page.
    *https://support.mozilla.org/kb/how-do-i-manage-website-permissions
    In case you are using "Clear history when Firefox closes":
    *do not clear the "Site Preferences"
    *Tools > Options > Privacy: History: [X] Clear history when Firefox closes > Settings
    *https://support.mozilla.org/kb/Clear+Recent+History
    Note that clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, and passwords.

  • How can I make slides NOT advance automatically?

    I'm building a project manually by making new slides and putting graphics and text on them.  It's not a recording of software.  I would like the user to read each slide for as long as they want to, then click to go to the next one.  I can't find a setting for this.
    I tried setting the default slide duration to 300 sec.  Which sort of works, but every element I add to a slide still defaults to 3 sec so I have to change each element seperately.  Not practical at all.  ideas?

    Hi, I'm also having a slide advancing problem using CP8. I have three smart shapes used as buttons on the screen. After each is clicked, a prompt to click Next (in the playbar) shows. I have a click box after the prompt to stop the screen from advancing. This works fine if I only click the items once. If I click them again, the screen advances.
    I tried adding an additional smart shape. If I clicked two of the items again, the screen advances.
    I need a slight delay before the prompt shows and an effect on the prompt, so I can't just set the Advanced Actions to pause.
    Here are some screen caps of my course...
    Slide properties and Timeline
    Advanced actions of smart shapes....
    Properties for Click Box and Smart Shape that "pause" the slide
    Any help would be greatly appreciated. I need to send this out ASAP.

  • How can I make Skype NOT remember my username ever...

    I am running Windows 7 64 bit on a PC, does anyone know how to do this?
    If done right, it should launch on the sign in page, without the username or password fileds filled out already.

    You may have a problem with cookies if you can't logout.
    Try to clear the cookies from sites that cause problems.
    Tools > Options > Privacy > Cookies: "Show Cookies"
    If clearing the cookies doesn't help then it is possible that the file ''cookies.sqlite'' that stores the cookies is corrupted.
    You can rename (or delete) '''cookies.sqlite''' (cookies.sqlite.old) and delete '''cookies.sqlite-journal''' and '''cookies.txt''', if they exist, in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] in case cookies.sqlite got corrupted.
    See [[Cannot log in to websites]] (Remove corrupt cookies file) - See also http://kb.mozillazine.org/Websites_report_cookies_are_disabled (Other Solutions)

Maybe you are looking for

  • PSCS4 Memory Error with Image Processor

    When I use the image processor in PSCS4 to process a large number of raw files using ACR 5.1 (Nikon D3 NEFs), I consistently receive an error message after about 10-11 files have been processed that the instruction at 0x696336ab tried to read memory

  • BPM - ForEach Block

    Hello experts, I have developed an interface with the following BPM: 1. <Receive Step> 2. <Transformation Step: 1:N mapping> 3. <Block: ForEach> 4. <Send Step> inside the Block: ForEach I have created 2 container objects that use the same abstract in

  • Why does my mac keep switching to a different apple tv mid-stream?

    This is very frustrating and embarrassing, anything would help. I locked all the apple tvs with passwords and still happens!

  • Upload Component, Pass extra Variable

    Hello all. I have been trying to get an upload component to work for some time now, but have been having a few troubles getting one to do what i need.  Recently i found a component that does pretty much everything i want bar one thing, pass an extra

  • Flex Mobile: PersistenceManager not saving data (only on some iPads)

    I have a function (save()) that saves a username after user login and a function (get()) that gets the username everytime the App is restarted so the user doesn't have to log back in and can work offline. This works on my iPad 2 and 3, but I have ano