I have aproblem

My 4 g network is not supporting let it I have a problem with communication, messages, what do I do please help

Post in your native language so that the statement makes some logical sense.
Ask a question, as that is what suport forums are for.

Similar Messages

  • Hello sir i have aproblem in my iphone i cant sigin in when i write my apple id

    hello sir!
    i have boght a new iphone 5s and i gaive my 4s to my brother. he make arestor to the 4s iphone but he faced aproblem that he cant sing in when he want to activat his phone. i used the sane apple ide to my new phone 5s and it works perfect, but when we used the same id in 4s phone its dosent work so can you help me please.
    thank 

    You need to use the iCloud acct and pw that was initially set up on that phone when you updated to iOS 7.

  • I have aproblem with billing information my visa card is refused but i works in another account

    Hello every body i have a problem with my billing information  . Its refused my visa card , any way my visa card works well in another account

    Hello, FridayWednesday. 
    Thank you for visiting Apple Support Communities.
    If you are receiving a message to Contact Apple Support, I would recommend reaching out to us via the link below. 
    Contact Apple for support and service
    http://support.apple.com/kb/he57
    Cheers,
    Jason H.

  • I have aproblem please help me

    i use developer 10g suite2
    and when i use form builder
    and run the form it give me this message ORA-12560: TNS:protocol adapter error
    i am a student and i have a single pc in my home i start OC4J but it does not work please tell me why it deos not work

    "ORA-12560: TNS:protocol adapter error" usually suggests that you have not included the database name (alias) when connecting or have a problem in tnsnames.ora or sqlnet.ora.

  • HT1937 I have aproblem with appstore

    i have a iphone5s. And i update to ios8.0.2 . Then the problem came to me . Icant download any thing and i cant make any update for any apps .please i need a help here.

    Hi Mohammedalbloushi,
    If you are having issues with being unable to update the apps on your iPhone, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    iOS: Force an app to close
    Next, I would try restarting the iPhone -
    Turn your iOS device off and on (restart) and reset
    If the issue is still present, you may want to restore the iPhone as a new device -
    iOS: How to back up your data and set up your device as a new device
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • I have aproblem down loading ADOBE READER can you help

    I am having difficulty in down loading ADOBE READER can you advice the course of actio I need to take to down load this programme
    Thank you for your assistance
    Raymond G Whysall

    You can try using the full offline Reader installer from
    http://get.adobe.com/reader/enterprise/

  • I have aproblem in downloading videos and saving images

    i use firefox long time ago and dowenloaded many things before but sudenlly i cann't find any dowenload or save word either on toolbar or by right click... thank you

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Using the RealPlayer plugin with Firefox]]
    Also checkout this thread -> https://support.mozilla.org/en-US/questions/917244
    Check and tell if its working.

  • I have aproblem in my code

    this is aprogram to paint different shape by using only the drawline method its composed of two classes one contain the frame and buttons and the other contain the panel for drawing I dont know why when I run the programe I get this erorr messags and wats this error message mean ?
    Exception in thread "main" java.lang.NullPointerException
         at paint.Paint.<init>(Paint.java:56)
         at paint.Paint.main(Paint.java:37
    package paint;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.JTextArea;
    public class Paint {
        JFrame frame = new JFrame();
        JPanel panel = new JPanel();
        JButton line = new JButton("Line");
        JButton triangle = new JButton("Triangle");
        JButton rectangle = new JButton("Rectangle");
        JButton regularpolygon = new JButton("Regular Polygon");
        JTextArea regularpolygonno = new JTextArea(2,4);
        JButton circle = new JButton("Circle");
        JButton ellipse = new JButton("Ellipse");
        JButton polyline = new JButton("Polyline");
        JButton polygon = new JButton("Polygon");
        JMenuBar mbar = new JMenuBar();
        JMenu file = new JMenu("File");
        JMenuItem save = new JMenuItem("Save");
        JMenuItem load = new JMenuItem("Load");
        ppanel PaintPanel;
        int result;
        public static void main(String[] args) {
                Paint p = new Paint();
        public Paint (){
            mbar.add(file);
            file.add(load);
            file.add(save);
            panel.setPreferredSize(new Dimension(50, 100));
            panel.setBackground(Color.YELLOW);
            panel.add(line);
            panel.add(triangle);
            panel.add(rectangle);
            panel.add(regularpolygon);
            panel.add(regularpolygonno);
            panel.add(polyline);
            panel.add(polygon);
            panel.add(circle);
            panel.add(ellipse);
            PaintPanel.setPreferredSize(new Dimension(600, 600));
            frame.setTitle("Paint");
            frame.setSize(1200,1200);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setJMenuBar(mbar);
            frame.add(panel, BorderLayout.WEST);
            frame.add(PaintPanel, BorderLayout.EAST);
            frame.pack();
            frame.setVisible(true);
            line.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {
                line_actionPerformed(e);
            triangle.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {
                triangle_actionPerformed(e);
            rectangle.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {
                rectangle_actionPerformed(e);
            regularpolygon.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {
                regularpolygon_actionPerformed(e);
            circle.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {
                circle_actionPerformed(e);
            ellipse.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {
                ellipse_actionPerformed(e);
            polyline.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {
                polyline_actionPerformed(e);
            polygon.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {
                polygon_actionPerformed(e);
        public void actionPerformed(ActionEvent e) {
                if(e.getActionCommand()=="Load"){
                System.out.println("A Seat Reserved");            
        private void line_actionPerformed(ActionEvent e) {
        result=1;
        System.out.println(result);
        private void triangle_actionPerformed(ActionEvent e) {
        result=2;
        System.out.println(result);
        private void regularpolygon_actionPerformed(ActionEvent e) {
        result=3;
        System.out.println(result);
        private void circle_actionPerformed(ActionEvent e) {
        result=4;
        System.out.println(result);
        private void ellipse_actionPerformed(ActionEvent e) {
        result=5;
        System.out.println(result);
        private void rectangle_actionPerformed(ActionEvent e) {
        result=6;
        System.out.println(result);
        private void polyline_actionPerformed(ActionEvent e) {
        result=7;
        System.out.println(result);
        private void polygon_actionPerformed(ActionEvent e) {
        result=8;
        System.out.println(result);
        public int callresult(){
                return result;
    }

    this code is just acompelete for the second class in 2nd replay
        @Override public void paintComponent(Graphics g ){
        super.paintComponents(g);
        for(i=0 ; i< al.size(); i++){
                if (drawLines[4] == 1){
    pressed = false;
    if(pressed1 == 1 && drawLines[i][4] != 1){
    pressed1 = 0;
    g.drawLine(drawLines[i][0],drawLines[i][1],xplgn,yplgn);
    System.out.println("problem here1");
    }else
    g.drawLine(drawLines[i][0],drawLines[i][1],drawLines[i][2],drawLines[i][3]);
    }else if (drawLines[i][4] == 2 ){
    pressed = false;
    pressed1 = 0;
    g.drawLine(drawLines[i][0],drawLines[i][1],drawLines[i][2],drawLines[i][1]);
    g.drawLine(drawLines[i][2],drawLines[i][1],drawLines[i][2],drawLines[i][3]);
    g.drawLine(drawLines[i][2],drawLines[i][3],drawLines[i][0],drawLines[i][3]);
    g.drawLine(drawLines[i][0],drawLines[i][3],drawLines[i][0],drawLines[i][1]);
    }else if(drawLines[i][4] == 3){
    pressed = false;
    pressed1 = 0;
    for(int l=0;l<drawLines[i][5]; l++){
    double r =Math.sqrt(Math.pow(drawLines[i][0]-drawLines[i][2],2)+Math.pow(drawLines[i][1]-drawLines[i][3],2)) ;
    double x11 = r*Math.cos((2*pi/drawLines[i][5])*(l));
    double y11 = r*Math.sin((2*pi/drawLines[i][5])*(l));
    double x22 = r*Math.cos((2*pi/drawLines[i][5])*(l+1));
    double y22 = r*Math.sin((2*pi/drawLines[i][5])*(l+1));
    int sumx1 = drawLines[i][0]+(int)x11;
    int sumy1 = drawLines[i][1]+(int)y11;
    int sumx2 = drawLines[i][0]+(int)x22;
    int sumy2 = drawLines[i][1]+(int)y22;
    g.drawLine(sumx1,sumy1,sumx2,sumy2);
    }else if(drawLines[i][4] == 4) {
    pressed = false;
    pressed1 = 0;
    int n =360;
    for(int l=0;l<n; l++){
    double r =Math.sqrt(Math.pow(drawLines[i][0]-drawLines[i][2],2)+Math.pow(drawLines[i][1]-drawLines[i][3],2)) ;
    double x11 = r*Math.cos((2*pi/n)*(l));
    double y11 = r*Math.sin((2*pi/n)*(l));
    double x22 = r*Math.cos((2*pi/n)*(l+1));
    double y22 = r*Math.sin((2*pi/n)*(l+1));
    int sumx1 = drawLines[i][0]+(int)x11;
    int sumy1 = drawLines[i][1]+(int)y11;
    int sumx2 = drawLines[i][0]+(int)x22;
    int sumy2 = drawLines[i][1]+(int)y22;
    g.drawLine(sumx1,sumy1,sumx2,sumy2);
    }else if(drawLines[i][4] == 5) {
    pressed = false;
    pressed1 = 0;
    int n =360;
    for(int l=0;l<n; l++){
    double a = Math.abs(drawLines[i][0] - drawLines[i][2]);
    double b = Math.abs(drawLines[i][1] - drawLines[i][3]);
    double x11 = a*Math.cos((2*pi/n)*(l));
    double y11 = b*Math.sin((2*pi/n)*(l));
    double x22 = a*Math.cos((2*pi/n)*(l+1));
    double y22 = b*Math.sin((2*pi/n)*(l+1));
    int sumx1 = drawLines[i][0]+(int)x11;
    int sumy1 = drawLines[i][1]+(int)y11;
    int sumx2 = drawLines[i][0]+(int)x22;
    int sumy2 = drawLines[i][1]+(int)y22;
    g.drawLine(sumx1,sumy1,sumx2,sumy2);
    }else if(drawLines[i][4] == 6){
    pressed = false;
    pressed1 = 0;
    int n =4;
    for(int l=0;l<n; l++){
    double r =Math.sqrt(Math.pow(drawLines[i][0]-drawLines[i][2],2)+Math.pow(drawLines[i][1]-drawLines[i][3],2)) ;
    double x11 = r*Math.cos((pi/n)-(2*pi/n)*(l));
    double y11 = r*Math.sin((pi/n)-(2*pi/n)*(l));
    double x22 = r*Math.cos((pi/n)-(2*pi/n)*(l+1));
    double y22 = r*Math.sin((pi/n)-(2*pi/n)*(l+1));
    int sumx1 = drawLines[i][0]+(int)x11;
    int sumy1 = drawLines[i][1]+(int)y11;
    int sumx2 = drawLines[i][0]+(int)x22;
    int sumy2 = drawLines[i][1]+(int)y22;
    g.drawLine(sumx1,sumy1,sumx2,sumy2);
    }else if(drawLines[i][4] == 7){
    pressed1 = 0;
    if(pressed == false){
    g.drawLine(drawLines[i][0],drawLines[i][1],drawLines[i][2],drawLines[i][3]);
    pressed = true;
    }else {
    g.drawLine(drawLines[i][0],drawLines[i][1],drawLines[i][2],drawLines[i][3]);
    } else if (drawLines[i][4] == 8) {
    pressed = false;
    if(pressed1 == 0){
    g.drawLine(drawLines[i][0],drawLines[i][1],drawLines[i][2],drawLines[i][3]);
    xplgn = drawLines[i][0];
    yplgn = drawLines[i][1];
    pressed1 = 1;
    }else {
    g.drawLine(drawLines[i][0],drawLines[i][1],drawLines[i][2],drawLines[i][3]);

  • HT1937 i have aproblem with my Mobile Carrier

    i am living in kingdom  of saudi arabia, i purchased an iPhone 4s from ZAIN as package with free Minutes and SMS but when i was unboxing thee device i found out Manufacturing defect. so i returned the device back to ZAIN retail where i purchased it first time. the Maintenance responsible person told me that thay will open ticket in apple to replace the device because it is in first 90 days. after 2 weeks i checked with Apple Dubai they told me there is no any processes on your devices. what should i do ?

    Dear Mr. Sampson,
    i tried to get mobile number for someone in Management level. but without hope. ZAIN company has too much routine procedures. i really regret for dealing with this Reseller. so i need someone from Apple to handle this issue. is that possible?

  • I connect wifi i have a problem error message shows no IP ADDRESS

    i connect WIFI i have aproblem error message shows dont have ip address. How to solve this problem

    Sounds like a bogus pop up. In any case power down your Mac, your modem, your router. Then power back up in 1 minute sequence; modem, router, Mac.

  • I think I have been cheated!!!

    I have aproblem with my N95-8G the internal memory is not working!!
    when i copy any thing to it it says it is full although i have formated it many times
    when i connected it to PC it shows only external memory of 64 M
    my friends telling me it is a fake N95 phone Chinees or korian one
     ooooh!!! no I this real!!! how can i be sure
    by the way how can i change the cover of my phone
    Solved!
    Go to Solution.

    The easiest way to see if it's a fake is to connect it to your computer using the USB cable that was in the box.
    It will give you a list of choices and if one of them is "webcam" or "com port" then it is a fake.
    Also dial *#0000# and post here exactly what it says, word for word in the same layout as on screen.
    Message Edited by psychomania on 12-Mar-2009 09:50 AM

  • HT1349 im trying to udate my itunes on the computer an im having problems doin could you assit me with it please as its asking for a serail number an i carnt put one in as i dont have one but i do have a i phone 4 do i use that number ?

    hi
    im trying to update my itunes on the computer as ive been told by t mobile that will help me sort my phone out which is a i phone 4..but im haveing problems doing it an i was wouldering if you could assit me with it please

    hi could you assit me please with updating my itunes account on thw computer as i have aproblem conecting my phone to the internet an t mobil have said i may need to update the itunes on the computer so please cou,d you assit me please thank you

  • Can some one help me please / comment box ?

    hi im very new to dreanweaver and i have a big problem, I
    have a uni project to be in on friday and i need to put in a
    comment box which links to my email and i cant find a clear
    tutorial and is ther a way of doing it with out complicated html?
    I also have aproblem with making my pages fit or expand to th
    different screen sizes. i imported the back grounds fas png from
    illustrator is ther conversion i nead to apply ?
    Can some please please shed some light please

    Well without seeing your design, I can tell you that in order
    to make your webpage expand and contract based on the screen
    resolution will require that you use possibly repeating backgrounds
    in table cells or layers that have widths based on percentages
    rather than pixels.
    As far as a comments box goes, based on your description it
    sounds like you need a contact form to submit information to an
    email account as opposed to a comments box (
    http://www.shoutpro.com/ - that
    is a comments box).
    If you need a form to mail to an email you should consider
    what you can run on your server. More than likely, even if PHP is
    available it would be blocked by your server so you would have to
    use cgi for mail. So I would recommend trying this script:
    http://www.scriptarchive.com/formmail.html
    It is fairly simple, you just have to point your form to the
    CGI file that is include in the script. Then there are instructions
    on the site telling you how to edit that CGI file to send an email
    to where you need it to go. Hopefully this is what you are looking
    for. If you have any questions about it feel free to post
    back.

  • Verizon iPhone 4 Battery Draining issue (continued)

    This is not a question or help topic but more of an announcement. Here's my story:
    I preordered the phone on it's February 3rd date and recieved the phone on February 7th. I did as Apple instructs when you get a new idevice (drain the battery down till it dies then recharge it to 100%.) I did that and began to use it, and keep in mind this was not heavy usage at all. I didn't have any app store apps installed at all, I set all settings in the phone to the best configuration for battery saving (truning off push notifications, turning off location services for apps you do not need, no bluetooth, no VPN, brightness at 33%, ect.) Now I thought the battery was strange as I had made my first phone call on 100% battery and it was a 5 minute call. I kid you not I lost 10% battery from one phone call. I thought that was rediculous so I went into my local verizon store and had it replaced. I did the same as I did last time and let the battery drain till it died and filled it to 100%. Tried the phone out and still had the same issue. I went back in and got my 3rd iphone 4. Did the same steps as before and drained then filled it. Yet again, I still had troubles with 3 phones in a row. I cantacted apple and got in contact with an apple engineer named Andrew. He sent me a file that they created that monitors what all is being used by the battery and monitors background processes and applications. I let that run for 24 hours and sent the battery loggin file back to Andrew. They reviewed the log and gave me a call the next day. They told me they did find some very significant battery draining and advised me to go to the nearest apple store ASAP and have the phone checked out. I drove 2 hours to the nearest store for them to just tell me the phone is fine (yotta yotta yotta) and they did a hard reset and restore on the phone (which I could have done from home on my computer and save the gas they made me waste driving for a total of 4 hours!) I tried contacting Andrew agiain but Andrew did not reply to any email sent to him nor return my calls. I got the point that he didn't want to deal with me anymore so I then decided to go the Verizon route. I called Verizon tech support and was transferred to a teir 2 representative. I told her my story, how many replacements I had, and how bad the battery life was. I told how my grandmother has an iphone 4 and I sat down comparing the 2 (battery life wise) and she chewed me out saying things like, "How dare you compare AT&T and Verizon!" I didn't want to listen to her chewing me out so I hung up. The next day I gave apple a call once again and they told me things I had already heard several times so I hung up. I called Verizon back and they said ok let's send you a replacement phone. Well the replacement phone came and wouldn't ya know it? The phone still had the same problem and on top of that they only sent me a phone. No box, no headphones, no USB cable, no charger. I called Verizon about this and asked why they only sent me a phone and they said, "Well you get to keep the phone but we want the other things back. The box, headphones, charger, USB cable, ect." I told them no and that they could have their refurbished phone back. This phone was not even refurbished. the reason I kow that is because it had someone's name written in the phone and it was still on 4.2.5. Had it been refurbished they would have done a fresh restore and update as 4.2.5 was deemed obsolete. That was very insulting in my opinion. So I sent that back and contacted apple one last time. I asked what other options I had as I was stressed and did not want to hear the same things I have already heard. they said they could send me a new phone free of charge and have me send back my current phone. I agreed to give it one last shot but I am still not confident that this phone will be any different.
    Now that's my story. Now let me go into a discussion. I have been doing my own litle "investigation on this phone to see what is making this phone drain so bad. I took a look at a report from iFixit.com and they revealed some pretty interesting things built into the Verizon iPhone. I am not going into detail about it but you can google it and see for yourself and read the article about the components. They built the phone with not only CDMA tech but also GSM. Now what purpose would that serve? Honestly? That is a big battery drainer right there. Secondly, they found that the phone contained a different model battery that was lighter and had less capacity than the GSM version of the iPhone 4. That's a second red flag. My mission right now is to get Apple's attention that these phones do indeed have aproblem and they need to be looked at because this just aint workin'. I have had several replacements done (all have the same issue), several thousands of people are reporting the same results with their battery on the web, and Apple chooses to ignore it. Something needs to be done and I encourage any Verizon iPhone user to take action and make this issue known. I have a website with contact information of people who work high up in the chain of Apple along with Scott Forstall's contact info. Go to http://idevicesupport.webs.com/apps/blog/show/6441029-update and find a contact you like and call it and deman that apple investigate these phones. We can get this issue resolved if we make it known. Don't be mean or nasty to them. They are very nice people but at the sametime don't let them talk over you. Make your voice heard. Thanks for listening guys. Take care. - Joe

    Some Users have Reported that a  Restore as New  has helped Resolve issues...
    Backup and Set Up as New Device
    http://support.apple.com/kb/HT4137

  • Intial stock update

    hi gurus,
    i have a queston?,i need to update stock of a particular material,plant,and storage location,
    is there any way i can maintain the stock thro some direct table entries?
    if there is any?pls send me the table name,from where i can update my stocks rather than t-code MB1C
    here i have aproblem while doing MB1C in that storage location is place automatically filled by XXXX and showing an error storage location not maintained,byt we have maintained the customising properly. so unable enter my storage location,due to that i'm unable to update my stock.
    so pleae give us some suggestions what we can do regading this.
    with regards
    vijay

    Dear Vijay
    No Table entries needed and moreover, it is not advicable.  Try with mi10.  It should fulfill your requirement.
    thanks
    G. Lakshmipathi

Maybe you are looking for