Hi there, hope somebody could help me with this little issue I am having

Hi there,
First of all I want to say that I am very pleased to be part of this community, my name is Juan and I got the following problem:
When my father tries to dial a mobile phone number (from his blackberry) starting with 32, phone adds a plus sign like if he was actually dialing an international number.
I mean, if he dials 321 815 5634, we get the following result: +321 815 5634
Hope someone could give me a clue on how to solve this.
Thanks in advance,
Juan

Hi Juan,
Welcome to BlackBerry Support Community Forum.
tanzim                                                                                  
If your query is resolved then please click on “Accept as Solution”
Click on the LIKE on the bottom right if the post deserves credit

Similar Messages

  • I recently upgraded to IOS 10.9.5 and now I can't export anything from final cut Pro X. Could somebody please help me with this?

    I recently upgraded to IOS 10.9.5 and now I can't export anything from final cut Pro X. Could somebody please help me with this?

    SSign in to the App Store using the Apple ID that was used to purchase the software.

  • I would like to remove a short gray edge from two images. I need help in that I am not yet able to use PhotoShop. Could somebody kindly help me with this?

    I would like to remove a short gray edge from two images. I need help in that I am not yet able to use PhotoShop. Could somebody kindly help me with this?

    I doubt it Doc Maik, but I am certainly happy to learn The image is this one (and a similar one). They would be beautiful portraits if not for the "extra mouth". The grey edge that I would like to remove is the excess of (grey) mouth that is actually my horse's chin, but that in the pictures looks like a wider, looping mouth. Practically, looking at the picture, the "extra mouth" to the left. What I would love it to be able correct that to look like a normal mouth, which means that half of the protruding edge should be removed. I am not sure I was able to explain myself, but here is one of the two pictures. I thank you for you kindness in being available to advise me.

  • Hii, i got an iTunes card for $15 and only used $6 in it, but it say I only have $0.37 left. If any one could help me with this, I will be forever grateful.

    Hii, i got an iTunes card for $15 and only used $6 in it, but it say I only have $0.37 left. If any one could help me with this, I will be forever grateful.

    You will need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Anyone could help me with this report. ?

    Hi to all, anyone could help me with this report ?
    I have this one:
    SELECT 'Factura',T0.ItemCode, T0.Dscription, SUM(Quantity) as Cantidad, Sum(LineTotal)  as Total
    FROM INV1 T0 INNER JOIN OINV T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND  T1.CardCode <= '[%2]'))
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    UNION
    SELECT 'Abono',T0.ItemCode, T0.Dscription, SUM(Quantity * -1 ) as Cantidad, Sum(LineTotal * - 1) as Total
    FROM RIN1 T0 INNER JOIN ORiN T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND  T1.CardCode <= '[%2]') )
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    But now I want to introduce this sentence in:
    Select I.ItemCode,I.ItemName,
    (select price from ITM1 where ItemCode=I.ItemCode and PriceList=1),
    (select price from ITM1 where ItemCode=I.ItemCode and PriceList=2),
    (select price from ITM1 where ItemCode=I.ItemCode and PriceList=3),
    (select price from ITM1 where ItemCode=I.ItemCode and PriceList=4)
    From OITM I
    Could you help me ?
    Many thanks.

    Please try this one:
    SELECT 'Factura',T0.ItemCode, T0.Dscription, SUM(Quantity) as Cantidad, Sum(LineTotal) as Total,
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=1) 'Price List 1',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=2) 'Price List 2',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=3) 'Price List 3',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=4) 'Price List 4'
    FROM INV1 T0 INNER JOIN OINV T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND T1.CardCode <= '[%2]'))
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    UNION
    SELECT 'Abono',T0.ItemCode, T0.Dscription, SUM(Quantity * -1 ) as Cantidad, Sum(LineTotal * - 1) as Total,
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=1) 'Price List 1',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=2) 'Price List 2',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=3) 'Price List 3',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=4) 'Price List 4'
    FROM RIN1 T0 INNER JOIN ORiN T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND T1.CardCode <= '[%2]') )
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    Thanks,
    Gordon

  • Any one could help me with this soap client program?

    Any one could help me with this soap client program?
    Below is the request format my partner is expecting to see:
    POST /Service.asmx HTTP/1.1
    Host: 192.168.1.1
    Content-Type: text/xml; charset=utf-8
    Content-Length: length
    SOAPAction: "https://api.abcdefg.com/GetList"
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
              xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Body>
              <GetList xmlns="https://api.abcdefg.com/">
                   <username>string</username>
                   <password>string</password>
              </GetList>
         </soap:Body>
    </soap:Envelope>The java client I wrote is blow:
    import javax.xml.soap.*;
    import java.util.Iterator;
    import java.net.URL;
    import java.io.*;
    public class Client {
        public static void main(String [] args) {
            try {
                SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
                SOAPConnection connection = soapConnectionFactory.createConnection();
                SOAPFactory soapFactory = SOAPFactory.newInstance();
                MessageFactory factory = MessageFactory.newInstance();
                SOAPMessage message = factory.createMessage();
             // addd SOAPAction;
             MimeHeaders hd = message.getMimeHeaders();
             hd.addHeader("SOAPAction", "https://api.abcdefg.com/GetList");
                // get env and body;
                SOAPPart soapPart = message.getSOAPPart();
                SOAPEnvelope envelope = soapPart.getEnvelope();
             SOAPBody body = envelope.getBody();
                Name bodyName = soapFactory.createName("GetList", "", "https://api.abcdefg.com/");
                SOAPBodyElement bodyElement = body.addBodyElement(bodyName);
                //Constructing the body for the request;
             SOAPElement username = bodyElement.addChildElement("username");
             username.addTextNode("1234567");
             SOAPElement password = bodyElement.addChildElement("password");
             password.addTextNode("7654321");
                System.out.print("\nPrinting the message that is being sent: \n\n");
                message.writeTo(System.out);
                System.out.println("\n\n");
                URL endpoint = new URL ("https://api.abcdefg.com/Service.asmx");
                SOAPMessage response = connection.call(message, endpoint);
                connection.close();
                response.writeTo(System.out);
            }catch (Exception e) {
                 System.err.println("ERROR: ******* " + e.toString());
    }The response my partner's server returned is:
    <faultstring>Server did not recognize the value of HTTP Header SOAPAction:. </faultstring>I used similar code to access the web services provides via tomcat, it works fine...however, for this .NET services it does not work.
    By the way, I also have another version of the clirnt, using JDOM to construct a XML request and wrap with axis message. I got the same error message as above.
    Can anyone point out something for me?
    Any kind of comments will be appreciated!!
    Edited by: Nickolas.Chen on May 6, 2008 7:20 PM

    You will need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • PLEASE, ANYONE COULD HELP ME WITH THIS !!!

    PLEASE, ANYONE COULD HELP ME WITH THIS !!!

    hi, i was facing this problem from past few days...solution... WE JUST HAVE TO USE A USB 2.0 HUB... this solved my problem....E1713 is not able to connect to usb 3.0 as it does with 2.0.

  • Im new to java and hope somebody can help me with my question

    Hi!
    Im quite new to java and I just have some simple questions..
    can someone please tell what kinds of error are considered as language violation for java? where can I find more info about these errors?
    can someone give me a simple example on a kind of error that cannot be caught in both compilation and runtime? I hope someone can help me out. Thanks in advance!!

    knightz211 wrote:
    Im just asking about errors that might go against the language definition but cant be detected.. If it "goes against the language defintion," it will be detected by the compiler. That's half of the compiler's job is to tell you what you've done that violates the language spec.
    because it confuses me when they say that such errors might occur so I just want to know what might these errors be.. sorry for that..Who's "they"? What exactly* did "they" say about "such errors"? It sounds to me like you're just confused, and you think there's something mysterious and inexplicable going on but you don't know what and don't even know what you're asking.
    I would suggest not worrying about hypothetical problems that you can't even put into words and focussing on learning Java. Along the way, if you encounter real, specific, actual problems, ask about them, and you'll probably get answers about the problems themselves and the language or theory behind them.

  • HT204088 I was wondering if somebody could help me with my itunes account, i was charged $40 for something and i didnt buy anything.

    I have an itunes account and i was charged $40 and i dont know why.. I was wondering if some one could tell me what i was charged for and when.. Please and thank you!!!

    We are fellow users here on these forums, not iTunes Support, we won't know.
    You can check the purchase history on your account via the Store > View Account menu option on your computer's iTunes, though I'm not sure if that shows auto-renewing subscriptions (I haven't got any so I can't check). If you can't find the charge or don't recognise it then you could contact iTunes Support and ask them for help : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Hi to everybody, I'm new of the community and I'd like to know if anybody could help me with this issue. I have differente itunes libraries stored in differente hard disks, and I' d like to merge them all in one unique library

    Hi, I' m new of the community and I hope I'm not asking something that has been already discussed. I have different iTunes libraries on different hard disks and I would like to merge them in an unique library - mantaining all the metadata - so that I can use this new one with iTunes Match. Could anybody help me?

    PowerTunes - http://www.fatcatsoftware.com/powertunes/ (commercial software)
    syncOtunes - http://homepage.mac.com/oligrob/syncOtunes/syncOtunes.html
    Alison 1231, your question is not identical to the original poster's so perhaps you could start a new topic with the question since the answers will be different and not apply to the OP's post.

  • Can somebody please help me with this? Security code issue; very small code

    Hi All, Iam a Unix admin and trying to learn Java/weblogic. I have a JSP and iam trying to run on my weblogic 81 Service Pack version 3.
    My following code failed to work and giving me some security exceptions. Then in my weblogic console i saw
    Domain Wide Security Settings > Anonymous Admin Lookup Enabled
    The above checkbox is disabled. When i enabled, it worked. I talked to my company "Security" folks and they do not allow this checkbox to be enabled. they are saying fix your code problem......
    if somebody can please let me know what a probable fix would, that be great and very helpful.
    try{
    Environment env = new Environment();   
    javax.naming.InitialContext ic = new InitialContext();
    MBeanHome home = (MBeanHome) ic.lookup(MBeanHome.LOCAL_JNDI_NAME);
    DomainMBean dom = home.getActiveDomain();
    Set s = home.getMBeansByType("ServerRuntime");
    ServerRuntimeMBean srmb = (ServerRuntimeMBean) s.iterator().next();
    WebLogicObjectName on = new WebLogicObjectName(home.getDomainName()+":Location="+srmb.getName()+",Name="+srmb.getName()+",Type=ServerConfig");
    //WebLogicObjectName on = new WebLogicObjectName(Name="+srmb.getName()+",Type="ServerConfig",Domain="+home.getDomainName()+",Location="+srmb.getName()+");
    ServerMBean server = (ServerMBean) home.getMBean(on);
    ClusterMBean cluster = null;
    if( server != null)
        cluster = server.getCluster();

    did i asked such a dumb question? ... :)Well, yes, sort of. The problem description "My following code failed to work and giving me some security exceptions" doesn't have nearly enough details. Such as, what exceptions, what is it supposed to do, what did it do instead, that sort of thing.

  • Hi could someone help me with this basic issue ..

    'sql*plus' is not recognized as an internal or external command,
    operable program or batch file.
    I have installed expression addition for practice on a win xp OS it was working fine but now this is the error when , I am trying to start the data base.
    checked the environmental variables they seem to be ok but still no progress .
    Thanks,
    Max

    Hi,
    In hurry are you typing sql*plus instead of sqlplus?
    you could go to <oracle-home>/bin directory and run  (ex: C:\oraclexe\app\oracle\product\11.2.0\server\bin\sqlplus.exe)
    Regards
    Yoonas

  • Can somebody please help me with this Panic Report?

    Hi Guys,
    I am having a little difficulty deciphering these panic reports we keep getting from our Mac Pro here.
    They've been crashing our Mac ever since we got our Hasselblad Camera back from Hasselblad repair however after submitting logs to Hasselblad they tell us its to do with the power management of the Mac... Can anyone tell me anymore ?
    Interval Since Last Panic Report: 283350 sec
    Panics Since Last Report: 2
    Anonymous UUID: 49A4EEED-A350-42FA-B6D4-7E741BBFDBA5
    Fri Feb 18 08:57:33 2011
    Machine-check capabilities (cpu 1) 0x0000000000000806:
    family: 6 model: 23 stepping: 6 microcode: 1547
    Intel(R) Xeon(R) CPU E5462 @ 2.80GHz
    6 error-reporting banks
    threshold-based error status present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32MC0STATUS(0x401): 0x1000000020000000 invalid
    IA32MC1STATUS(0x405): 0x0000000000000000 invalid
    IA32MC2STATUS(0x409): 0x0000000000000000 invalid
    IA32MC3STATUS(0x40d): 0x0020000000000000 invalid
    IA32MC4STATUS(0x411): 0x0000000000000011 invalid
    IA32MC5STATUS(0x415): 0xb200001080200e0f valid
    MCA error code: 0x0e0f
    Model specific error code: 0x8020
    Other information: 0x00000010
    Threshold-based status: No tracking
    Status bits:
    Processor context corrupt
    Error enabled
    Uncorrected error
    panic(cpu 1 caller 0x2a9d27): Machine Check at 0x0105c58d, thread:0xde547a8, trapno:0x12, err:0x0,registers:
    CR0: 0x80010033, CR2: 0x759ab090, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x00000000, EBX: 0x0d4c00c0, ECX: 0x00000001, EDX: 0x00000000
    ESP: 0x85793a00, EBP: 0x85793a38, ESI: 0x0d496800, EDI: 0x01067388
    EFL: 0x00000006, EIP: 0x0105c58d
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x7c23afb8 : 0x21b50c (0x5d4438 0x7c23afec 0x223974 0x0)
    0x7c23b008 : 0x2a9d27 (0x595f04 0x595ff1 0x105c58d 0xde547a8)
    0x7c23b0f8 : 0x2a1912 (0x1 0x55aa5 0x0 0x510e1a)
    0x85793a38 : 0x1051fc0 (0x7c1dd0a4 0x1 0xd496800 0x0)
    0x85793b28 : 0x105351c (0x4646aba7 0x80000142 0x0 0x0)
    0x85793be8 : 0x2abb32 (0xffffffff 0x7fffffff 0x85793c28 0x7c1e6000)
    0x85793c08 : 0x22584d (0x7c1e649c 0x4646aa44 0x142 0x7c1e6488)
    0x85793c68 : 0x22661f (0x1 0xde547a8 0xd4d3c58 0x142)
    0x85793cd8 : 0x227243 (0xde547c4 0x299e72b6 0x85793d68 0x86)
    0x85793d48 : 0x2272e7 (0x48a3f9 0x0 0x0 0xdaeb000)
    0x85793d68 : 0x48a201 (0x48a3f9 0xd7764c8 0x85793d88 0x2a358d)
    0x85793dd8 : 0x49732c (0x0 0x0 0x4975c0 0x0)
    0x85793ed8 : 0x497b89 (0x0 0x1 0xe444c10 0x0)
    0x85793f78 : 0x4f1053 (0xdc927e0 0xe444ba0 0xe444be4 0x48a556)
    0x85793fc8 : 0x2a0ef8 (0xe4360e0 0x0 0x10 0x0)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelCPUPowerManagement(105.13.0)@0x1050000->0x106dfff
    BSD process name corresponding to current thread: rsync
    Mac OS version:
    10J567
    Kernel version:
    Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    System model name: MacPro3,1 (Mac-F42C88C8)
    System uptime in nanoseconds: 1384158802011
    unloaded kexts:
    com.apple.driver.AppleFileSystemDriver 2.0 (addr 0xe90000, size 0x12288) - last unloaded 93634437466
    loaded kexts:
    com.SiliconImage.driver.Si3132 1.2.3
    com.apple.filesystems.afpfs 9.7 - last loaded 771679366985
    com.apple.nke.asp_tcp 5.0
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.driver.AppleUpstreamUserClient 3.4.5
    com.apple.driver.AppleMCCSControl 1.0.17
    com.apple.driver.AppleHDA 1.9.9f12
    com.apple.driver.AudioAUUC 1.13
    com.apple.GeForce 6.2.6
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.6
    com.apple.driver.AppleMCEDriver 1.1.9
    com.apple.driver.AppleIntelPenrynProfile 17
    com.apple.driver.ACPISMCPlatformPlugin 4.5.0d5
    com.apple.driver.AppleLPC 1.4.12
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.Oxford_Semi 2.5.8
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage 1.6.3
    com.apple.driver.AppleIntel8254XEthernet 2.1.1b7
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AppleUSBHub 4.1.7
    com.apple.driver.AppleAHCIPort 2.1.5
    com.apple.driver.AppleIntelPIIXATA 2.5.1
    com.apple.driver.AppleEFINVRAM 1.4.0
    com.apple.driver.AppleUSBEHCI 4.1.7
    com.apple.driver.AppleUSBUHCI 4.1.5
    com.apple.driver.AppleACPIButtons 1.3.5
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.5
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.13.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.13.0
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.DspFuncLib 1.9.9f12
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.nvidia.nv50hal 6.2.6
    com.apple.NVDAResman 6.2.6
    com.apple.iokit.IONDRVSupport 2.2
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.2
    com.apple.iokit.IOBluetoothSerialManager 2.3.8f7
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.8.0fc1
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.9.9f12
    com.apple.iokit.IOGraphicsFamily 2.2
    com.apple.iokit.IOHDAFamily 1.9.9f12
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.1.0d3
    com.apple.driver.IOPlatformPluginFamily 4.5.0d5
    com.apple.driver.CSRUSBBluetoothHCIController 2.3.8f7
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.8f7
    com.apple.iokit.IOBluetoothFamily 2.3.8f7
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.driver.AppleUSBHIDKeyboard 141
    com.apple.driver.AppleHIDKeyboard 141
    com.apple.iokit.IOUSBHIDDriver 4.1.5
    com.apple.iokit.IOFireWireSerialBusProtocolTransport 2.0.1
    com.apple.iokit.IOFireWireSBP2 4.0.6
    com.apple.driver.AppleUSBMergeNub 4.1.5
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOATAPIProtocolTransport 2.5.1
    com.apple.iokit.IOSCSIParallelFamily 2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IOUSBUserClient 4.1.5
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.iokit.IOATAFamily 2.5.1
    com.apple.iokit.IOUSBFamily 4.1.7
    com.apple.driver.AppleEFIRuntime 1.4.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 289
    com.apple.iokit.IOStorageFamily 1.6.2
    com.apple.driver.AppleACPIPlatform 1.3.5
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacPro3,1, BootROM MP31.006C.B05, 8 processors, Quad-Core Intel Xeon, 2.8 GHz, 8 GB, SMC 1.25f4
    Graphics: NVIDIA GeForce 8800 GT, NVIDIA GeForce 8800 GT, PCIe, 512 MB
    Memory Module: global_name
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: pci1095,3132, sppci_othermassstorage, Slot-3
    PCI Card: NVIDIA GeForce 8800 GT, Display, Slot-1
    Serial ATA Device: WDC WD5000AAKS-41YGA0, 465.76 GB
    Serial ATA Device: WDC WD5001AALS-00E3A0, 465.76 GB
    Parallel ATA Device: OPTIARC DVD RW AD-7170A
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd500000
    USB Device: Optical Mouse, 0x0458 (KYE Systems Corp. (Mouse Systems)), 0x003a, 0xfd510000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0221, 0xfd520000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: Ixpress X29, Hasselblad, Up to 400 Mb/sec
    Many Thanks,
    Simon.

    I've also got several other Panic Logs relating to the same issues i believe:
    I've also found this is a crucial factor of the Panic report:
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelCPUPowerManagement(105.13.0)@0x1050000->0x106dfff
    Other Report im looking through:
    Interval Since Last Panic Report: 283561 sec
    Panics Since Last Report: 1
    Anonymous UUID: 49A4EEED-A350-42FA-B6D4-7E741BBFDBA5
    Thu Feb 17 15:32:18 2011
    Machine-check capabilities (cpu 3) 0x0000000000000806:
    family: 6 model: 23 stepping: 6 microcode: 1547
    Intel(R) Xeon(R) CPU E5462 @ 2.80GHz
    6 error-reporting banks
    threshold-based error status present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32MC0STATUS(0x401): 0x1000000020000000 invalid
    IA32MC1STATUS(0x405): 0x0000000000000000 invalid
    IA32MC2STATUS(0x409): 0x0000000000000000 invalid
    IA32MC3STATUS(0x40d): 0x0020000000000000 invalid
    IA32MC4STATUS(0x411): 0x0000000000000011 invalid
    IA32MC5STATUS(0x415): 0xb200000080200e0f valid
    MCA error code: 0x0e0f
    Model specific error code: 0x8020
    Other information: 0x00000000
    Threshold-based status: No tracking
    Status bits:
    Processor context corrupt
    Error enabled
    Uncorrected error
    panic(cpu 3 caller 0x2a9d27): Machine Check at 0x0105c58d, thread:0xd4d4b7c, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x7dfe7000, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x00000000, EBX: 0x0d4c01c0, ECX: 0x00000001, EDX: 0x00000000
    ESP: 0x856d3c20, EBP: 0x856d3c58, ESI: 0x0d496800, EDI: 0x01067388
    EFL: 0x00000006, EIP: 0x0105c58d
    Backtrace (CPU 3), Frame : Return Address (4 potential args on stack)
    0x7c290fb8 : 0x21b50c (0x5d4438 0x7c290fec 0x223974 0x0)
    0x7c291008 : 0x2a9d27 (0x595f04 0x595ff1 0x105c58d 0xd4d4b7c)
    0x7c2910f8 : 0x2a1912 (0x1 0x87c70000 0xf4 0x3f800000)
    0x856d3c58 : 0x1051fc0 (0x7c1fd0a4 0x1 0xd496800 0x0)
    0x856d3d48 : 0x105351c (0x3636c554 0x80000011 0x0 0x0)
    0x856d3e08 : 0x2abb32 (0xffffffff 0x7fffffff 0x856d3e48 0x7c206000)
    0x856d3e28 : 0x22584d (0x7c20649c 0x3636c3e2 0x11 0x7c206488)
    0x856d3e88 : 0x22661f (0x1 0xd4d4b7c 0xd4c1884 0x0)
    0x856d3ef8 : 0x227243 (0xd4d4b98 0xd4d4b98 0x856d3f58 0x2329f0)
    0x856d3f68 : 0x2272c4 (0x54ba1c 0xd3fa9c0 0x0 0x7c206000)
    0x856d3f88 : 0x54bad8 (0x54ba1c 0xd3fa9c0 0x0 0x2a9ef2)
    0x856d3fc8 : 0x2a06cc (0xd3fa9c0 0x0 0x10 0xe68c284)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelCPUPowerManagement(105.13.0)@0x1050000->0x106dfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10J567
    Kernel version:
    Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    System model name: MacPro3,1 (Mac-F42C88C8)

  • Tetris Source code in Xlets...Somebody please help me with this topic.

    Hi,
    Hey thanks. I am able to log into the site. I also got the code but again i found that the code is written by taking points and colors to create the shapes. I need some codes in which the shapes are created by taking colored images somewhat in this way,
    colorImage[0] = TrackPicture.loadImage("./images/square_red.png", 29, 29);
    colorImage[1] = TrackPicture.loadImage("./images/square_blue.png", 29, 29);
    colorImage[2] = TrackPicture.loadImage("./images/sqaure_yellow.png", 29, 29);
    colorImage[3] = TrackPicture.loadImage("./images/sqaure_green.png", 29, 29);
    These are the images and by taking co-ordinates they are joined to create shapes. I have tried combining them through the paint( drawImage )method. Please give me some solutions if you have. Thanks in advance.

    Warning: I'm not a game developer, so maybe what I'm going to say has nosense ;)
    What about creating an object for the falling piece? The object control de position of its own squares and check for collisions at the bottom of the screen. Then you should work in the screen as it is a grid where pieces are stored, and everytime the falling object touchs some other piece, check what rows are fully filled and move those which are over it.
    Don't know if it will help you :)
    Cheers

  • I am using Iphone 4... how to delete the updates in the app store icon? I dont want my updates to be there anymore.. pls help me with this.. the history in updates under the app store... thanks.

    I'm using Iphone 4. how to delete the stuff in UPDATES section from the app store icon pls??????

    The only way to do that is to delete the apps on your phone or update the apps.

Maybe you are looking for