Is there a separate program to handle the Bluetooth?

I have T42p and I am sick of the limited functionality for the Bluetooth.
Is there another program to give more functions?

To resolve this issue with my T41 I bought a Jabra doggle. Uninstalled IBM's BT software, installed Jabra's software and never looked back!
With the Jabra I can listen to great sounding stereo music through headphones and use the mouse at the same time. Once in a great while there is a dropout from using the mouse and headphones together but it's perhaps .1% (less than 1%) of the time.
The newer hardware/software will provide all kinds of functionality, unlike IBM's!
EDIT: read my post and realized Jabre should have been spelled JABRA  (it's model A320S, Bluetooth STEREO, highly recommended doggle BTW)
Message Edited by Sojourner on 08-05-2008 12:39 PM

Similar Messages

  • Is there a maximum program size for the AWM GUI?

    Is there a maximum program size for the AWM GUI?
    I have a program that I migrated from Oracle Exress to Oracle 9i. The program runs fine, but I get buffer errors whenever I edit it with the Analytic Workspace Manager GUI. Only my longest program has this problem.
    Has anyone seen this before? Is there a fix/workaround?
    Thank you,
    James

    This problem is solved with the 10.0.0.1.0 AWM client, which is on the 10G CD.
    James

  • Is it possible for a iPod touch to get a virus when downloading free games off the internet? If yes, is there an antivirus program to protect the ipod. and can some of the current apps be saved from the virus damage?

    Is it possible for a iPod touch to get a virus when downloading free games off the internet? If yes, is there an antivirus program to protect the ipod. and can some of the current apps be saved from the virus damage?

    I had one game permanently just stop working, it usually does crash, but that last time it just went bad, I don't know the reason, I tried powering off iPod, relaunching game, but the game never worked again. I think it corrupted its own save file or some of its own data.
    Have you tried another game or app, do those work? If they do, then I guess you know where the problem lies, but if they all stop working, then what about apps, can apps launch?
    Lastly, apps from the app store are checked by Apple, so they are clean.

  • J2ME Program to change the Bluetooth Friendly Name

    Hi,
    Is there any possibility to write a midlet which changes the bluetooth friendly name of the mobile phone?
    Is there any function such as setFriendlyName( )???

    Hello yangafreet,
    please post again if this thread does not answer this question.
    thanks
    Ingo Schumacher
    Systems Engineer Sound&VibrationNational Instruments Germany

  • Is there anyway this program can work the way I want it to work!!??

    Since I had no idea, how to make a new line in .txt in my program(writeBytes("\n") will just make a rectangle in the .txt file)..i decided that I should make a method..below:
    public static String makeLine(int bytesReq)
              String lines = " ";
              //bytesReq /= bytesReq;
              for(int i = 0; i < bytesReq; i++)
                   lines += lines;
              return lines;
         }I wanted program to create a string of empty spaces..depending on the number so I can use it later...in this code..which transfers the stuff inside my link list into the .txt file...
         public static void loopList()throws IOException
              try
                   RandomAccessFile rand = new RandomAccessFile(filet, "rw");
                   EmpLink current;
                   current = first;
                   if(first==null)
                        delay(options.geTime());
                        System.out.println("List is empty!");
                   else
                        //rand.seek(filet.length());
                        while(current != null)
                             for(int i = 0; i < options.getLoops(); i++)
                                  rand.seek(filet.length());
                                 rand.writeBytes("ID: "+current.emp_id + " Name: " + current.fname + " Surname: " + current.lname+" ");
                                  rand.seek(filet.length());
                                  rand.writeChars(makeLine((int)filet.length()/2));
                             current = current.next;
                        delay(options.geTime());
                        System.out.println("TRANSFER COMPLETE!!");
                        System.out.println();
              catch(Exception enk)
                   System.out.println("");
                   System.out.println("There has been a fatal error during execution!!");
                   System.out.println("");
         }when I compile it seem to work but when I run it...it has a OutOfMemoryException..and I don't know why..later I used the length of the string of the ID, Firstname, Lastname but then...something weird happens....
    all of them is repeated three times in .txt and I have no clue why?..
    And right now the .txt file has some kind of east asian characters written in it and is 513KB and still don't have a clue why...
    all I want is to have the next set of data go into the next line....
    Please help...

    DaDonYordel wrote:
    Since I had no idea, how to make a new line in .txt in my program(writeBytes("\n") will just make a rectangle in the .txt file)..i decided that I should make a method..below:
    public static String makeLine(int bytesReq)
              String lines = " ";
              //bytesReq /= bytesReq;
              for(int i = 0; i < bytesReq; i++)
                   lines += lines;
              return lines;
    This returns a string 2^bytesReq long because it doubles in length on every pass.

  • Good evening, How can I check if there are downloaling programs running in the background while using an IPod. I want to eliminate them because my internet dowload volume has increased dramatically.

    How can I check if I have a software(s) installed on my Ipod touch (4th generation) that download information all the time in the background? My internet downlaod consumption has increased dramatically lately and I cannot solve the problem. An online support person from my internet provider suggested to check that out.
    Thanks for your¸help.

    HI northangel,
    you can press the home button double times and the bottom of the screen and it will show apps that are running in the backround.

  • How to Handle the LOV AM in the page level Controller

    Hi All,
    I have standard page ,In that page there is LOV in which user can select any value.
    But the client requirement is the value in the lov has to be displayed has to be displayed automatically the first record of the LOVwhen page is rendered.
    For that i am trying to handle the Lov AM in the extended controller by using
    OAApplicationModule rootAM = pageContext.getRootApplicationModule();
    OAApplicationModule childAM1=(OAApplicationModule)rootAM.findApplicationModule("CsfPoLovAM");
    Here CsfPoLovAM is the AM of the LOV
    when i am doing this i am getting the value of childAM1 as null.
    Could you please let me know is there any other way of handling the AM of lov on the extended controller
    And there is controller is defined for the LOV .
    Thanks
    Ajay

    If there is no CO than you can put a new custom controller in the LOVRN ,in the PR method of new controller get the VO and call the firs() method of this VO like
    LOVVO.first() ;this will full fill your requirement .
    HI Pratap,
    I had created a new custom controller in the LOVRN and in the Process Request.of the controller i am getting the first record.
    like follows
    OAViewObjectImpl vo=(OAViewObjectImpl)am.findViewObject("CsfInstallLotNumberVO1");
    oapagecontext.writeDiagnostics("IN LOV CO Process Request ","vo:"+vo,4);
    if(vo!=null)
    vo.executeQuery();
    Row row=vo.first();
    oapagecontext.writeDiagnostics("IN LOV CO Process Request ","row:"+row,4);
    if(row!=null){
    String lotnumber=(String)row.getAttribute("LotNumber");
    oapagecontext.writeDiagnostics("IN LOV CO Process Request ","lotnumber:"+lotnumber,4);
    oapagecontext.putSessionValue("LotNumberParam",lotnumber);
    i am able to get this lov value in the lov window when the lov item is clicked
    and i am trying to handle that value in my exteded co its getting that value
    Thanks
    Ajay

  • ABAP Program to delete the update rules

    Hi guys,
            Is there any ABAP Program to delete the update rules if any body knows.

    Hi dear,
    try with FM RSAU_UPDR_DELETE...
    Hope it helps!
    Bye,
    Roberto
    ...and please dont forget to reward the answers...it-s THE way to say thanks here !

  • HCM process & Forms - Need logic to handle the Error's when Infotype Update

    Hi Experts,
    Currently im working with HCM process and forms workflow's. I have ten HCM workflow's and everything is working fine.
    Now the issue is, at the time of save, if there is any error like infotype lock or any other Master data error's, then the standard task responsible for save the data, returns the Status as Error.
    Already the approval process for the request is carried out, and it can not be make it again. So I need to save the data without re execution of the process or without re-approval.
    I searched in standard workflow also. There is no option to handle the Infotype update Error's.
    So can any one give me some hint about this? Without the re-initiation i need to save the data's.
    Thanks for your time and Suggestions.

    If you are using the framework to update specific infotypes and they are locked for "no apparent" reason you'll want to open an SAP message.  I would highly discourage you from going down the path of calling that FM, from within workflow no less.  Workflow in the framework was not intended to do such operations, this is supposed to be handled in the decoupled infotype framework (through configuration)... not to mention you won't be using the dec. infty framework by calling that function.
    While I've had to do this before, it was because of a limitation in the framework not something as trivial as a locked infotype.  Who knows, it might actually be locked for a legitimate reason?
    Andy

  • Handling the ORABPEL-schema in production

    Hi,
    are there any guidelines, how to handle the orabpel-schema in the database?
    Its tablespace is growing and growing and the "purge all instances"-button says:
    You are about to delete all the instances stored in the BPEL server. This operation should only be used if you want to clean your testing/development environment. It CANNOT be undone.
    So do i have to export the tablespace and then??
    Any documentation? Best practises?

    Use this script. It will solve ur problem.
    This script purges all the instance in one go from the dehydration store.
    It is the faster way by which you can clear the dehydration store.
    truncate table cube_instance;
    truncate table cube_scope;
    truncate table work_item;
    truncate table wi_exception;
    truncate table document_ci_ref;
    truncate table document_dlv_msg_ref;
    truncate table scope_activation;
    truncate table dlv_subscription;
    truncate table audit_trail;
    truncate table audit_details;
    truncate table sync_trail;
    truncate table sync_store;
    truncate table dlv_message;
    truncate table invoke_message;
    truncate table ci_indexes;
    alter table cube_instance deallocate unused;
    alter table cube_scope deallocate unused;
    alter table work_item deallocate unused;
    alter table wi_exception deallocate unused;
    alter table document_ci_ref deallocate unused;
    alter table document_dlv_msg_ref deallocate unused;
    alter table scope_activation deallocate unused;
    alter table dlv_subscription deallocate unused;
    alter table audit_trail deallocate unused;
    alter table audit_details deallocate unused;
    alter table sync_trail deallocate unused;
    alter table sync_store deallocate unused;
    alter table dlv_message deallocate unused;
    alter table invoke_message deallocate unused;
    alter table ci_indexes deallocate unused;
    alter table cube_scope enable row movement;
    alter table cube_scope shrink space compact;
    alter table cube_scope shrink space;
    alter table cube_scope disable row movement;
    alter table cube_instance enable row movement;
    alter table cube_instance shrink space compact;
    alter table cube_instance shrink space;
    alter table cube_instance disable row movement;
    exec dbms_utility.analyze_schema('ORABPEL', 'Compute');
    Cheers,
    Abhi.

  • Is there a recommanded way to handle Microsoft.ServiceBus.Messaging.ReceiverDisconnectedException?

    In our Cloud Service project, we have 2 instances for work role (deploy to Azure), the work role is consume events from the EventHub using EventProcessorHost(host name is RoleInstance name), we send 100 events(event1~event100) to the EventHub, but some time
    we will got the Exception:
    Microsoft.ServiceBus.Messaging.ReceiverDisconnectedException: A receiver with epoch '3' already exists. A new receiver with epoch 1 cannot be created. TrackingId:5d3f5ed9-c397-42c6-8b9f-5f8f8f904131_G13_B13,TimeStamp:3/4/2015
    2:16:33 AM TrackingId:48438925-b879-4b20-b696-2b4fc3066a13_B13, Reference:b158c7f8-917e-4b24-a6f9-2a63e0af4bb9, Timestamp:3/4/2015 2:16:33 AM
       at Microsoft.ServiceBus.Common.ExceptionDispatcher.Throw(Exception exception)
       at Microsoft.ServiceBus.Common.Parallel.TaskHelpers.EndAsyncResult(IAsyncResult asyncResult)
       at Microsoft.ServiceBus.Messaging.IteratorAsyncResult`1.<CallTask>b__9(TIteratorAsyncResult thisPtr, IAsyncResult r)
       at Microsoft.ServiceBus.Messaging.IteratorAsyncResult`1.StepCallback(IAsyncResult result)
    the 2 instances will got the same event(like event25) when we got the exception, so is there a recommended way to handle the exception or do not occur the exception?

    You don't need to worry for the exception, it's part of the partition move process from one host to another. When partition ownership changes from host to another new host will start receiving from last check point as expected. So you can expect to see
    some duplicates when this happens. The question is that how frequently you're seeing partition ownership changes.

  • Program to download the code(Including code in INCLUDES) into PC file

    hi Experts,
    Is there any SAP program which downloads the code including Code in INCLUDES and text elements associated with that program???
    Thanks & Regards.,
    Chandra

    Hello,
    See this: [SAPLink|https://wiki.sdn.sap.com/wiki/x/sgc].
    With SAPLink you can download the following type of objects.
    ABAP Web Dynpro (requires SAPlink >= 0.1.3)
    BI Infocube
    BI ODS
    BSP
    BSP Extensions
    DDic - Data dictionary objects
    Documentation - SE61
    Interfaces
    Function Groups
    Message Class
    PDF Forms
    Report Variants
    Smartforms
    Transactions
    XSLT
    Regards.

  • Is there any way to restart the bluetooth module without restarting Mountain Lion?

    Im using a Logitech V470 bluetooth mouse. The sensitivity and responsiveness was excellent at first. However, after about 2 to 4 days of using the mouse, it becames jumpy and lags. I found out that it can be solved by restarting the machine. Is there any way of restarting only the bluetooth module but not the whole system? I've tried turning it off and on the preferences, but it didn't solve the jumpy problem. I've also read about resetting the PRAM/NVRAM and it clears up some problems, but according to the instructions given, it will reset the boot setting. So, I don't want to loose my bootcamp partition.
    Thanks.

    Hello:
    To my knowledge, no to your question.
    However, I would suggest you reset both the PRAM and SMC at least once.
    Barry

  • BTTray Error: Unable to start the Bluetooth Stack Service

    I have a HP TouchSmart 610-1190f operating system Windows 7 64-bit
    I installed Norton 360 back in January and ran the registry program which corrupted the Bluetooth.
    BTTray Error:  Unable to start the Bluetooth Stack Service.  I know that a system restore will take care of it, but when it happened I did not know that and I also did not know that I can't go back in time like Windows XP.  I've tried reinstalling the driver with no luck.  Is my only option a System Recovery?

    Product Name: HP H8-1160t
    Product Number: QC45AV#ABA
    I spent over 3 hours with HP chat and in typical fashion they could not solve the problem and requested I restore to original OS. I refused. HP Support needs to figure out a way to RESOLVE a customer problem without first jumping to "please restore your system".
    After a second call to HP, they sent me a replacement Wireless Card, and much to my surprise the Hardware Tech showed up as scheduled on a SATURDAY no less; even after being told by HP that no weekend calls are made.
    Anyway, the very nice service tech installed the new part and ...drum roll....wait for it...Voila!!!!
    NO FIX!!  As expected.  Why Did HP Software Support think the new card would fix the issue?? HP Software Support is virtually USELESS, actually, lets just say without any equivocation at all: HP SOFTWARE Support is USELESS; HARDWARE SUPPORT IS FANTASTIC...
    OK. I FIXED the problem myself:
    I downloaded the Broadcom fix:
    sp56715.exe
    Available from:
    ftp://ftp.hp.com/pub/softpaq/sp56501-57000/ sp56715.exe   (eliminate the spaces...HP forum would not let me load this VALID site.
    I am NOT POSITIVE THAT DOWNLOAD IS FOR YOUR VERSION, BE CERTAIN TO CHECK SYSTEM REQUIREMENTS.
    Rebooted, Bluetooth service started up, NO BTTray Stack Error, discovered my device (old LG Cell Phone), connected, and I was able to access the MY Music, Pictures, Video files finally.
    Trust me, HP Software Support is a waste of time.

  • Why in September when I purchased a through the Edge program with the $5.00 insurance/protection plan (that the sales associate handling the purchase on the phone recommended), is no longer valid?!  2 months after getting the Edge device, I go to make a c

    Where is the insurance and original Edge Agreement from September?  No one in Verizon knows. I purchased (rented) a Galaxy S4 through the Edge program, with the $5.00 insurance/protection plan (that the sales associate handling the purchase on the phone recommended),which is no longer valid!  2 months after getting the Edge device, I go to make a claim and Asurion will not honor it because I am not covered; however, all the order confirmation receipts emailed and physically sent with the device show the addition of insurance when I signed up for the Edge program.  According to Verizon (via live chat with 'Nicole'), this $5 protection plan no longer exists and the order numbers I have on my paperwork (multiple documents) are invalid in the Verizon system.  For over a week, I have spent more than 10 hours on the phone, live chat and in the store trying to get some sort of resolution and the customer service reps just put me on hold or promise to "call me back within 30 minutes after they speak to a supervisor" and (surprise!) they never return my call.  Or they send me to the store to show proof of my documents, but then those associates cannot help either.  Also, the 'Edge Agreement' in my profile has the wrong device (and serial #), wrong payment amounts and no mention of the 'consumer protection plan'  on it, which is listed on the order confirmation sent via email and with the actual Edge device on September 23.  Obviously, there was some sort of glitch or mistake on Verizon's part, but NO ONE WILL EVEN TRY TO ACCEPT THAT FACT!  WHY WON'T ANYONE GET BACK TO ME WITH SOME SORT OF EXPLANATION FOR ANY OF THIS?!  Is it typical for Verizon to do away with a service (i.e., $5.00/month protection) and not inform the customer of this?  And is it company policy to be as unhelpful as possible to a paying customer who needs assistance when there is cleary something wrong on your end?  And finally, am I really suppose to believe that Verizon customer service has no email addresses or fax machines so a customer can send you proof of what is on the receipt you sent and that I have to take more of my time to go to the actual store?!  Finally, does anyone at Verizon even read these messages or even give a F@#k about the customer as long as they keep making money?! 

    RLites22,
    I can understand your concern about the insurance you have on the line. I want to make sure that I put a fresh pair of eyes on your account to find out exactly what is going on. I did send you a Direct Message. Can you please respond back to me in the direct message so we can go over the account specifics. I really hope to hear back from you soon.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for