Can't get two things to line up

Here is what I am trying to do (sorry if this the wrong forum)
http://i170.photobucket.com/albums/u255/babo911/myname.gif
that is what is where i want my name..... can't get it next to the book button
/*     Chapter 5:     Reserve a Party Room
     Programmer:
     Date:          04/02/2007
     Filename:     Reservations.java
     Purpose:     This program creats a windowed application to reserve a party room.
                    It calls an external class named Roos.
import javax.swing.JOptionPane;
import java.awt.*;
import java.awt.event.*;
public class Reservations extends Frame implements ActionListener
     Color lightRed = new Color(255, 90, 90);
     Color lightGreen = new Color(140, 215, 40);
Rooms room = new Rooms(5,3);
     Panel roomPanel = new Panel();
          TextArea roomDisplay[] = new TextArea[9];
     Panel buttonPanel = new Panel();
          Button bookButton = new Button("Book Room");
     Panel inputPanel = new Panel();
          Label myNameLabel = new Label ("Brian A. Barnes 04/02/2007");
          Label custNameLabel = new Label("Name:");
          TextField nameField = new TextField(15);
          Label custPhoneLabel = new Label("Phone number:");
          TextField phoneField = new TextField(15);
          Label numLabel = new Label("Number in party:");
          Choice numberOfGuests = new Choice();
          CheckboxGroup options = new CheckboxGroup();
               Checkbox nonSmoking = new Checkbox("Nonsmoking",false,options);
               Checkbox smoking = new Checkbox("Smoking",false,options);
               Checkbox hidden = new Checkbox("",true,options);
     public Reservations()
          //set Layouts for frame and three panels
          this.setLayout(new BorderLayout());
               roomPanel.setLayout(new GridLayout(2,4,10,10));
               inputPanel.setLayout(new FlowLayout());
buttonPanel.setLayout(new FlowLayout());
          //add components to room panel
          for (int i=1; i<9; i++)
               roomDisplay[i] = new TextArea(null,3,5,3);
               if (i< 6)
                    roomDisplay.setText("Room " + i + " Nonsmoking");
               else
                    roomDisplay[i].setText("Room " + i + " Smoking");
               roomDisplay[i].setEditable(false);
               roomDisplay[i].setBackground(lightGreen);
               roomPanel.add(roomDisplay[i]);
          //add components to button panel
          buttonPanel.add(bookButton);
          //add components to input panel
          inputPanel.add(custNameLabel);
          inputPanel.add(nameField);
          inputPanel.add(custPhoneLabel);
          inputPanel.add(phoneField);
          inputPanel.add(numLabel);
          inputPanel.add(numberOfGuests);
               for(int i = 8; i<=20; i++)
                    numberOfGuests.add(String.valueOf(i));
          inputPanel.add(nonSmoking);
          inputPanel.add(smoking);
          //add panels to frame
          add(buttonPanel, BorderLayout.SOUTH);
          add(inputPanel, BorderLayout.CENTER);
          add(roomPanel, BorderLayout.NORTH);
          bookButton.addActionListener(this);
          add(myNameLabel);
          //overriding the windowClosing() method will allow the user to click the Close button
          addWindowListener(
               new WindowAdapter()
               public void windowClosing(WindowEvent e)
                    System.exit(0);
     } //end of constructor method
     public static void main(String[] args)
          Reservations f = new Reservations();
          f.setBounds(200,200,600,300);
          f.setTitle("Reserve a Party Room");
          f.setVisible(true);
     } //end of main
     public void actionPerformed(ActionEvent e)
          if (hidden.getState())
               JOptionPane.showMessageDialog(null,"You must select Nonsmoking or Smoking.","Error", JOptionPane.ERROR_MESSAGE);
          else
          int available = room.bookRoom(smoking.getState());
               if (available > 0) //room is available
                    roomDisplay[available].setBackground(lightRed); //display room as occupied
                    roomDisplay[available].setText(
                                                            roomDisplay[available].getText() +
                                                            "\n" +
                                                            nameField.getText() +
                                                            " " +
                                                            phoneField.getText() +
                                                            "\nparty of " +
                                                            numberOfGuests.getSelectedItem()
                                                       ); //display info in room
                    clearFields();
               else //room is not available
                    if (smoking.getState())
                         JOptionPane.showMessageDialog(null,"Mohammed Rafique March 17, 2007\nSmoking is full.","Error",JOptionPane.INFORMATION_MESSAGE);
                    else
                         JOptionPane.showMessageDialog(null,"Mohammed Rafique March 17, 2007\nNonsmoking is full.","Error",JOptionPane.INFORMATION_MESSAGE);
                    hidden.setState(true);
               } //end of else block that checks the available room number
          } //end of else block that checks the state of the hidden option button
     } //end of actionPerformed() method
     //reset the text fields and choice component
     void clearFields()
          nameField.setText("");
          phoneField.setText("");
          numberOfGuests.select(0);
          nameField.requestFocus();
          hidden.setState(true);
     } //end of clearFields() method
} //end of Reservations class
ANy help would be great, thank you in advance

Here is what I am trying to do (sorry if this the
wrong forum)
http://i170.photobucket.com/albums/u255/babo911/myname
.gif
that is what is where i want my name..... can't get
it next to the book buttonWow i sound retarded, bad morning. Let me re-iterate I am trying to make my name appear next to the book button as seen in picture. Can't seem to get the code to do that. It compiles fine just that little thing.

Similar Messages

  • I can't get two "room" objects to "glue" together in a floor plan

    I can 't get two rooms to "glue" together in Visio 2010.
    I've tried several ways to drag the "room" objects and handles around the floor plan but not only do the rooms not glue to each other, they snap or glue to other things (like ruler divisions), making it almost impossible to get the room walls to
    overlap cleanly.
    I found a forum posting somewhere where the respondent only suggested verifying default settings and I matched mine up with those, but that thread went cold without a solution.
    What settings are required, and what steps are required, to glue two "room" objects together in Visio 2010?
    Wayne Erfling (aka Cornan The Iowan)

    Thanks, George,
    You began your message with a question, but I think you understand "why I would want rooms to snap together", thus your work-around.
    Nonetheless, the "big answer" is that I want to set the
    room dimensions for each room individually (we're using Visio to place our belongings within each room) and then snap the rooms together to "build the house".
    I started out by creating several rooms with correct dimensions (which I then locked with Developer / Protection).
    That's when I discovered that the rooms "wanted" to snap to ruler divisions and geometry instead of to each other.
    It's pretty clear that the room design templates / stencils in Visio 2010 have limited functionality - the "convert to walls" feature, for example, generates some pretty horrendous artifacts.
    The second most irksome problem is connector routing - I've spent an hour or two doing nothing more than removing excess connection points because connectors insist on routing around some shapes, generating bizarre, wandering paths that I can't seem to disable.
    But still, Visio 2010 is better for this purpose than CorelDraw and far better than "SmartDraw", and I don't have any CAD software.  I just doubt that Microsoft has made Visio 2013 any better - Microsoft
    seems to flip between simple maintenance releases and "grand" rewrites, failing to embrace anything like "continuous improvement".
    Finally, the ribbon, a "blonde" solution at best, is particularly horrible in Visio - much of my work on this drawing has required me to switch among ribbon tabs.
    Sorry for the rant, George, but anything I can learn to help with these issues will make the remainder of the job better.
    Wayne Erfling (aka Cornan The Iowan)

  • How can I get two missing numbers on a iTunes card

    How can I get two missing numbers on a iTunes card

    "Get help",just below the form space where I entered the code. Once I clicked "Get Help", it added another line to the form where I could enter  THE NUMBER ON THE BOTTOM LEFT CORNER on the back of the card. I entered as much of the I scratch-off code I could read, along with the serial number.

  • How can I get this thing to work without apple id? :(

    I've got Iphone 4s from my boss instead of my paycheck due to a bankrot. And he doesn't remember his apple id,password or e mail he used to activate Iphone.. How can I get this thing to work without it? :/

    You can't.
    Sounds like it he gave you a stolen iPhone or at least a worthless one.

  • HT201303 How do I get my security passwords I have forgotten them and can not get envy thing with out them

    How do I get my security passwords I have forgotten them and can not get envy thing with out them

    Fastest way is by contatcing support. This is because youc an't reset the questions on your end if you forgot the original answers.
    https://expresslane.apple.com/
    Follow these steps:
    All Products and Services > iTunes > iTunes Store > Account Management > iTunes Store account security
    Answer the questions and if required sign in with your Apple ID and password - same one you used to log in on this support forum.
    You will find an option to send an email to Apple on that page. Indicate that you forgot the answers to your security questions and wait for iTunes support to reply.

  • Why I can't get a sticker in Line application after payment

    I can't get a sticker in Line application after I purchased it.

    I can't get a sticker in Line application after I purchased it.

  • TS1424 I have an HP Elite Book 2540p with Windows XP and can not get the iTuneStore on line.  I keep getting a message that says I don't have an internet connect, but I am connected.  Any suggestions?

    I can not get iTunes Store on line.  I keep getting a message that says I am not connected to the internet, but I know I am.  I have to connect from three locations with the same results.  Any suggestions?

    Hello bigblue8
    Check out the following articles for troubleshooting access to the iTunes Store. The first one will probably get you started enough to get it taken care of. If it does not the follow up article should definitely solve it for you.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Get two things fixed on my iPhone 5 by apple

    I have dust under my iphone 5 camera lens and apple has sent me a empty box to put my iPhone 5 in and send it to get it repaired, but is it possible to get two things fixed?, because I have notised lately that my iphones ON/off button is malfunctioning? And I cant find a place to tell apple that...

    So then I have nothing to be worried about?

  • How can I get two hand drawn images to line up?

    How can I get these two images to line up? I am stumped.....I have used auto-align, scale, etc.....but I get one side right then other side not aligned.

    You are dealing here with a difference in image size between the top and bottom sections and perhaps a difference in verticality.
    Consider the bottom units. The left side should shift right and the right side should shift left in order to align.
    Your next move would be the adjust the size of one of the layers by using Edit > Transform > Scale. Hold down the Option key to maintain proportion.

  • Another user who can't get this thing started, Listener will not operate!!!

    I installed from root, used port 8085 for the database (8080 used by Tomcat) and 1521 for the listener. Logged out, log back in as user oracle. Takes three full minutes to "start" the listener, but netstat -a does not show any listener on port 1521, despite listener startup saying "Command successful". Starting database, then 'lsnrctl status' returns the following:
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 19-FEB-2007 19:16:16
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 19-FEB-2007 19:11:20
    Uptime 0 days 0 hr. 4 min. 55 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Listener Log File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=solera.homedns.org)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XE" has 1 instance(s).
    Instance "XE", status BLOCKED, has 1 handler(s) for this service...
    Service "XE_XPT" has 1 instance(s).
    Instance "XE", status BLOCKED, has 1 handler(s) for this service...
    The command completed successfully
    All firewalls are completly disabled, except for my router which has ports 8085 and 1521 open. So, 1) Where is the listing for the listening in netstat -a? and 2) Why are my database services blocked? I've been trying for a week to get this thing started, I need it for work. I can log in to the database through SqlPlus, so it is there and running fine, but the listener is not working, and I cannot get to the database home page.

    Checked the listener log. Doesn't look good. Keep saying host or object does not exist!!
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production on 19-FEB-2007 18:56:13
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Log messages written to /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Trace information written to /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/trace/listener.trc
    Trace level is currently 0
    Started with pid=3711
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=solera.homedns.org)(PORT=1521)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production on 19-FEB-2007 19:11:20
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Log messages written to /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Trace information written to /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/trace/listener.trc
    Trace level is currently 0
    Started with pid=3384
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=solera.homedns.org)(PORT=1521)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    19-FEB-2007 19:14:29 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=solera.homedns.org)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    19-FEB-2007 19:16:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=solera.homedns.org)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    19-FEB-2007 19:16:15 * service_register * XE * 0
    19-FEB-2007 19:16:16 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=solera.homedns.org)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    19-FEB-2007 19:16:17 * service_update * XE * 0
    19-FEB-2007 19:16:23 * service_update * XE * 0
    19-FEB-2007 19:16:32 * service_update * XE * 0
    19-FEB-2007 19:16:35 * service_update * XE * 0
    19-FEB-2007 19:16:37 * ping * 0
    Error listening on: (Description=(Address=(Protocol=tcp)(Port=8085)(Host=localhost))(Presentation=HTTP)(Session=RAW))
    19-FEB-2007 19:16:38 * service_update * XE * 12545
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    19-FEB-2007 19:16:41 * service_update * XE * 0
    19-FEB-2007 19:16:44 * service_update * XE * 0
    19-FEB-2007 19:26:47 * service_update * XE * 0
    19-FEB-2007 19:27:44 * service_update * XE * 0
    19-FEB-2007 19:34:02 * service_update * XE * 0
    19-FEB-2007 19:41:47 * service_update * XE * 0
    19-FEB-2007 19:46:44 * service_update * XE * 0
    19-FEB-2007 19:46:59 * service_update * XE * 0
    19-FEB-2007 19:47:02 * service_update * XE * 0
    19-FEB-2007 19:47:10 * service_died * XE * 12537
    19-FEB-2007 19:47:26 * service_register * XE * 0
    19-FEB-2007 19:47:26 * service_update * XE * 0
    19-FEB-2007 19:47:32 * service_update * XE * 0
    19-FEB-2007 19:47:38 * service_update * XE * 0
    19-FEB-2007 19:47:41 * service_update * XE * 0
    Error listening on: (Description=(Address=(Protocol=tcp)(Port=8085)(Host=localhost))(Presentation=HTTP)(Session=RAW))
    19-FEB-2007 19:47:44 * service_update * XE * 12545
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    19-FEB-2007 19:47:50 * service_update * XE * 0
    19-FEB-2007 19:48:32 * service_update * XE * 0
    19-FEB-2007 19:48:38 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=solera.homedns.org)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    19-FEB-2007 19:58:32 * service_update * XE * 0
    19-FEB-2007 20:00:02 * service_update * XE * 0
    19-FEB-2007 20:00:41 * service_update * XE * 0
    19-FEB-2007 20:01:42 * service_update * XE * 0
    19-FEB-2007 20:02:49 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=solera.homedns.org)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    19-FEB-2007 20:11:18 * service_update * XE * 0
    19-FEB-2007 20:14:06 * service_update * XE * 0
    19-FEB-2007 20:15:12 * service_update * XE * 0
    19-FEB-2007 20:17:27 * service_update * XE * 0
    19-FEB-2007 20:18:36 * service_update * XE * 0
    19-FEB-2007 20:21:41 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=solera.homedns.org)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    19-FEB-2007 20:28:36 * service_update * XE * 0
    But here is my hosts file:
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    ::1     solera.homedns.org     solera     localhost.localdomain     localhost 127.0.0.1
    Looks like they are there.

  • Can't get two ipads to transfer apps

    I have two ipads for work.  I am unable to transfer apps  from one to the other.  I have done this before  but one one of them when I hit "Purchased" it states that I cannot connect to the itunes store.  I have even tried to transfer by hooking my ipad to my computer.  What am I doing wrong? 

    Here is what I am trying to do (sorry if this the
    wrong forum)
    http://i170.photobucket.com/albums/u255/babo911/myname
    .gif
    that is what is where i want my name..... can't get
    it next to the book buttonWow i sound retarded, bad morning. Let me re-iterate I am trying to make my name appear next to the book button as seen in picture. Can't seem to get the code to do that. It compiles fine just that little thing.

  • URGENT HELP IS NEEDED!!!!!! How can i get two applet to communicate via a j

    I am writing a program that should allow me to communicate between applet. The applet is loaded via the a web site, but i can't get that to work, so i am using appletviewer instead.
    I want to establish a connection between the applets thus allowing to chat.
    So far i can open both applets up, (using localhost), but the applet isn't able to establish the connection and i have to turn off one of the applet window, before i get a connection, but it won't do anything after that.
    I know it is a security problem, but how can i fix this problem.
    Please can you help, i am in difficult position
    Junaid

    I think what u are trying to do is some peer-to-peer communication using applets.
    The thing is the applet knows ( via getCodeBase and getDocumentBase methods) from where it was launched. It has no knowledge of where other applets from the same server may be residing.
    It looks to me that you will need to do some server-side coding as well..
    On possible solution would be to
    A) Install and run a Tomcat Server
    B) Tomcat can be used as a webserver in limited way .. (refer it documentation ) by defaul it runs on port 8080
    C) So you can say http://localhost:8080/
    D) Use this launch the applets
    E) Using HTTP Tunneling ( Read about it in Servlets ) you can set up Tomcat to broker messages between the 2 applets
    Also from you question it appear that both the applets try to hook on the same port, now on one computer (localhost) one port can be used by one socket . Try to get them to use different ports then the appletviewer problems should solve it self.
    To use different ports without making 2 different applets , simeply pass the port as a PARAM to the applet

  • How can I get two cameras to aquire at the same time rather than one after the other

    I've got (2) PCI-1428 cards, Two Uniq Vision cameras with power supplies, cameralink cables, and IMAQ-D6804 cables. Both cameras are being triggered by the same switch, but they are not grabbing images at the same time. Right now it is triggering one camera as desired, but the other doesn't aquire until after the time-sensitive event. On the next test, the two camera will trade these roles. I am using 2 cards, so they should acquire at the same time. How do I change it so that they grab images at the same time? Thank you for your help.
                                                      ​            Deater

    Hi Deater,
    Thank  you for your post.  Triggering from two cameras at the same time may be a little trickey, but it can be done.  There are multiple ways to tackle this problem.  If you have a RTSI cable, you can RTSI the two PCI boards together internally to lock them in HW.  You should also be able to use the triggering line on each board.
    One of the best methods for triggering multiple boards is called GenLocking.  The following Developer Zone page describes GenLocking more fully and has several examples to help you out: http://zone.ni.com/devzone/conceptd.nsf/webmain/a3​87b5c0ac6f6f4e86256c87005fcddf.
    The "HL Grab with two boards.vi" shipping example is also a good example of the code needed to trigger two individual boards in LV.  I found a similar post that may be of some help as well: http://forums.ni.com/ni/board/message?board.id=230​&message.id=2691&requireLogin=False
    Hope this helps!
    Thanks,
    Scott Savage
    National Instruments
    Applications Engineering
    www.ni.com/support

  • Can't get rid of vertical line in Pages '08

    I add a text box to a blank page and paste in or type in some text.
    There's a verticle line running the height of the paragraph (or single line) that I can't get rid of.
    Also, the text appears blue even though it's supposed to be black. When I select the text and check the color it says it's black.

    Neal Fox wrote:
    OK. Opened a new document and copies with match style. The text comes out right.
    Then I figured I could copy that and paste and match style into the original document. Nope!
    Once it's in the original it comes out blue and with the line.
    If it helps, the original is nothing but jpegs on every page. It's a child's picture book. I'm trying to put the front pages in, which are only text. I didn't copy from the internet, but typed into a text box. No pasting from another document either.
    Thanks.
    Neal,
    When you did the Copy and Paste and Match Style back into the "Original Document", that reverted the style. What you should have done when returning was a straight Paste.
    Jerry

  • Can't get two airport expresses to work simultaneously

    Just added a second airport express (both 802.11n, both updated) solely to listen to music from iTunes. Non apple router. Both are working fine separately with green light on but when I try to play through both at once (using "multiple speakers") there are long disruptions or "drop outs" after a few seconds of playing.
    Can anyone please help. Thanks in advance.

    Welcome to the discussions!
    You will need to do some troubleshooting to see if you can isolate the cause for the drop outs. Since the troubles began when you added the second Express, move the second device close to your router and plug in a pair of headphones to see if the signal is steady at that location. If so, move the Express further away in several steps. Keep testing at different locations. If you start to hear the drop outs, that would indicate one of two things:
    1) There is not adequate wireless signal strength in the area where the 2nd Express is located. You might investigate to see whether your router manufacturer offers a wireless extender to provide more signal strength in a remote location. It is also possible to connect the Express to your router using ethernet. If you can't run an ethernet cable to the Express location, take a look at ethernet powerline adapters to accomplish the same task.
    2) Interference from a cordless phone or another wireless network is causing problems. Download Air Radar and use it's Scan function to locate other wireless networks in your area. The application is not free, but there is a free trial period. If you see any other networks on a close channel to your wireless network, change the wireless channel on your wireless router to another channel that is as far away as possible from the channels you see.

Maybe you are looking for