Compilation Help!!Pls offer ur knowledge

Anyone can figure out what wrong with my program>I try to getString name from Eoption1 class location and be display in other interface(Exam class).There is a problem during compilation.Can anyone offer some knowlegde tosee what the problem,,Below are three file .....(Module1.java,Eoption1.java,Exam.java)
Module1.java(main class)
=================
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.BorderFactory;
import javax.swing.border.Border;
import javax.swing.border.TitledBorder;
public class Module1 extends JFrame {
long startT=0;
Clock2 applet = new Clock2();
public Module1() {
super("Certification Exam");
JMenuBar menubar = new JMenuBar();
JMenu menu = new JMenu("File");
     JMenu exam = new JMenu("Exam");
JMenu help = new JMenu("Help");
     JMenu type = new JMenu("Type of Exam");
JMenuItem
     newitem = new JMenuItem("New ..."),
olditem = new JMenuItem("Old ..."),
exititem = new JMenuItem("Exit ..."),
option = new JMenuItem("Exam Option"),
starte = new JMenuItem("Start Exam");
menu.add(newitem);
menu.add(olditem);
menu.add(exititem);
exam.add(starte);
exam.add("Load Exam");
exam.addSeparator();
exam.add(option);
help.add(type);
help.add("Implementation");
     help.add("Update");
     type.add("Windows Profesional");
     type.add("Windows Server");
     type.add("Active Directory");
Container contentPane = getContentPane();
     JLabel none = new JLabel("");
     JPanel panel = new ImageCanvas("cover2.jpg","LOGO");
     panel.setBorder(BorderFactory.createRaisedBevelBorder());
     panel.setPreferredSize(new Dimension(495,260));
     //panel.setPreferredSize(new Dimension(960,500));
     panel.setBounds(20,20,950,500);
applet.setBounds(430,550,150,150);
contentPane.setLayout(new BorderLayout());
     contentPane.add(panel,BorderLayout.SOUTH);
     contentPane.add(applet,BorderLayout.SOUTH);
contentPane.add(none,BorderLayout.SOUTH);
applet.init();
applet.start();
menubar.add(menu);
menubar.add(exam);
menubar.add(help);
setJMenuBar(menubar);
starte.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Option1();
option.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Optional();
public void Optional() {
Eoption1 option = new Eoption1(this);
startT=option.getStartT();
public void Option1() {
Exam exam = new Exam(startT);
class ImageCanvas extends JPanel {
     ImageIcon icon;
     public ImageCanvas(String imageName, String description) {
          icon = new ImageIcon(imageName, description);
     public void paintComponent(Graphics g) {
          Insets insets = getInsets();
          super.paintComponent(g);
     icon.paintIcon(this, g, insets.left, insets.top);
     public Dimension getPreferredSize() {
          Insets insets = getInsets();
          return new Dimension(
               icon.getIconWidth() + insets.left + insets.right,
               icon.getIconHeight() + insets.top + insets.bottom);
public static void main(String args[]) {
JFrame mod = new Module1();
Toolkit theKit = mod.getToolkit();
Dimension wndSize = theKit.getScreenSize();
mod.setSize(wndSize.width,wndSize.height);
mod.setVisible(true);
mod.setResizable(false);
mod.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Eoption1.java
==================
import java.math.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Eoption1 extends JDialog implements ActionListener {
JComboBox combo = new JComboBox();
long startT=0;
public Eoption1(Frame parent) {
super(parent, "Server 1.2-1", true);
Container contentPane = getContentPane();
JLabel label1 = new JLabel("Examinee Name");
JButton start = new JButton("Submit");
JTextField name = new JTextField(30);
String stuName;
start.setEnabled(false);
     combo.addItem(" No Timer");
combo.addItem("30 Minutes");
combo.addItem("60 Minutes");
combo.addItem("90 Minutes");
combo.addItem("120 Minutes");
combo.addItem("150 Minutes");
combo.addItem("180 Minutes");
combo.setSelectedIndex(0);
start.addActionListener(new ActionListener() {
public void actionPerformed( ActionEvent e ) {
try {
startT = combo.getSelectedIndex();
if (startT == 0) {
     // do something
               stuName = (String) name.getText();
     startT = -1; // Impossible to get -1 from this calcs, so we set it so we can check it later
} else {
     startT *= 30*60*1000;
               stuName = (String) name.getText();
dispose();
return;
catch (Throwable fe) {}
contentPane.setLayout(null);
contentPane.add(label1);
contentPane.add(name);
contentPane.add(start);
contentPane.add(combo);
name.addActionListener(this);
label1.setBounds(30,10,100,30);
name.setBounds(140,10,150,25);
start.setBounds(30,50,100,25);
combo.setBounds(150,50,130,25);
Dimension wndSize = Toolkit.getDefaultToolkit().getScreenSize();
setBounds(wndSize.width/4, wndSize.height/4,wndSize.width/2, wndSize.height/2);
setVisible(true);
public void keyTyped(KeyEvent e) { }
public void keyPressed(KeyEvent e) { }
public void keyReleased(KeyEvent e) {
if((name.getText().length() > 0)
start.setEnabled(true);
else
start.setEnabled(false);
public long getStartT() {return startT;}
Exam.java
==========================
import javax.swing.*;
import java.awt.*;
import java.text.*;
import java.util.*;
import java.awt.event.*;
import javax.swing.border.*;
public class Exam extends JFrame {
javax.swing.Timer timer;
JTextField time = new JTextField("");
String stuName;
long startT,stopT;
SimpleDateFormat timef = new SimpleDateFormat(" HH:mm:ss ",Locale.getDefault());
Exam(long start,String stuName) {
super("Exam");
startT=start;
     this.stuName = stuName;
Date date=new Date();
timef.setTimeZone(TimeZone.getTimeZone("GMT"));
Container contentPane = getContentPane();
String content = "";
     JLabel namedisplay = new JLabel("");
JPanel panel = new JPanel();
JTextArea textArea = new JTextArea(content,10,30);
textArea.setLineWrap(true);
textArea.setEditable(false);
time.setBounds(300,400,70,25);
time.setOpaque(true);
time.setEditable(false);
panel.setBorder(BorderFactory.createTitledBorder("Read the following"));
panel.add(textArea);
panel.setBounds(100,50,500,250);
     namedisplay.setText(stuName);
namedisplay.setBounds(300,350, 100, 25);
contentPane.setLayout(null);
contentPane.add(panel);
contentPane.add(time);
     contentPane.add(namedisplay);
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          if (startT > 0) {
     startT+=System.currentTimeMillis();
     timer = new javax.swing.Timer(1000, new ActionListener() {
     public void actionPerformed(ActionEvent e) {
     stopT = System.currentTimeMillis();
     time.setText(timef.format(new Date(startT-stopT)));
                    timer.start();
               } else {
                    // Running with no timer, do something here to let them know.
                    // set the time.setText("00:00:00"); or whatever you want it to sit at
setVisible(true);
Dimension wndSize = Toolkit.getDefaultToolkit().getScreenSize();
setBounds(wndSize.width/10, wndSize.height/10,800,600);

Dear VV..
i have try to compile using your way and it does works,but got somemore problem trouble me,I have try to getString where the exammiinee name from Eoption class but it can;t store to be display in the Exam class.I have already declare all the variable but it doesn;t run.Can you pls help..Below are the code.where it got three file (Exam,MOdule1,Eoption).There is a applet code Clock2 ,u may // it first..
Exam.java
==============
import javax.swing.*;
import java.awt.*;
import java.text.*;
import java.util.*;
import java.awt.event.*;
import javax.swing.border.*;
public class Exam extends JFrame {
javax.swing.Timer timer;
JTextField time = new JTextField("");
String stuName;
long startT,stopT;
SimpleDateFormat timef = new SimpleDateFormat(" HH:mm:ss ",Locale.getDefault());
public Exam(long start,String stuName) {
super("Exam");
startT=start;
this.stuName = stuName;
Date date=new Date();
timef.setTimeZone(TimeZone.getTimeZone("GMT"));
Container contentPane = getContentPane();
String content = "";
JLabel namedisplay = new JLabel("");
JPanel panel = new JPanel();
JTextArea textArea = new JTextArea(content,10,30);
textArea.setLineWrap(true);
textArea.setEditable(false);
time.setBounds(300,400,70,25);
time.setOpaque(true);
time.setEditable(false);
panel.setBorder(BorderFactory.createTitledBorder("Read the following"));
panel.add(textArea);
panel.setBounds(100,50,500,250);
namedisplay.setText(stuName);
namedisplay.setBounds(300,480, 100, 25);
contentPane.setLayout(null);
contentPane.add(panel);
contentPane.add(time);
contentPane.add(namedisplay);
setResizable(false);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
if (startT > 0) {
startT+=System.currentTimeMillis();
timer = new javax.swing.Timer(1000, new ActionListener() {
public void actionPerformed(ActionEvent e) {
stopT = System.currentTimeMillis();
time.setText(timef.format(new Date(startT-stopT)));
timer.start();
} else {
// Running with no timer, do something here to let them know.
// set the time.setText("00:00:00"); or whatever you want it to sit at
setVisible(true);
Dimension wndSize = Toolkit.getDefaultToolkit().getScreenSize();
setBounds(wndSize.width/10, wndSize.height/10,800,600);
Eoption1.java
========================
import java.math.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Eoption1 extends JDialog implements ActionListener{
JComboBox combo = new JComboBox();
Exam x = new Exam(0L,"");
long startT=0;
JTextField name = new JTextField(30);
String stuName;
JButton start = new JButton("Submit");
public Eoption1(Frame parent) {
super(parent, "Server 1.2-1", true);
Container contentPane = getContentPane();
JLabel label1 = new JLabel("Examinee Name");
JButton start = new JButton("Submit");
combo.addItem(" No Timer");
combo.addItem("30 Minutes");
combo.addItem("60 Minutes");
combo.addItem("90 Minutes");
combo.addItem("120 Minutes");
combo.addItem("150 Minutes");
combo.addItem("180 Minutes");
combo.setSelectedIndex(0);
start.addActionListener(this);
contentPane.setLayout(null);
contentPane.add(label1);
contentPane.add(name);
contentPane.add(start);
contentPane.add(combo);
name.addActionListener(this);
label1.setBounds(30,10,100,30);
name.setBounds(140,10,150,25);
start.setBounds(30,50,100,25);
combo.setBounds(150,50,130,25);
Dimension wndSize = Toolkit.getDefaultToolkit().getScreenSize();
setBounds(wndSize.width/4, wndSize.height/4,wndSize.width/2, wndSize.height/2);
setVisible(true);
public void actionPerformed(ActionEvent e) {
try {
startT = combo.getSelectedIndex();
if (startT == 0) {
// do something
stuName = (String) name.getText();
startT = -1; // Impossible to get -1 from this calcs, so we set it so we can check it later
} else {
startT *= 30*60*1000;
stuName = (String) name.getText();
dispose();
return;
catch (Throwable fe) {}
public long getStartT() {return startT;}
public void keyPressed(KeyEvent e) { }
public void keyReleased(KeyEvent e) {
if((name.getText().length() > 0))
start.setEnabled(true);
else
start.setEnabled(false);
public void keyTyped(KeyEvent e) { }
Module1.java(main class)
=========
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.BorderFactory;
import javax.swing.border.Border;
import javax.swing.border.TitledBorder;
public class Module1 extends JFrame {
long startT=0;
String stuName;
Clock2 applet = new Clock2(); // Unknown
class ImageCanvas extends JPanel {
ImageIcon icon;
public ImageCanvas(String imageName, String description) {
icon = new ImageIcon(imageName, description);
public void paintComponent(Graphics g) {
Insets insets = getInsets();
super.paintComponent(g);
icon.paintIcon(this, g, insets.left, insets.top);
public Dimension getPreferredSize() {
Insets insets = getInsets();
return new Dimension(
icon.getIconWidth() + insets.left + insets.right,
icon.getIconHeight() + insets.top + insets.bottom);
public Module1() {
super("Certification Exam");
JMenuBar menubar = new JMenuBar();
JMenu menu = new JMenu("File");
JMenu exam = new JMenu("Exam");
JMenu help = new JMenu("Help");
JMenu type = new JMenu("Type of Exam");
JMenuItem
newitem = new JMenuItem("New ..."),
olditem = new JMenuItem("Old ..."),
exititem = new JMenuItem("Exit ..."),
option = new JMenuItem("Exam Option"),
starte = new JMenuItem("Start Exam");
menu.add(newitem);
menu.add(olditem);
menu.add(exititem);
exam.add(starte);
exam.add("Load Exam");
exam.addSeparator();
exam.add(option);
help.add(type);
help.add("Implementation");
help.add("Update");
type.add("Windows Profesional");
type.add("Windows Server");
type.add("Active Directory");
Container contentPane = getContentPane();
JLabel none = new JLabel("");
JPanel panel = new ImageCanvas("cover2.jpg","LOGO");
panel.setBorder(BorderFactory.createRaisedBevelBorder());
panel.setPreferredSize(new Dimension(495,260));
//panel.setPreferredSize(new Dimension(960,500));
panel.setBounds(20,20,950,500);
applet.setBounds(430,550,150,150);
contentPane.setLayout(new BorderLayout());
contentPane.add(panel,BorderLayout.SOUTH);
contentPane.add(applet,BorderLayout.SOUTH);
contentPane.add(none,BorderLayout.SOUTH);
applet.init();
applet.start();
menubar.add(menu);
menubar.add(exam);
menubar.add(help);
setJMenuBar(menubar);
starte.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Option1();
option.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Optional();
public static void main(String args[]) {
JFrame mod = new Module1();
Toolkit theKit = mod.getToolkit();
Dimension wndSize = theKit.getScreenSize();
mod.setSize(wndSize.width,wndSize.height);
mod.setVisible(true);
mod.setResizable(false);
mod.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
public void Option1() {
Exam exam = new Exam(startT,stuName);
public void Optional() {
Eoption1 option = new Eoption1(this);
startT=option.getStartT();

Similar Messages

  • Nokia 5800XM problems, help pls

    hi, my nokia 5800XM got problems like, i can't view the pictures and video clips in the "images and videos" page, and it's same even i updated FW to v50, beside that, right after i updated the FW to v50, all my songs was unable to display on the songs list, but they do exist in the memory card...
    anyone help pls~

    try removing the battery and sim card for approx 5-10 minutes. reinsert sim and battery power it on, if that does not work you will have to take it to nokia care i am afraid. there is nothing else one can try.
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • My 4th gen ipod touch safari crashes whenever I try to go on. Could someone please help or offer advice?

    My4th gen ipod touch safari crashes whenever I try to go on. Could someone help or offer advice?

    reset the network settings.  settings - general - reset - reset network settings
    now go to settings - wifi - turn wifi on - click your network name and enter password

  • How to create matrix template help pls

    hi frs,
    i have generated xml file after creating matrix report in report builder.
    i want to know how to create matrix template(rtf) in word document.
    if i use wizard or insert> all fields i am not getting rtf like matrix.
    help pls
    Thanks
    Rajesh

    This issue is really becoming a problem for us. Does anyone have any examples of label templates. The label when generated automatically converts from pontrait to landscape. If you increase the size of the template then word complains about the page and margin size before printing.
    Anyone have any ideas?
    Thanks

  • I have a ebook giveaway offering on my site, how can adobe pack help me offer this download

    I have a ebook giveaway offering on my site, how can adobe pack help me offer this download.  I can load the pdf to my website, however, how do people download a copy of their own

    You can do this by uploading the PDF to https://cloud.acrobat.com and then using Send to create an Anonymous link. You can then distribute this link by posting it on your website or sending it out in email or however you would like. Anyone with the link will be able to view and dowload the PDF.
    Hope this helps.

  • My ipod touch screen is totally unresponsive and i have been using it under normal conditions. ihave tried the reset and restore but to no avail.everything works as it would normally do  on the screen.help pls????

    my ipod touch screen is totally unresponsive and i have been using it under normal conditions. ihave tried the reset and restore but to no avail.everything works as it would normally do  on the screen.help pls????

    Might want to post your question in the correct forum.  This is the iPHONE forum.

  • I have a MacBook Pro 15" laptop with Retina running OSX 10.8.5. It will not recognize that my android device (Samsung Galaxy Note3). I am using the standard USB that came out of the box to connect my device to my MAC. Deleted Kies 4 MAC. Help Pls!

    I have a MacBook Pro 15" laptop with Retina running OSX 10.8.5. It will not recognize that my android device (Samsung Galaxy Note3). I am using the standard USB that came out of the box to connect my device to my MAC. Deleted Kies 4 MAC. Help Pls!

    Dee002 wrote:
    MacBook's only have 2.0 USB ports.
    Wrong. 
    If you're not going to provide correct advice then don't repsond at all.
    http://www.apple.com/macbook-pro/specs-retina/

  • I made a mistake. i installed windows using boot camp without os x lion dvd. what should i do? help pls

    i made a mistake. i installed windows using boot camp without os x lion dvd. what should i do? help pls
    Re: can i install windows for pc on my mac or do i need the windows for mac? 

    There is no Lion DVD. Start Boot Camp Assistant and select the menu item to download the Windows Support Software.
    Read and follow the Boot Camp Installation Guide. http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf

  • I have Firefox 10.0.2. and OSX 10.6.8. and the latest PDF adobe reader, and still can not open with the browser PDF files.Can someone help,pls?Thanx

    Dear Ones,
    I have Firefox 10.0.2. and OSX 10.6.8. and the latest PDF adobe reader, and still can not open with the browser PDF files.Can someone help,pls?Thanx

    see if this is helpful : [http://support.mozilla.org/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • "Adobe Illustrator cs5 quit unexpectedly" error message. After I upgratded my imac to Mavericks I can't open Illustrater CS5. Help pls.

    "Adobe Illustrator cs5 quit unexpectedly" error message.
    After I upgrated my imac from Snow Leopard to Mavericks I can't open Illustrator CS5. (No problem with PS)
    Every opening attemp crashes. May this be possible because of third party plug-ins. (eg. Esko Artwork)
    Help pls.
    Thank you.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
    SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if iTunes crashed, you would enter "iTunes" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
    DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    ☞ If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    ☞ Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • All of sudden, I can't launch iTunes as I get a popup saying "iTunes requires Quicktime 7.5.5 or later". I only have 7.4 currently and the apple site doesn't show anywhere to download Quicktime upgrade. Software Update detects no reqd updates. Help pls??

    all of sudden, I can't launch iTunes as I get a popup saying "iTunes requires Quicktime 7.5.5 or later". I only have 7.4 currently and the apple site doesn't show anywhere to download Quicktime upgrade. Software Update detects no reqd updates. Help pls??

    Here's a link to the QuickTime for Leopard 7.7 installer:
    http://support.apple.com/kb/DL761

  • Popups work in preview but not in compiled help

    Hello,
    I am using Robohelp 8 and have been having problems displaying popups in my compiled help. When I view a topic that contains popup links in the WYSIWYG, I can preview the popup topics with no problem, but when I compile and click on a link that contains a popup, nothing happens. I get a warning in the bottom of the browser window that says "Error on page" with no further details. Is there a setting somewhere that I need to adjust. I have never had this problem before.
    Thank you in advance for any input.
    Adrienne

    Hi there
    The popup functionality depends on the ehlpdhtm.js file. Years ago I had a large project where popups broke in topics that were heavily buried in a deep folder structure. I managed to make them work by amending the path to the js file so it was shorter. This also meant I had to copy the js file to the folder where the popups were broken.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Upgraded pc to ios7 but when syncing to iphone 4 it crashed. Phone is now in recovery mode but it nearly finishes recovery then stops with error 3014. Phone rendered useless until this is fixed. Help pls?

    Upgraded pc to ios 7 but when syncing to iphone 4 it crashed. Phone is now in recovery mode but it nearly finishes recovery then stops with error 3014. Phone rendered useless until this is fixed. Help pls? I have tried many of the suggestions for the error code given. Im getting frustrated. I'm not a techno so would appreciate simple terms or ways of explanation. Thx!!

    I have the exact same issue right now!

  • Sound on my phone has gone so when someone calls me they can hear me but i cant hear them.The ticks cant be heard when you press the keyboard. I've checked the settings and they are ok. can still hear music thru headphones but not without. Any help pls.

    sound on my phone has gone so when someone calls me they can hear me but i cant hear them.The ticks cant be heard when you press the keyboard. I've checked the settings and they are ok. can still hear music thru headphones but not without. Any help pls.

    Hey shahbazfromgbr,
    Thanks for the question, and welcome to Apple Support Communities.
    I understand you are having issues with sound output on your iPhone 4S. For troubleshooting steps, the following article provides the best information:
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    1. Verify that there is nothing plugged in to the headset jack, including headsets, headphones, or adapters.
    2. Make sure the Ring/Silent switch is not switched to silent.
    3. While on the Home screen, adjust the volume buttons. If you see the icon below, indicating that headphones are attached, there may be debris or an object lodged in the headset jack:
    4. Check the headset jack. If there is an object lodged in the headset jack that is not easily removed, have the iPhone serviced to remove object.
    5. For Original iPhone: If there is light debris, such as lint, in the headset jack, try connecting a pair of headphones to the headset jack and then remove the headphones. Repeat this several times to remove the debris.
    6. If you have installed a protective film on the display, either ensure that the receiver is not covered or remove the film completely.
    7. Check the receiver mesh (which is on the top front of the device, above the display). If it appears blocked, use a clean, small, dry, soft-bristled brush to carefully and gently brush away any debris.
    8. If you have paired with a Bluetooth headset that is nearby, either use the headset or turn Bluetooth off (choose Settings > General > Bluetooth).
    9. Restart the iPhone.
    10. If restarting the iPhone doesn't resolve the issue, try restoring the device.
    11. If the issue persists, go to the Service Answer Center - iPhone for information on service.
    Thanks,
    Matt M.

  • Over the last few wks, i have lost several important file. Even the support team has not been able to recover them. Pls offer advice. I use microsoft office on my macbook pro, which is less than a year old.ce.

    Over the last few wks, i have lost several important file. Even the support team has not been able to recover them. Pls offer advice. I use microsoft office on my macbook pro, which is less than a year old.

    pklfromarlington wrote:
    Bob, Hate to steal your thunder but am hooked to an external hard drive using Time Machine and er information is where it shoudl be. Yes, I have combed the files, used Finder and any other tools I know.
    You did not steal my thunder. You asked for advice, I provided advice. I assumed that since you nor the "support team" could find your files that you did not have any backup. You should have told us you do regular backups. We have no way to know otherwise unless you tell us.

Maybe you are looking for