How to empty the JTextField automatically? Please HELP me.

Hello,
This is my full listing program:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
import javax.swing.event.*;
import javax.swing.border.*;
public class PortGUI extends JFrame
     private     JButton btOk;
     private JButton btCancel;
     private     JButton btReply;
     private     JLabel lblServIP;
     private     JLabel lblAuth;
     private JLabel lblThrd;
     private JLabel lblAcc;
     private JLabel lblMax;
     private JLabel lblAuthent;
     private JLabel lblAdm;
     private JLabel lblReplServ;
     private JCheckBox chkUsers;
     private JCheckBox chkEnbDbg;
     private JOptionPane pnlErr = new JOptionPane();
     public PortGUI()
          // Create main panel
          JPanel topPanel     = new JPanel();
          topPanel.setLayout(null);
          getContentPane().add( topPanel );
     // Create Server Settings panel
          JPanel panelsett = new JPanel();
          panelsett.setLayout(null);
          panelsett.setBounds(5,5,680, 200);
          // panelsett containers
          final JTextField fldServIP = new JTextField();
          fldServIP.setBounds( 160, 30, 100, 25 );
          fldServIP.setFocusAccelerator( 'v' );
          panelsett.add(fldServIP);
          lblServIP = new JLabel( "Server IP"     );
          lblServIP.setBounds( 20, 30, 100, 25 );
          lblServIP.setLabelFor(     fldServIP );
          panelsett.add(lblServIP);
          final JTextField fldAuth = new JTextField();
          fldAuth.setBounds( 600, 30, 50, 25 );
          fldAuth.setFocusAccelerator( 'v' );
          panelsett.add(fldAuth);
          lblAuth = new JLabel( "Incoming Radius Authentication Port");
          lblAuth.setBounds( 350, 30, 300, 25 );
          lblAuth.setLabelFor(fldAuth);
          panelsett.add(lblAuth);                                        
          final JTextField fldThrd =     new     JTextField();
          fldThrd.setBounds( 160, 60, 50, 25 );
          fldThrd.setFocusAccelerator( 'a' );
          panelsett.add(fldThrd);
          lblThrd = new JLabel( "Worker Threads" );
          lblThrd.setBounds( 20, 60, 100, 25 );
          lblThrd.setLabelFor(fldThrd);
          panelsett.add(lblThrd);
          final JTextField fldAcc =     new     JTextField();
          fldAcc.setBounds( 600, 60, 50, 25 );
          fldAcc.setFocusAccelerator( 'a' );
          panelsett.add( fldAcc );
          lblAcc = new JLabel( "Incoming Radius Accounting Port" );
          lblAcc.setBounds( 350, 60, 300, 25 );
          lblAcc.setLabelFor(     fldAcc );
          panelsett.add( lblAcc );
          final JTextField fldMax =     new     JTextField();
          fldMax.setBounds( 160, 90, 50, 25 );
          fldMax.setFocusAccelerator( 'c' );
          panelsett.add( fldMax );
          lblMax = new JLabel( "Maximum Consoles" );
          lblMax.setBounds( 20, 90, 200, 25 );
          lblMax.setLabelFor(     fldMax );
          panelsett.add(lblMax);
          // Create combo box
          String[] AuthStrings = {"Local Server", "Proxy Server", "Local and Proxy"};
          JComboBox AuthList = new JComboBox(AuthStrings);
          AuthList.setSelectedIndex(2);
          AuthList.setSelectedItem(null);
          AuthList.setBounds(450, 90, 200, 25);
          panelsett.add(AuthList);          
          lblAuthent = new JLabel( "Authenticator" );
          lblAuthent.setBounds( 350, 90, 100, 25 );
          lblAuthent.setLabelFor(     AuthList);
          panelsett.add(lblAuthent);
          final JTextField fldAdm =     new     JTextField();
          fldAdm.setBounds( 160, 120, 50, 25 );
          fldAdm.setFocusAccelerator( 'c' );
          panelsett.add( fldAdm );
          lblAdm = new JLabel( "Admin TCP Port" );
          lblAdm.setBounds( 20, 120, 150, 25 );
          lblAdm.setLabelFor(     fldAdm );
          panelsett.add(lblAdm);
          // create checkbox
          chkUsers = new JCheckBox("Cache Users in Memory");
          chkUsers.setBounds(350, 120, 250, 25);
chkUsers.setMnemonic('m');
chkUsers.setSelected(false);
panelsett.add(chkUsers);
          final JTextField fldReplServ =     new     JTextField();
          fldReplServ.setBounds( 160, 150, 100, 25 );
          fldReplServ.setFocusAccelerator( 'c' );
          panelsett.add( fldReplServ );
          lblReplServ = new JLabel( "Replication Server IP" );
          lblReplServ.setBounds( 20, 150, 200, 25 );
          lblReplServ.setLabelFor(fldReplServ);
          panelsett.add(lblReplServ);
          chkEnbDbg = new JCheckBox("Enable Debug Trace Output");
chkEnbDbg.setBounds(350, 150, 250, 25);
chkEnbDbg.setMnemonic('n');
chkEnbDbg.setSelected(false);
panelsett.add(chkEnbDbg);
          Border etched;
          etched = BorderFactory.createLoweredBevelBorder();
     TitledBorder title;
     title = BorderFactory.createTitledBorder(etched, "Server Settings");
title.setTitleJustification(TitledBorder.LEFT);
panelsett.setBorder(title);
topPanel.add(panelsett);
          // Create a button
          btOk = new JButton( "OK" );
          btOk.setBorder(BorderFactory.createRaisedBevelBorder());
          btOk.setBounds( 170, 270, 100, 35 );
          btOk.setEnabled(false );
          topPanel.add(btOk);
          btReply = new JButton( "Apply" );
          btReply.setBorder(BorderFactory.createRaisedBevelBorder());
          btReply.setBounds( 300, 270, 100, 35 );
          topPanel.add(btReply);
          btCancel = new JButton( "Cancel" );
          btCancel.setBorder(BorderFactory.createRaisedBevelBorder());
          btCancel.setBounds( 420, 270, 100, 35 );
          btCancel.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent e)
     System.exit(0);
          topPanel.add(btCancel);
          // Action for each components
          fldServIP.getDocument().addDocumentListener(new DocumentListener()
               public void     insertUpdate( DocumentEvent event )
                    String     sString     = fldServIP.getText();
                    try     
                         int     iValue = Integer.parseInt( sString );
                         btOk.setEnabled( true );
                    catch( NumberFormatException e )
                         if(     fldServIP.getText().length() == 4 )
               JOptionPane.showMessageDialog(pnlErr,
"Please try again",
"Error Message",
JOptionPane.ERROR_MESSAGE);
public void removeUpdate( DocumentEvent event )
     // Prevent the user     from entering a blank field
     if(     fldServIP.getText().length() == 0 )
     btOk.setEnabled( false );
     else
          // Do the same error checking as insertUpdate()
          insertUpdate( event );
public void changedUpdate( DocumentEvent event )
     // Nothing to do here
          fldAuth.getDocument().addDocumentListener(new DocumentListener()
               public void     insertUpdate( DocumentEvent event )
                    String     sString     = fldAuth.getText();
                    try     
                         int     iValue = Integer.parseInt( sString );
                         btOk.setEnabled( true );
                    catch( NumberFormatException e )
                         if(     fldAuth.getText().length() == 4 )
               JOptionPane.showMessageDialog(pnlErr,
"Please try again",
"Error Message",
JOptionPane.ERROR_MESSAGE);
public void removeUpdate( DocumentEvent event )
     // Prevent the user     from entering a blank field
     if(     fldAuth.getText().length() == 0 )
     btOk.setEnabled( false );
     else
          // Do the same error checking as insertUpdate()
          insertUpdate( event );
public void changedUpdate( DocumentEvent event )
     // Nothing to do here
     fldThrd.getDocument().addDocumentListener(new DocumentListener()
               public void     insertUpdate( DocumentEvent event )
                    String     sString     = fldThrd.getText();
                    try     
                         int     iValue = Integer.parseInt( sString );
                         btOk.setEnabled( true );
                    catch( NumberFormatException e )
                         if(     fldThrd.getText().length() == 4 )
               JOptionPane.showMessageDialog(pnlErr,
"Please try again",
"Error Message",
JOptionPane.ERROR_MESSAGE);
public void removeUpdate( DocumentEvent event )
     // Prevent the user     from entering a blank field
     if(     fldThrd.getText().length() == 0 )
     btOk.setEnabled( false );
     else
          // Do the same error checking as insertUpdate()
          insertUpdate( event );
public void changedUpdate( DocumentEvent event )
     // Nothing to do here
fldAcc.getDocument().addDocumentListener(new DocumentListener()
               public void     insertUpdate( DocumentEvent event )
                    String     sString     = fldAcc.getText();
                    try     
                         int     iValue = Integer.parseInt( sString );
                         btOk.setEnabled( true );
                    catch( NumberFormatException e )
                         if(     fldAcc.getText().length() == 4 )
               JOptionPane.showMessageDialog(pnlErr,
"Please try again",
"Error Message",
JOptionPane.ERROR_MESSAGE);
public void removeUpdate( DocumentEvent event )
     // Prevent the user     from entering a blank field
     if(     fldAcc.getText().length() == 0 )
     btOk.setEnabled( false );
     else
          // Do the same error checking as insertUpdate()
          insertUpdate( event );
public void changedUpdate( DocumentEvent event )
     // Nothing to do here
fldMax.getDocument().addDocumentListener(new DocumentListener()
               public void     insertUpdate( DocumentEvent event )
                    String     sString     = fldMax.getText();
                    try     
                         int     iValue = Integer.parseInt( sString );
                         btOk.setEnabled( true );
                    catch( NumberFormatException e )
                         if(     fldMax.getText().length() == 4 )
               JOptionPane.showMessageDialog(pnlErr,
"Please try again",
"Error Message",
JOptionPane.ERROR_MESSAGE);
public void removeUpdate( DocumentEvent event )
     // Prevent the user     from entering a blank field
     if(     fldMax.getText().length() == 0 )
     btOk.setEnabled( false );
     else
          // Do the same error checking as insertUpdate()
          insertUpdate( event );
public void changedUpdate( DocumentEvent event )
     // Nothing to do here
fldAdm.getDocument().addDocumentListener(new DocumentListener()
               public void     insertUpdate( DocumentEvent event )
                    String     sString     = fldAdm.getText();
                    try     
                         int     iValue = Integer.parseInt( sString );
                         btOk.setEnabled( true );
                    catch( NumberFormatException e )
                         if(     fldAdm.getText().length() == 4 )
               JOptionPane.showMessageDialog(pnlErr,
"Please try again",
"Error Message",
JOptionPane.ERROR_MESSAGE);
public void removeUpdate( DocumentEvent event )
     // Prevent the user     from entering a blank field
     if(     fldAdm.getText().length() == 0 )
     btOk.setEnabled( false );
     else
          // Do the same error checking as insertUpdate()
          insertUpdate( event );
public void changedUpdate( DocumentEvent event )
     // Nothing to do here
fldReplServ.getDocument().addDocumentListener(new DocumentListener()
               public void     insertUpdate( DocumentEvent event )
                    String     sString     = fldReplServ.getText();
                    try     
                         int     iValue = Integer.parseInt( sString );
                         btOk.setEnabled( true );
                    catch( NumberFormatException e )
                         if(     fldReplServ.getText().length() == 4 )
               JOptionPane.showMessageDialog(pnlErr,
"Please try again",
"Error Message",
JOptionPane.ERROR_MESSAGE);
public void removeUpdate( DocumentEvent event )
     // Prevent the user     from entering a blank field
     if(     fldReplServ.getText().length() == 0 )
     btOk.setEnabled( false );
     else
          // Do the same error checking as insertUpdate()
          insertUpdate( event );
public void changedUpdate( DocumentEvent event )
     // Nothing to do here
     public static void main(String[] args)
          //int windowWidth, windowHeight;
          int windowWidth = 700;
int windowHeight = 400;
          PortGUI window = new PortGUI();
          window.setTitle("");
          Dimension windowSize = window.getSize();
          Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
          window.setSize(windowWidth, windowHeight);
          window.setLocation((screenSize.width - windowWidth) / 2, (screenSize.height - windowHeight) / 2);
          window.setVisible(true);
          window.setResizable(false);
On that listing program, my problem is in field document listener, that is:
fldThrd.getDocument().addDocumentListener(new DocumentListener()
               public void     insertUpdate( DocumentEvent event )
                    String     sString     = fldThrd.getText();
                    try     
                         int     iValue = Integer.parseInt( sString );
                         btOk.setEnabled( true );
                    catch( NumberFormatException e )
                         if(     fldThrd.getText().length() == 4 )
               JOptionPane.showMessageDialog(pnlErr,
"Please try again",
"Error Message",
JOptionPane.ERROR_MESSAGE);
if I execute this program, the textfield can only receive integer input. If input is string til 4 times, the dialog panel will display error message. After that, textfield must be empty (delete automatically).
I want to ask you about how I can emptying that textfield automatically after the dialog panel is appear?
Please help me to get out from my problem.
Thank's for your help,
har

Hi,
To empty the text file, use the method setText("").
eg. fldServIP.setText("");
fldServIP is one of your textfield. So whereever you are showing the dialog box, use setText("") for the corresponding textfields.
All the best

Similar Messages

  • BI BEANS - Graph - How to change the color .. please help

    Hi Everyone,
    Can anyone please tell me how to change the color of the Graph bars or slices. I mean the color which represents the data.
    For example in a pie chart I want to set specific color for specific slice. Please help.
    Regards
    SRT

    It seems to be the SET_SERIE_COLOR() method added to the FormsGraph revised version, but this latest version is momentarily not available for download.
    I think there is an existant open thread on this. Maybe you could find it using the Forum Search box.
    Francois

  • I am hacked on all my apple devices. How to solve the issue? Please help!

    Hi everyone,
    So whenever I open certain websites on Safari, suddenly I am redirected to either a women's health or a doctor's ad. (I am guessing this is called phishing)
    1)I've asked my friends if they've had the same problem with those certain sites and they replied no. Does this mean it is about my network? (I am the only one using this network at my home as I live alone)
    2)This happens on all my Apple devices including iPad and iPhone (when I tried to open the same website on my İphone while using mobile data, the problem did not happen- when I opened wifi on my phone it happened. same for iPad as well)
    Admedic said there were no adware, I have never changed my DNS so it has always stayed the way it always was also. So I am guessing my network is the problem.  (I am also guessing that this happened after I tried to watch a movie free online) BUT, this problem does not occur with Google Chrome on the same website. So is this about my network or my safari?
    I am now so scared if this person who hacked me gets all my information. What am I supposed to do? Please help!

    Hi! Thanks for your quick reply.
    A few things happened since I've posted this.
    1)I've deleted all the history and cookies from my macbook safari and when I opened the website with the issue, the problem did not happen this time.
    2)Seeing this, I've deleted my history on iPhone's safari and opened the same website but the problem was there again.
    3)The problem does not happen on iPad.
    So, I do not have the problem at all on Google Chrome but on Safari (now just on iPhone)
    Is this still about my router settings? If so would changing my phone DNS settings would suffice? Or do you think the problem might still remain on my computer as well?
    This is so frustrating for a person who does not know anything about technology at all
    Thank you!

  • How to track the Modified Data-Please help

    Hi Gurus,
    Background about the issue.... We have Customers and Customer Tier on Siebel On Demand. Every month after bookings are done customer tier is modified depending on the reveune genrated by the customer. Say for example ....Customer XXX was under 'A' but due to bad bookings for the month now they are degraded 'B'. Like this we get a list of customer tiers for the month of all customers and are uploaded in to Siebel.
    Now the challenge for me is while reporting in Analytics... how to retain the previous value. For example...For Customer xxx the customer tier was A in Aug and is modified as B in September. I want retain the previous value in my reports....
    In one of the Siebel Query documents i saw that PRE <'Field Refrence'> syntax holds the previous value of the field ..But it did not work in my case...
    Any suggestions to retain the old value after doing modifications..
    Thanks for the help.
    BK

    BK,
    My suggestion would be to write workflows that capture the data when it changes into the task description e.g.
    PRE(CustomerTier) <> (CustomerTier) creates a task that puts (Customer Tier into the description)
    then using the Task created date reflect that in the activity report.
    cheers
    Alex

  • I purchased a second hand iPad mini and it's on activation lock because I don't know how to contact the original owner please help me

    Please help me

    You will not be able to activate the iPad without the Apple ID and Password of previous owner.

  • I am getting an error report and not sure how to fix the script. Please help... 3

    So now Im getting a new error report. I named the instance of the button in the properties panel btn_ccbil.
    Here is the code I have now:
    import flash.net.URLRequest;
    var url:String = 'http://www.lexiefyfe.com/ccbill9001/index.htm';
    btn_ccbil.addEventListener(MouseEvent.CLICK, onOrderClick);
    function onOrderClick():void
          var request:URLRequest = new URLRequest(url);
          try {
                navigateToURL(request, '_blank');
          } catch (e:Error) {
                trace('An error occurred');
    Here is the error report:
    Scene=photogallery, layer=buttons, frame=1, Line 7 A type identifier is expected after the ':'.
    Scene=photogallery, layer=buttons, frame=1, Line 9 The class or interface 'flash.net.URLRequest' could not be loaded.
    This is the original code for the billing from ccbill I am trying to get to work with flash:
    <A HREF="http://www.lexiefyfe.com/ccbill9001/index.htm"><img src="ccbutton.jpg"></A>
    Is this just something that flash can't do? If so will someone please let me know. I am running in circles at this point and very frustrated... I'm new to as3 but I thought it could work.
    Thank you to all for the help and consideration,
    Thomas

    You appear to be using AS3 code in an AS2 setting.  Go into your Publish Settings and change the actionscript version to AS3 in the Flash section.
    Other matters...
    You do not need to import the URLRequest class while coding in the Flash IDE.
    You need to put an argument in the function definition due to the listeners throwing one when it is triggered...
    function onOrderClick(evt:MouseEvent):void

  • How to make the server threadsafe (Please Help)

    Hi to all,
    I have urgent question, and any
    reply will be welcome.
    How i make my server that use rmi threadsafe,
    i want that each request from clients,the
    server will make a separate thread.
    the ejb use jndi to do this, how can i do this in rmi
    i want that a client will get a reference to a factory
    object in the server, the factory object will create a
    thread and will return the reference to the client.
    Thanks,
    dan

    Hi Bill,
    Thanks for your reply.
    at the rmi specification it said that :
    3.2 Thread Usage in Remote Method Invocations
    A method dispatched by the RMI runtime to a remote object implementation may or may not execute in a separate thread. The RMI runtime makes no guarantees with respect to mapping remote object invocations to threads. Since remote method invocation on the same remote object may execute concurrently, a remote object implementation needs to make sure its implementation is thread-safe.
    this is all what sun has to say about using
    threads with rmi.
    do you have any example for using rmi server
    that handle concurrent access?
    again,
    lots of thanks for your help.
    dan

  • I am getting an error report and not sure how to fix the script. Please help...

    I am using action script 3. I have html codes from ccbill that I am trying to make work with flash. Here is the script I am trying to use:
    import flash.net.URLRequest;
    var url:String = 'http://www.lexiefyfe.com/ccbill9001/index.htm';
    myButton.addEventListener(MouseEvent.CLICK, onOrderClick);
    function onOrderClick():void
          var request:URLRequest = new URLRequest(url);
          try {
                navigateToURL(request, '_blank');
          } catch (e:Error) {
                trace('An error occurred');
    Here is the code from ccbill:
    <A HREF="http://www.lexiefyfe.com/ccbill9001/index.htm"><img src="ccbutton.jpg"></A>
    This is the error report I am getting:
    Scene=photogallery, layer=buttons, frame=1, Line 1 Statement must appear within on handler
    Scene=photogallery, layer=buttons, frame=1, Line 3 Statement must appear within on handler
    Scene=photogallery, layer=buttons, frame=1, Line 5 Statement must appear within on handler
    Scene=photogallery, layer=buttons, frame=1, Line 7 A type identifier is expected after the ':'.
    Scene=photogallery, layer=buttons, frame=1, Line 9 The class or interface 'flash.net.URLRequest' could not be loaded.
    Scene=photogallery, layer=buttons, frame=1, Line 7 Statement must appear within on handler
    If anyone can help me with this issue I would be most grateful.
    Thank you for any consideration,
    Thomas

    You have a mixture of things going on... AS3 code in an AS2 setting.  Those are all AS2 error messages, and they are indicating you have placed the code on the buttons.  To use that code, it must be placed on the timeline, and your Flash Publish Settings need to have AS3 specified instead of AS2.  AS3 does not allow code to be placed on objects like AS2 does.

  • How to play the audio file please help me

    i would like to play audio files such wav files, au files etc
    I would like to know how to play audio file easily in Applet and
    applications
    Thank you

    import sun.audio.*; //import the sun.audio package
    import java.io.*;
    //** add this into your application code as appropriate
    // Open an input stream to the audio file.
    InputStream in = new FileInputStream(Filename);
    // Create an AudioStream object from the input stream.
    AudioStream as = new AudioStream(in);
    // Use the static class member "player" from class AudioPlayer to play
    // clip.
    AudioPlayer.player.start(as);
    // Similarly, to stop the audio.
    AudioPlayer.player.stop(as);

  • When I switched to foxfire the print got very tiny. I am new at this and don't know how to enlarge the print. Please help me.

    How do I enlarge the print?

    See this:
    https://support.mozilla.com/en-US/kb/Page+Zoom
    The Firefox Page Zoom feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

  • How do i delete completely all data that i already deleted? Because even though i deleted the files and empty the trash, my memory is still the same! please help!!

    Hi all! im using the OS XV10.6 not 4 sorry. Anywayz, i tried to delete all data that i dont need to have more free space. However, after i deleted all the files that i dont need, then empty the trash cane, my free space is still the same! I did research and try the "erase for free space" But it is still the same! please help!!! Is there anyway to increase my free space?

    Hello, are you using Filevault perchance?
    How much free space does it report if you do a Get Info on the whole drive?
    Could we be confusing Memory (RAM), with Hard Drive Free Space (Virtual Memory)?

  • I cracked my screen. I want to use other monitor which I had one. I bought Apple Mini-DP to VGA adapter. It worked. It means I can see ADDITIONAL screen. However I want to use this monitor for the main screen. How can I do?? Please help.

    I cracked my screen. I want to use other monitor which I had one. I bought an Apple Mini-DP to VGA adapter. It worked. It means I can see ADDITIONAL screen. However I want to use this monitor for the main screen. How can I do?? Please help.

    You have the display set in Extended Desktop mode. The Menu Bar and Dock will be on the MacBook display and your background screen on the monitor. In System Preferences>Display on the MacBook screen there should be an Arrangement tab when you have the MacBook hooked up to the monitor and both screens working. When you click the Arrangement tab do you see two monitors side by side? One of them will have a Menu Bar at the top. Just click on the Menu Bar and drag it to the second monitor. That will make the second monitor your main screen. You can now use your MacBook in Clamshell Mode with a wired or Bluetooth keyboard and mouse.  http://support.apple.com/kb/HT3131 When you disconnect from the monitor your Menu Bar will automatically change back to the MacBook.

  • How can i change the setting on my ipad 2? Whenever i read stories in the net after awhile it goeson standby and i have to keep on entering the passcode. Please help.

    How can i change the setting on my ipad 2? Whenever i read stories in the net after awhile it goeson standby and i have to keep on entering the passcode. Please help.

    Settings>General>AutoLock>Never. Now it will not sleep at all so change it back when you are done reading.

  • I accidentally dropped macbook air that was in a book bag. The keyboard is working because I can see the light but the screen is black and it won't turn off. How should I fix this? Please Help ME!!

    I accidentally dropped my friend's macbook air that was in a book bag. The keyboard is working because I can see the light but the screen is black and it won't turn off. How should I fix this? Please Help ME!!
    I tried to turn it off and it didn't work... and I held on to the shift key too and it still doesn't work..
    Please help me..

    Accidental damage is not covered under Apple warranty.  And it seems there is much accidental damage.  Only a Genius Bar tech looking at it can tell how much it will cost to repair.
    Cost to repair will be high, I suspect (though Genius Bar will confirm/deny.
    There is no gentle way to say this sir/ma'am ... someone will need to pay for your friend's MBA repairs.

  • I forgot my icloud id and password. i want to delete the id. i forgot the password. if i try to delete the account its asking for password. i cannot find how to delete the account. Please anyone can help me out???

    I forgot my icloud id and password. i want to delete the id. i forgot the password. if i try to delete the account its asking for password. i cannot find how to delete the account. Please anyone can help me out???

    You aren't going to be able to delete it without the correct password.  If it's your ID, you can reset the password as explained here: http://support.apple.com/kb/HT5625.  If it isn't your ID, you will have to get the password for the person who owns the ID.  There's no way around this and no one else can help.

Maybe you are looking for

  • Some files cannot open

    I posted before that I had put my data back onto my MBP from external HD backup clone after I had to have it replaced. At that time I was unable to open any files. I ask how to fix and someone told me to do a repair disk permission which I did and I

  • Assign default values in selection screen of CM21

    Hi experts, Our case is that, in CM21 selection screen, default value to the field "Plant" is appeared. W are sure that it is not because of configuration settings but not able to find why it is appearing by default. Please let us know. Thanks in adv

  • My recent experience with Verizon wireless

    Approximately two years ago, I decided to switch to Verizon wireless from another carrier because the company I work for has a corporate account with them and offers discounts to employees that have their personal accounts with VZW as well. I got a v

  • Proxy message types

    Hi, We have created custom data types which have been used to create proxy generated message types using SPROXY. But now we need to change the size of the field in the data type. Is it necessary to regenerate the proxy to bring in this change? -Teres

  • Macbook Air 13" 2015 - Install Windows 7 64bit

    I understand Apple does not supply Bootcamp drivers for Windows 7 64bit to work with MacBook Air 2015 model. Has anybody tried to install it anyway either using the Boot Camp drivers for Windows 8.1 or any other method. Our company uses a Windows 7 E