I want answers

Hello buy iTunes gift card has not sent me to have his own ego and I want it

Could you repeat your question in your national language, please.   I have some difficulty following what is your problem.

Tags: iTunes

Similar Questions

  • SMS receiever I want answers and I want them NOW!

    It's ridiculous!

    BlackBerry rim give me a solution right now! I've had 15 hours straight so far and not luck is not cool.

    using blackberry storm, and I simply want to receive text messages. I can send them using the following datagram code...

    public void sendthisbull() {}
    DatagramConnection connection = null;
    try {}
    String url = "sms://1510555560";
    String messageAsString = "Hello World!";
    ubyte bytes [] = messageAsString.getBytes ();
    connection = Connector.open (DatagramConnection) (url);

    Datagram in datagram = connection.newDatagram (bytes, bytes.length);

    Connection.Send (datagram);
    System.out.println ("I was sent");
    }
    {} catch (Throwable t)
    System.out.println (t + "was a mistake").
    }
    {Finally
    If (connection! = null) {}
    try {}
    Connection.Close;
    }
    catch (Exception e) {System.out.println (e + sending error"" ") ;}}
    }
    }
    }

    However when you use this beautiful "I swore, we wrote an article about her, but he just Plumb does not code."

    _Dc = DatagramConnection
    (DatagramConnection) Connector.Open("SMS://"); "
    for (;
    {
    Datagram d = _dc.newDatagram (_dc.getMaximumLength ());
    _DC. Receive (d);
    ubyte bytes [] = d.getData ();
    Address of string = d.getAddress ();
    String msg = new String (bytes);
    System.out.println ("received text SMS of" + address + ":" + msg);
    }

    nothing notta don't zip no not going not to pass dice get outta here!

    It is the most frustrating, that I never treated and it's frustrating because text messaging

    is a technology that we had during the last twelve years!

    Now, if you please someone write a tutorial, make an existing application that will do 2 things.

    Send and receive text messages.

    I don't like who is doing... but the smsdemo does not work, does not speak a smsdemo is not it's smstrashbuggywe'renotdoneyet

    That's what you call it.

    Someone solve this confusion of cdma vs gms

    If I understand well cdma can only receive datagrams multicast... thin k did it... and i ' ts does not

    is there a specific port? just after this time $ 50,000 of Duke to the person who can post work

    send/receive SMS code. Make the phone it's self of send a text message and post it!

    I have more code... but it's not fair, I want answers now! NOW!

    solve this problem and stop pretending to other positions is fixed... because it is not I can't receive anything!

    Oh well, maybe it's good that I posted this, it will probably catch some attention users!

    I have an important solution to this problem... and I'm the one who just posted like 10 minutes ago haha.

    The following itself code will send a text message to show how send and receive text messages... He currently works on the Storm 9500! I don't know if it works on the Simulator and I don't really care either as the Simulator work also with things like the accelerometer etc. so for texting I test on the actual device. Here's the code...

    import javax.wireless.messaging.*;
    import java.io.*;
    import java.util.*;
    import javax.microedition.io.*;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.Display;
    import javax.microedition.io.file.*;
    import javax.microedition.io.DatagramConnection;
    import javax.microedition.io.Datagram;
    
    public class sms extends MIDlet implements MessageListener {
    
    public sms(){}
    
    public void notifyIncomingMessage(MessageConnection conn) {
    //please note in my code I did use a messagelistener prior to datagram
    //so I have no clue if using the messagelistener implementation
    //had anything to do with helping this thing to listen for messages
    //so i just left this here you can probably delete it though and not
    //implement MessageListener...
    //in which case it would be -->  public class sms extends MIDlet{
        //  Dispatch a single-pass message processor for each
        //  incoming message.
    //  boolean _singlepass = true;
       // MessageProcessor mp = new //MessageProcessor(conn,_singlepass,newcanvas);
    }
    
    public void startApp(){
    //in the startup I setup the listener and then sent the message using one
    //method
    ReceiveSms();
    //notice at the end of ReceiveSms, it calls sendthisbull(); which
    //sends the message...
    
    }
    
    public void sendthisbull(){
    //i'm leaving this as the title of my function as that's how frustrating
    //it was for this to actually work!
    DatagramConnection connection = null;
            try {
                    //the url notice it doesn't have a port number..
                   //just saying cuz this might have something to do with it.
            String url = "sms://15108885462";
            String messageAsString = "Hello World!";
                byte[] bytes = messageAsString.getBytes();
                connection = (DatagramConnection) Connector.open( url );
    
                Datagram datagram = connection.newDatagram( bytes, bytes.length );
    
                connection.send( datagram );
            System.out.println("i was sent");
                  //here i actually changed stuff to my canvas so I could
                 //know the text was sent
            }
            catch (Throwable t) {
               System.out.println(t + "had an error");
            }
            finally {
                if(connection != null){
                try{
                connection.close();
                }
                catch(Exception e){System.out.println(e + "error sending");}
            }
            }
    }
    public void ReceiveSms(){
     _listener = new ListeningThread();
    //_listener.setCanvas(newcanvas); if you guys wanted to add a canvas to //the listener you could do it using a method and pass it...
     _listener.start(); 
    
    sendthisbull();
    //send the text message...notice this is done after initializing the //listener
    
    }
     private static class ListeningThread extends Thread {
        private boolean _stop = false;
        private DatagramConnection _dc;
        //private MyTextMessageCanvas mycanvas;
            //if you want you can give yourself a canvas to display
            //wheather or not the phone got the message...
    //public void setCanvas(TextMessageCanvas thecanvas){
    //mycanvas = thecanvas;
    //}
    
        public synchronized void stop() {
        _stop = true;
            //here you can put in code to get rid of the connection
                    //for when you exit the app();
                //maybe..
              // try{
    
                //  if( _dc != null){
                 //   _dc.close();
                  // }
                 //}
              // catch(Exception e){System.out.println("error closing");}
        }
     public void run() {
    try{
    //listening on port 0 I was able to receieve text messages...
    //however I will test without it and maybe that would also work..
    DatagramConnection _dc = (DatagramConnection)Connector.open("sms://:0");
                for(;;)
            {
                    //probably add in this stop code... taken from smsdemo
                   //but I didn't use it when it worked so *shrugs*
            //if (_stop){
                      // return;
                     //}
                   Datagram d = _dc.newDatagram(_dc.getMaximumLength());
                   _dc.receive(d);
                   byte[] bytes = d.getData();
                   String address = d.getAddress();
                   String msg = new String(bytes);
                  // mycanvas.sayHi(msg + "he'd wrather have");
                 //I made a canvas and changed a string and repainted()
                //so I could know when the text message was receieved...
             }
    }
    catch(Exception e){}
    
    }
    
    }
    
  • A large number of Questions I want answers to the

    Hi, I wanted to move from phones powered by Android for phones powered by Apple, but I have some concerns about this change.

    1 that makes them better than Andriod phones powered Apple have?

    2. the 4 latest phones I have ever owned had a card slot Micro SD, the new IPhone 6s Plus(and possibly beyond) has a Slot for Micro SD card?

    3. What is bad things on IPhone

    4. take pictures of 1080 p one thing with the IPhone in recent models.

    5. much like Android is there such a thing as free applications

    Nathan Wilson wrote:

    Hi, I wanted to move from phones powered by Android for phones powered by Apple, but I have some concerns about this change.

    1 that makes them better than Andriod phones powered Apple have?

    2. the 4 latest phones I have ever owned had a card slot Micro SD, the new IPhone 6s Plus(and possibly beyond) has a Slot for Micro SD card?

    3. What is bad things on IPhone

    4. take pictures of 1080 p one thing with the IPhone in recent models.

    5. much like Android is there such a thing as free applications

    1. it is a subjective response. Everyone has their likes and dislikes. You will need to determine what you want and don't want in a device.

    2. no slot for SD card on the iPhone.

    3 once again, subjective. Do some research on the internet so that people like and do not like the phone.

    4. you can

    5. Yes, there are free applications on the App Store.

    Also, it is a forum for technical support to the user. This isn't really the place for a question like this, but some may entertain your questions, because it seems slow tonight.

  • The new format of community is ridiculous

    Once again... Apple takes something that works very well... And "improvements" such that it is now unusable. Now, I can't find ANYTHING on these community boards

    I continue to by selecting "iphone" community... However, he refuses to show me the Council itself, the latest posts... And when I'm not looking for my problem... The stupid thing shows the responses of the WHOLE system... Who heck thought it was a good idea. I'm in the community of the IPHONE. What the devil that makes you think I want answers related to the Xserve or iMac?

    Apple really needs to learn to stop force-feeding us garbage - and tell us its gourmet.

    Now, what is someone mind terribly well - tell me how to FIND and STAY IN the iphone community... especially when you are looking for answers? It is ridiculous to go to select a community... only to see research from throughout the system who DO NOT SUBMIT to why I'm here.

    I became MONUMENTALLY difficult to get answers from Apple... Geniuses are jokes. And all the rest is to pay for answers. Needless to say, I was completely failed to find all the answers here tonight.

    And, the editor on this forum is hinky what the hell all the... The cursor keeps jumping to other lines in the text and disappear. And I'm on a system 100% Apple here. I can only imagine how it is on other systems.

    In fact, I don't know even where this post will actually land... There is no indication whether on the page, as to where the devil, I'm into this stupid mess.
    I see that I can POST to a specific community... But, I can't seem to STAY in a specific community or search FOR a specific community... beautiful will... Another completely ridiculous change imposed on Apple customers (and, Yes! Stop calling us 'users '... We ARE of the 'Clients')

    These communities WERE the only way to get around and find answers. And most of the high experienced people have been GREAT! Now, who was totally screwed up. I've been bouncing here for ten minutes. And STILL can't find jobs related to the iphone community REAL. And I'm not exactly a noob when it comes to technology.

    That is why we all convert to Linux. At least in this community, you can find answers. And any change is indeed sensible.

    I have NO IDEA where to go to find answers now. MacRumors maybe.

    Try this link for iPhone to help.

    Try this search using the iPhone.

    See minimal ASC CSS settings to cancel some of the changes and to facilitate the review of the discussions.

    TT2

  • Code of FaceTime activation condition

    I'm deaf and I'm frustrated by Apple.

    I am trying to use Facetime on my MacBook, but it keeps saying "you cannot connect to FaceTime on the Mac at this time. To use FaceTime with the Mac, contact the Apple Support and provide the code below. [code redacted] [name redacted] "I then click on the button 'contact support '.   And here, it gives me an 800 number to call to get my Facetime with my MacBook.     APPLE, YOU IDIOTS FLOWERING.  I'M DEAF.

    I CALLED THE NUMBER OF 1-877-204-3930 'HEARING' (WHICH I GUESS IS A TTY NUMBER) - BUT NO ANSWER! ***

    SUPPORT CHAT THAT APPLE ISN'T GOING TO HELP ME, EITHER.    APPLE APPLE SUPPORT TWITTER WON'T HELP, EITHER.

    I've got Facetime activated on my iPhone 5 c, both MacBook and iPhone 5 c are on the same wireless network, all the prerequisites.

    How to make ŒUVRE of Facetime on my MACBOOK without having to dial the 800 number?  Is there still a certain NUMBER of SMS to contact Apple with?    Apple dropped the ball with deaf customers.   (Facetime works fine on the iPhone 5 c, incidentally).

    Any other deaf people there who faced this problem?  If so, were you able to solve through the deaf with Apple channels (if they?)

    Thank you.

    IF THE AppleID SITE IS SECURE AND has a PLACE FOR YOU to ENTER the INFORMATION of CREDIT CARD... THEN WHY IN THE BLUE FLAMES CANNOT DEAF ENTER THE CODE THAT IS PROVIDED TO US AND ASK US FOR THE WHAT QUESTIONS YOU WANT ANSWERED TO VERIFY OUR IDENTITY AND THEN WE HAVE OUR FACETIME TO OUR MACS!

    Thanks in advance to anyone (at Apple or otherwise) who can help me solve this problem.

    MacBook, OS X El Capitan (10.11.4) and iPhone 5 c

    Try to troubleshoot FaceTime: FaceTime for Mac: Troubleshooting - Apple support FaceTime

  • USBOTG and Charge at the same time on Stream 8

    To keep this thread as productive as possible and efficient for those who find it useful to:

    Unless you have under your eyes

    1. a schematic representation of the 8 Stream USB port (USB port and battery electric circuit etc.)

    2 source code for the firmware BIOS and kernel that controls the material

    Please DO NOT respond or say "is not possible".  In view of the above is true, you do not have enough information to say '' not possible. ''

    If no one replys with a solution, what he calls not possible by default.

    Also please do not answer to say ' I don't know how "or" but I know how to do anything else that ' is also not that useful.

    An update of the BIOS or other software update may be required by HP, Microsoft or both to offer this feature really intuitive and quite possible.

    And I hope that this thread can be an effort consolidated by all who have the 8 flow to make the necessary changes.  The majority of the other tablet PCs are capable of it.  It seems that only the 8 Stream and a few others have trouble with her.

    ~~~~

    I want the ability to use a simple, inexpensive cable and perhaps standard (with electronic active minimum inside) which allows me to host and to use one or more USB devices on the Stream via its USB port B microphone 8 while this cable can also be connected to a charger standard and charge 8 flow simultaneously.  This means that the cable has a minimum of three connectors.  One of the possible configurations are as follows (apart from the normal charging cable):

    1 cable Micro USB B Male - connect to the stream 8

    2 USB male A - connect to the AC charger (IE one that came with the 8 Stream)

    3. USB A female - one or several connectors to plug into the key of USB data, keyboard, mouse or even a hub.

    Connector # 2. above shall provide a power supply to recharge the 8 Stream via conn. #1 and the power supply for external USB devices via conn. #3 so that they are in use - all at the same time.

    A and if the same cable can act as a normal OTG no charger for when no external power supply is available.  This may necessitate a switch or an electrontics active inside.

    The last part of this goal is unimportant for various reasons.  I wish that HP, the manufacturer of 8 flow, to State in writing good mode necessary to do this, so that other manufacturers or even-it yourself can make maximum use of their tablet HP equipment.

    ~~~~

    The neat thing it will alow a person to do with their tablet, it is to work at home using the Tablet as a desktop PC by connecting a keyboard, mouse, perhaps external screen (with USB to the display adapter) and knit for a long time without time limit prescribed by the battery life because the charger provides energy to all involved.

    If there is only a single connector on the cable #3, then an additional node of coarse had to provide support for these multiple USB devices at the same time.  However, it would be better if there were several #3 connectors integrated in the cable itself.  This would be better as a suitable USB hub also requires its own power.  That an adapter is necessary if the whole thing were integrated into one.

    ~~~~

    I really want answers from anyone who has already accomplished USB OTG delivered with simultaneous load with flow 8. (independent of any published 'proper' way is also welcome)

    Today's date is 2015-01-16.  If in 2015-02-16 (one month), nobody has posted a solution and then starts to bug HP and Microsoft on it's us?

    ~~~~

    Technical training:

    I understand the possibility the tablet software and firmware must take a decision on the manner in which power flows on the power port USB microphone B pins.

    I know that with a proper design of the electronic circuit carring these signals of power inside the Tablet could be sensitive to what is connected and without risk to decide for himself what to do without needing to control software.  For example by testing/detecting periodically differential voltage or current management to see what sides of the connector can supply.

    But this is only one of the many "could bes".

    In addition, this can be no standard regarding the standard USB.  What seems to be actually the case with a lot of cables OTG + fresh, is that physical clues embedded in the cable or charger are used to signal to the Tablet what the situation is.  Then the signal of software/firmware of the Tablet, interprets what the situation is intelligently and responds by flipping the bits of correct hardware control to activate, or deactivate the power flow in the port and also control its direction in or out.

    I'm not familiar with the standard USB.  Maybe I could do more research, if I believed that HP followed with 8 Stream or even the standard covered this situation explicitly.

    But to a certain extent, it seems I'll have to invent something that should be intuitively just like it does with other tablets. Isn't it?  Maybe I'm overthinking, but I can't find any USB OTG + cables load that specify compatibility with 8 HP flow.

    In any case, I was familiar with both methods other use of tablets to send the highest mentioned signal to the hardware/firmware/software of the tablet to the idea that it's time to load / time of OTG or both.

    The first method is a 0 Ohm to 200 ohms short between pin USB A 2 and 3.  This is the bidirectional data differential lines D - and D + respectively.  In data mode, all the data passes back and forth on those lines.  When you load with a cable, it's the charger module that puts this short, not on the cable.  I measured the short on three different Chargers.  It is 0 Ohms on two of them, one of those who are the charger that came with the 8 HP flow.  The others 0 ohms was generic.  The third was for an apple iPad and it measured on 53KOhms.  It's probably not the resistance ohms 0-200, but probably it is impedance termination indicating that there is some intelligent serial port communication in the charger itself.  Leave it to Apple to be different.

    This method is somewhat questionable, as this signaling mode would prevent OTG + fee because it seems unlikely that you will be able to OTG when the data lines are shorted each and overloaded with such low impedance.  I could be wrong on this subject...

    The other method I have seen suggested to work with some tablets and phones other than the 8 stream is too short the USB microphone B pin 5 to Terminal 4 with 0 Ohms to 100 000 Ohms.

    USB B has 5 pins.  USB has only 4.  The extra pin on B moves the GND pin 4 pin 5 pin to and makes pin 4 PIN ID.

    If this signal applies to a drop in the ID pin (4) or in some cases, I saw that she proposed, he runs down with 0 Ohms.

    Dead shorting things always makes me nervous.  If ID is a simple normally high impedance high input, resistance could be used to make voltage well below the low or zero threshold while also preventing the risk of damage when cheat on him with a device that you do not have the diagram for.

    Yet, 100K is a bit high for a 'pull down' in most of the situations that I'm used to.  Even a 10K would be uncertain. A 1 K or 2 K seems reliable enough, but then things are weaker and in know more nowadays low...   All but a dead short but if possible.

    So, it seems possible that the device might be able to "indicate" by the specific value of the resistance, which can be found here.  In other words the resistance is not a pull down but in fact a signature analog ID, in which case the exact value will be crucial. So if this is the case, a guess is not going to work.

    Obviously in such a system as described above, a chip inside the Stream 8 should be responsible to support this information. I hope the 8 Stream has such a chip.

    Probably a register inside this chip would be at all times what the State of the pin ID is a binary number.  All that is needed is for the BIOS to the chip and the registry in it and read this number via the bus to determine what happens to the port. Finally, he would use that signals of info to send the order of material to the electrontics of power set the appropriate direction to take etc.  (and change the State of the icon on the screen of the rude)

    I don't know if the PIN ID method described is a standard USB or not either.

    Eventually, there may be a third way. But I do not suspect that it would be possible with a non-active external device. In any case too complicated for the novice DIY for sure.

    The device would need to act is a kind of extension of bus.  As an active hub.  But she would use the negotiation of data USB serial lines and in addition to reproduce one or more additional USB ports, intelligently inform the tablet to get with the program which is "now we're going to otg and recharge at the same time."

    This requires a smart external device with a processor Inside, no doubt.

    It seems to me that many other tablets have been able achieve avecjoint here the need for a smart external device and thus the flow must also be able to do.

    There is a device that claims to be able to work with the HP Jet 7 and 8 and provides same ethernet and USB and big DVI ports so loads the data stream.  But its expensive because it is active.  Se here:

    http://AMZN.com/B00OVDE0GC

    It's called a "Docking Station".

    A reference to a product that does exactly what I want (possibly without active electronic components) is here:

    http://AMZN.com/B00LTHBCNM

    It's by Kirin and it is a device of type squid with four USB ports.  Precisely, which is my goal.  But read in the comments stream 7 user indicated that he would not be OTG and load, not really clear if it worked as a hub USB OTG or not.  Another evaluator stated that she would not support even a single USB device much less fees of 8 Stream.  This device has a switch.

    I forgot to mention that some 'hackers' have claimed success with other tablets to deceive their devices by using a multi-step process to plug things in.  Usually in general they would get connected Tablet and load first, then they would return a switch or something remove some resistance or the signal was introduced by the first position of the switch. For some reason any Tablet would continue to require. Then the data lines would be free and they would plug in a usb key and it mounts correctly even if the tablet was always in charge.

    It's like the power circuit has a lock which does not allow it to return to the mode "power flow" as long as he still feels the power flows inward regardless of what software it is telling.  Full proposal here.

    These tips seem dubious to me.  Changes in the BIOS could change the way it works.  Also you can not be sure what actually happens if you do not have a schematic representation.  You could damage your tablet.  Many people will support icon in the operating system whether the Tablet is in charge.  But I'm sort of a low-risk guy and my policy is generally indicators of intereperet not to have meaning at all once a device is functioning in a non-standard setting.  Especially when it's something that I did not built and could not fix if I FRY.

    Hypothetical reasoning: tell me what data sensory discs really the State of the charging light screen?  This reflect the bit of hardware control programs actually feeding management and status on the port?  Or does it measure the direction of the flow of power, said in the section of the circuit battery monitoring?  Point - none of us have a schema because it's owner. To really be sure according to the smart electronic hardware, the port must be mode flow under advisement "of power. If it's in a "power flow out" mode and power will be delivered externally as well you wind upward with both power supplies the same power at the wheel nets.  In this case, the two opposing regulators attempting both to drive 5 V can have slightly different voltage calibrations.  That could lead to fighting between them, with more than 100% of their capacity.  For example if you try to regulate 4.95 real V and the other and other attempts to regulate 5.05 V.  Current then flows to the tune of 100 mV / a few milliohms in the cables linking the two.  This may be several amperes. (many)  In other words, like I said: you want the tablet to know that power is coming in don't go out and automatically hitting the internal switches needed for that to happen. Probably the icon should indicate this with precision, but in some wacky situation, he could not. There may be a chance that the icon could indicate the load and still be burning or focusing on some circuits of the tablet or the charger.

    Another thing, I could see that happening is if you play with these reported resistance types enough you might find a resistance value that winds up place the device in an intermittent condition.  In other words it keeps flipping back and forth quickly between OTG and fresh.  It can give the illusion that it works.  You can have marginal communication with your USB devices and battery could even load.  But will still be a lot of stress on the power circuit.

    It is difficult for me to risk a Tablet perfectly well if I don't know exactly what I'm doing.

    If a brave individual makes their own experimentation and verifies that it charges and OTGs and you tell the rest of us, you're a hero.

    Maybe one of you has a good knowledge on the USB standard to have more confidence in such an experience... like what the ID pin 4 REALLY supposed to work for example?

    That's what I know so far.  If you think you can help, thanks in advance, or if this helped you, then your quite welcome.

    It works

    http://Accessories.us.Dell.com/SNA/ProductDetail.aspx?c=us & l = to & CS = 19 & SKU = 470-abes & baynote_bnrank = 0 & baynote_irrank = 0 & ~ CK = baynoteSearch & dgc = CJ & cid = 47997 & lid = 4279734 & acd = 10550055-4485850-eb75dcb47e53437680ed323a1f4885fe

    Evidence

    http://targusblog.com/2014/11/25/how-to-turn-a-99-Tablet-into-a-workstation/

    But it's 4 x the price in Europe

    Have fun

  • 2340dx (Pavilion g7): HP Games - is available in Windows 10 Solitaire?

    I'm ready to upgrade Windows 8.1 to 10.  I want to 'clean' by making a 10-install that erases all personal & apps, but...

    It is my mother, and she likes to play Solitaire which is preinstalled 'HP Games' on the 2340dx.  If I do a clean install, is there a way to download HP games (from hp.com) that runs in Windows 10?  Or, if instead, I install with the will to "keep the applications and personal files" that maintain HP Games, and he will work to win 10?  Or, to let him run must alone we keep 8.1?

    Update: I have just web-searched "windows solitaire 10 ' and MS includes their Collection of Solitaire with Win 10. (they removed it to Win 8)  So, I don't keep 8.1, which was the #3 Option.  But I still want answers for the first 2 options.  Thank you.

    Hello

    Solitaire game isn't at HP, it's a game of Microsoft. You can use Windows Store to install Solitaire on your Windows 10. I do not install on our Windows 10 laptop computers but on our Windows 10 phones.

    Kind regards.

  • No network after controller updated windows system 8

    I refreshed my cause stupid windows 8 I had strange things pop - up on the screen, so I refreshed the system. Now I can't connect to Internet and miss me all my emails, contacts, Favorites, photos and else who knows what. I want answers to everything, but I guess I'll work on the Internet connection first. Thanks for any help. Model G72022
    Says rt5390 of radiomodel of rapini

    Thank you very much! I know it must seem simple enough for you, but I could just find the right adapter. I really enjoy taking the time to give me the link. Now, can I ask another question? When I did the update, a lot of my programs were banished!

  • Portege M400 - commissioning, problems of CMOS gel battery and dead

    I bought this laptop used, initially assuming that it did not subsequently to see, not only it worked, but the screen is very good too (apart from a few dead pixels on where the back of the screen is dented).

    It runs but it _doesn can't start always delivered. The power is on, then the disk of hard a light, (the wifi does NOT start in this case) and then after a little hard drive shuts off and then the fan goes hard. I've had a few cases where when turned on the hard drive light even turns on and it will take just the fan go hard after a bit and a case where (after it has been moved several times) the light is orange flashing light and beep. Only once.

    After a few times, it ends by start, however it _freezes when moved or randomly_. When it freezes while it is on, the fan also goes up loud and clear after a little. I noticed that it is lagging time also, which it should not.

    Battery CMOS _the seems dead_. The clock will sometimes even off the track when walking and at the time, it was when he was the last. I heard somewhere that the * # to the battery was: CR2032. If someone can confirm this *, please let me know.

    I guess that this laptop is dropped or severely abused at some point in his life. It has several bumps on the back of the screen and the keyboard it noticeably worn. I don't have * manuals or CDs for this laptop * (if you have links to all of this, I would be happy).

    I have personally had done so far, just replace the ram in total 4 concerts, which really speed up (when it works) and all the problems mentioned have not changed (plusent took place before the replacement).

    I would have preferred to hear * any * potential solutions in addition to the replacement of the motherboard, which is my last resort for the moment.

    Thank you.
    (Problems are underlined and in bold is things I want answers to the.)

    Has anyone of you contacted the service and asked for help?

  • Cannot use FN + F6/F7 to set the brightness of the screen on my Tecra M2

    Hello!!

    I bought laptop Tecra M2 but when I format it with Windows XP SP2 keys FN + F6/F7 is not active for display quality and I formatted it device

    Please I want answers.

    I can confirm what Robin wrote but want to add that after a new installation of OS, you must install Toshiba designed tools and utilities in the correct order. This command of facilities you will find in the document Instructions of facilities.

    If this document is not available for your laptop model please install things in the following order:

    -WINDOWS XP HOME SP2
    -Intel Chipset Software Installation Utility
    -Toshiba Common modules
    -Display driver
    -SoundMAX Integrated Digital Audio
    -Alps Pointing Device Driver
    -Toshiba double score utility device
    -Modem driver
    -LAN driver
    -WLAN driver
    -Wireless keyboard shortcut
    -Infrared driver
    -Windows SD Host Controller Driver
    -SD memory boot utility
    -SD memory card format
    -Bluetooth Stack
    -Toshiba Hotkey for display devices
    -Toshiba Display Device change Utility
    -Zoom utility
    -Toshiba Power Saver
    -Toshiba Mobile ext.
    -Toshiba Utilities
    -Toshiba Console
    -Toshiba controls
    And so on.

    I use Tecra M1 for years and the same facilities.

  • Satellite P100 - 160 PSPAAE: Question on the driver installation instructions

    Hello.

    I recently bought a P100-160 model PSPAAE with Vista pre-installed. Like many others, I had no choice with the OS and my experience so far has left me wanting to go back to XP.

    I found the page of appropriate support for the drivers (I guess I have to use the drivers for the PSPAA) and read the instruction sheet that comes with them. There are some questions I want answered before I start on this particular cliff.

    The guidelines mention the SD card Format utility, but I see no mention of one in the list of drivers. It is included in one of the other drivers or is it not found elsewhere?

    Why the Sun Java Runtime Environment is necessary?

    I guess if my machine has no Bluetooth or Infra-red that I didn't need to load the drivers.

    Thanks in advance if anyone is able to help.

    Kind regards

    John

    Hi John, I recently went through the same process and after a few attempts, settled on the following as a reasonable XP installation (I don't need all that other stuff):

    Satellite Pro P100 (PSPAEA)

    Chipset: Mobile Intel (r) 945 PM Express Chipset
    Memory controller: 82945 PM
    I/o Controller: Intel (r) 82801GBM i/o controller hub (ICH7M)

    What I installed...

    03 - display Driver
    04 chipset Driver
    05 - network - upgrade Ethernet driver
    06 - network wireless driver
    09 - sound Driver
    10 - driver CardBus controller with UltraMedia
    12 - modem Driver
    13 - modem region Select utility
    14 Bluetooth Stack
    15 - Bluetooth monitor
    17 Hotkey Utility
    21 - SD Secure Module
    22 - SD memory card format
    28. DVD-RAM driver software
    33 user manual
    TOSHIBA fingerprint digital-software (from Vista drivers)
    TOSHIBA-disk-Creater (from Vista drivers)

    What I do not installed...

    01 - Microsoft Updates (I used Windows Update to do this)
    02. Sun Java Runtime Environment
    07. customer Intel utility
    08 Atheros Client Utility
    11 - touch pad Driver
    16 - C - infrared driver
    18 YPP/power button Utility
    19 utilities
    20 - buttons
    23 - assist
    24 - ConfigFree
    25 - zoom utility
    26 PC Diagnostic Tool
    27 CD/DVD Drive Acoustic Silencer
    29 WinDVD Creator
    30 - RecordNow
    31 DLA
    32 - DVD player

    Note: for 05 - pilot network to install correctly, I had to upgrade the Device Manager ethernet controller.

    The numbers relate to roughly the original installation instructions. I do not pretend that it's the perfect installation, only one who appears to be stable and suitable for my purposes...

    With respect to the SD memory card Format driver, I found it somewhere, but I don't remember where (sorry). It has the following file name, even if once extracted (ToshibaSDMemoryCardFormat_v2100A.exe).

    Hope this helps and please post your results as it is good to share their experiences.

    Regards, Rob

    PS one of the biggest advantage I found was much better video support nVidia for Vista drivers were not very good and assured por.

  • Satellite L300 - disk drive stops opening

    My satellite L300 disc does not eject when I push the top button after a random time. If I reboot, the problem is always the same. If I turn off, the hard drive will immediately work again until by cutting in an hour or two. After learning more again and again on the phone for Toshiba to wipe the computer and start over, I've had enough. I want the email address for the Director or any person to high Toshiba. I'm sick of told to make little stupid things that will not help the computer and having to put up with people who seem to know "tonnes" on windows 7, who do not have a clue what they are even talking.

    I want a contact address for someone who will help me (which Toshiba seems to make it difficult to find on their website). I must have spent tons of money on the phone for Toshiba, I have had nothing but problems until they have in a first time for a replacement hard drive. EVEN Microsoft said they gave me incorrect information by Toshiba. Toshiba said I have software problems during the installation of windows 7 kept freezing, even though Microsoft said it isn't supposed to freeze and it is definitely a hardware failure.

    In any case, as you can see, I'm not fond of Toshiba and want answers. It is unacceptable to pay money for something that breaks within a year of purchase. The only thing I can find good on Toshiba, is that their call centers are British, which I understand. Please can someone get back to me, even if you work for Toshiba I'll be very grateful.

    If there is no I'll be forced to call Toshiba for the billionth time and ask to speak to the Manager, because it is unacceptable, and I am regretting ever buy this machine.

    Hi jacksite2007,

    To be honest I n don't know what you want here. Why you want an e-mail address of a Manager from Toshiba? Do you think this can solve your problem? I doubt that
    And why you try to contact Toshiba? If you have problems with your laptop, you will need to contact an authorized service provider. Technicians can check your laptop and fix it for you. You should get in touch with these guys here!

    > to wipe the computer and start over, I've had enough.
    Why have you had enough?
    Just take the Toshiba Recovery disk to reinstall your laptop. It only takes a few minutes and you have to do only 10 clicks or two to complete this procedure. It is easier than you think. ;)

  • requirements and configuration of the mobile module

    I want to control an appliance using a PDA. I want answers to the following questions

    1. I have a nokia with great software symbian smartphone, I can use it.

    2. how to set up a laptop, I use lv 2010, do I need to purchase a license (such as the SCCT or something)

    Thank you

    The only way to do so is through the interface of the web server. The mobile module supports only the Windows Mobile OS - and not even the most recent version.

    Mike...

  • Mode USB host for other devices

    Hello

    I heard that on the USB host mode support on the Motorola Xoom. I'm working on obtaining USB devices other than the readers to try to communicate with the Xoom, as USB to equipment series. Cables appropriate (OTG) would allow me to do?

    Thank you.

    Welcome to the forum.

    There are 2 ongoing threads on this topic.

    a here

    and one more big one here

    for reference there is a search bar on top right of every page where you can find ongoing discussions for most of the topics, you may want answers to. You can type what you are looking for for example "usb host" and then click on to display only the results for the Xoom.

    Thank you

  • Preparation for the upgrade of Windows 2008 server to a more recent version of IIS

    I am preparing a server from IIS 7 to IIS 8.5 upgrade and installation of Wordpress.

    Based on my past experience with Windows, I just want answers before you begin the process of upgrading to these questions.

    After the upgrade to IIS 7 to 8.5 IIS erases from my old site, and IIS instantly crashes whenever I try to restart it via the services or by doing an iisreset in the terminal, how do IIS running again so I can recharge my virtual directories?

    After I installed Wordpress and IIS starts crashing again, how can I me IIS regularly rerun?

    When I get to the point where I have two Web sites running on the same server (which the Windows server documentation is both 7.0 and 8.5 are capable of handling), but it turns out that I can't get a site to run at the same time without the server crash, how do I turn to the second Web site so I can follow the two sites up and running?

    Arnold

    Server issues are beyond the scope of this site and should be asked on the Technet site

    http://social.technet.Microsoft.com/forums/en-us/home

Maybe you are looking for

  • How do you access contacts on the Apple Watch after upgrade iOS 10?

    Previously, a press the button below to access contacts. Now, what?

  • update to OS 10.11.3

    I have MacBook, 2011, Air performance 10.8.5 and I consider updated to 10.11.3. My question: is there a way to check if 1. applications that are currently on my computer be compatible with 10.11.3 2. There is some malware on my HD, as, for example, C

  • Bootcamp partition

    OSX El Capitan I tried to install windows 8.1 using bootcamp, when I get to the partition of windows 8, I delete the bootcamp partition because I was trying to format NTFS, I wasn't working, so when I reboot to OS X years restart bootcamp, I get this

  • Cannot install Adobe Reader in OS 10.11.1

    I could not install Adobe Reader from the upgrade to El Capitan.  No problems with download, but it will not install.  I went through all the advice offered by Adobe, without success.  Anyone know how to get around this problem?

  • You Tube in Media Player?

    Buy Sony Walkman for great niece. She wants to be able to view the You Tube video. Discover the Conversion software and I was wondering if Windows Media Player has this feature available or could someone direct me to a stand-alone product?