Easy Bluetooth question

Hello. My cell phone is several years old and I am thinking about getting a new one (the Razors look good) if it's worth it. It would be nice to be able to synch up my contacts and calendar with my laptop and I am wondering how much of a hassle it would be to hook it all up with my Ti-Book 867 OS 10.3.9. USB Bluetooth dongle I suppose and then iSynch? How well does this actually work? What is the set up like? I ask because I had a Palm device years ago and it was a real hassle and had reduced functionality with Mac so I pretty much never used it. I want to avoid another waste of time and money. Thanks very much for your help and suggestions.
-B

Oops...I just realized that I probably should have posed this in the category about Bluetooth (the new forum layout has confused me). Instead of multiple-posting I'll just leave this here and convey my sincere apologies. Sorry...
-B

Similar Messages

  • Havent a clue! Please help! Easy ABAP Question!

    Helly Gurus
    I am loading from a dso to a cube and doing a lookup on a second dso.
    eg
    'Name' is in the DSO1
    I lookup 'Address' from DSO2
    Then load to the cube.
    The problem is there may be more than one address so although I have coded the lookup to
    find all addresses, I do know how to get these into my results.
    Only the first address it finds is there.
    loop at DATA_PACKAGE.
        select * from DSO1 where
        NAME = DATA_PACKAGE-NAME.
        if sy-subrc = 0.
          move-corresponding DSO2 to itab1. collect itab1.
        endif.
        endselect.
      endloop.
    What do I need to do to get all of the results?
    I am in 3.5 so do not have the use of an End Routine.
    Thanks
    Tom Tom

    you need to do several treatments in fact you need to add records on the data_package (by the way it is not an easy ABAP question as you mentioned !)
    So
    Treatment 1: select all the records from ods2 table of adresses outside the loop
        select names adresses
        from ods2
        into table g_itab_ods2
          for all entries in data_package
          where name eq data_package-name.
    Treatment 2: delete double records of the internal table.
        delete adjacent duplicates from g_itab_ods2 comparing names adresses.
    Treatment 3: loop over the data_package. Within this loop read the internal ods2 table and loop over it to assign the corresponding adresses. Then append the results to the temporary data_package_tmp and move all the records to the initial data_package.
    loop at data_package assigning <data_fields>.
       read table g_itab_ods2 into l_g_itab_ods2
          with key name = <data_fields>-name.
          if sy-subrc eq 0.
            loop at g_itab_ods2 assigning <adresses>
            where name                = <data_fields>-name.
              <data_fields>-adresses= <adresses>-adresses.
              append <data_fields> to lt_data_package_tmp.
            endloop.
          endif.
        endloop.
        data_package[] = lt_data_package_tmp[].
    free lt_data_package_tmp.
    this should do what you want to do. hope this could help you out.

  • Can't edit multiple tracks - plus 2 easy audio questions

    I have a sequence with 1 video track and 6 stereo audio tracks. I set an in and an out point. The area on the clips in the timeline between the two edit points highlights, I hit delete. Normally, the tracks between the points should disappear as the two segments come together and form one great edit.
    But all the tracks do not highlight and edit. The video track and stereo audio tracks 3+4 and 5+6 highlight and LIFT off. But audio tracks 1+2 do not highlight or edit. And the whole sequence doesn't close together where the edit should be.
    Only way I have been able to overcome this is to use the razor blade tool, cut each track individually. Highlight them all, and then hit delete.
    This didn't use to be the way. FCP used to edit through one track, 3 tracks or all tracks, no problem.
    Two audio questions. How do you stop the waveforms from drawing onto the clips in the timeline, in order to speed up FCP?
    How do you get the audio in captured clips to be a Stereo Pair, from the outset?
    Thanks to all you who help!

    Is it usual for FCP to bog down on a 4 minute piece when audio wave forms are turned on??
    <
    No. Should run fine. You get up into 6-12 audio tracks, FCP gets all moody and pouty.
    But it depends on your system's capabilities and how well you have chosen your sequence settings.
    Audio waveforms n FCP are a cruel joke compared to many other NLEs. Often easier to leave them off in the timeline, use the waveform in the Viewer and set markers for hooks in the audio tracks.
    bogiesan

  • HDD & Bluetooth questions

    Well Im getting a Macbook for school. Only thinks I dont like about it are the single button trackpad since I will be using Bootcamp and the small size and costs for upgrading the internal HDD. My first questions is.
    What suggestions do you have for Bluetooth mice that dont spaz out at random times. (I dont know exactly how bluetooth works but how long do the batteries generally last and how do i recharge?)
    Then my second questions is is it possible to not only partition the Mac internal HDD for Windows and Mac Os but also external HDDs? (Is firewire better or usb for univeral uses?)
    Thank you

    You can recharge a rechargeable battery by putting it in a battery charger designed to operate on that type of battery, and plugging it in.
    The instructions on this page can be used to partition an external drive so that it contains both Mac OS Extended and FAT32 or NTFS partitions. You should use a FireWire drive, or a model which has both FireWire and USB 2.0 ports.
    (14258)

  • Easy swing question for Java friends

    Hi could somebody test this short application and tell me why the "DRAW LINE" button doesnt draw a line as I expected?
    thank you very much!
    Circuitos.java:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.awt.geom.*;
    public class Circuitos extends JApplet {
         protected JButton btnRect;
         protected Terreno terreno;
         private boolean inAnApplet = true;
         //Hack to avoid ugly message about system event access check.
         public Circuitos() {
              this(true);
         public Circuitos(boolean inAnApplet) {
            this.inAnApplet = inAnApplet;
              if (inAnApplet) {
                   getRootPane().putClientProperty("defeatSystemEventQueueCheck",Boolean.TRUE);
         public void init() {
              setContentPane(makeContentPane());
         public Container makeContentPane() {
              btnRect = new JButton("DRAW LINE");
          btnRect.addActionListener(new ActionListener() {
             public void actionPerformed(ActionEvent e) {
                terreno.pintarTramo();
              terreno = new Terreno();
              JPanel panel = new JPanel();
              panel.setLayout(new BorderLayout());
              panel.add("North",btnRect);
              panel.add("Center",terreno);
              return panel;
         public static void main(String[] args) {
            JFrame frame = new JFrame("Dise�o de Circuitos");
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              Circuitos applet = new Circuitos(false);
              frame.setContentPane(applet.makeContentPane());
              frame.pack();
              frame.setVisible(true);
    }Terreno.java:
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    public class Terreno extends JPanel {
         Graphics2D g2;
         public Terreno() {
              setBackground(Color.red);
              setPreferredSize(new Dimension(500,500));
         public void paintComponent(Graphics g) {
              super.paintComponent(g);
          g2 = (Graphics2D) g;
          g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);    
         public void pintarTramo () {     
              Point2D.Double start   = new Point2D.Double(250,250);
              Point2D.Double end     = new Point2D.Double(250,285);
              g2.draw(new Line2D.Double(start,end));            
    }

    I don't think the date I became a member has anything to do with it. Yes, I signed up a year ago to ask a question or two when I didn't know anything. It wasn't until recently have I started to use this forum again, only to try and help people as well as ask my questions. It took me a year to get to this point to where I can actually answer questions instead of just asking. So don't be silly and judge a person based on their profile.
    Secondly, I agree with you, the search utility is great. I use it all the time and usually I'll find my answers, but if I don't is it such a pain in the butt for you to see the same problem posted again?? I know how much you want people to use the resources available before wasting forum space with duplicate questions, but it's not going to happen. Some people are not as patient and you being a butt about it won't stop it.
    My point in general is that there are nice ways to help people and even rude ways, and your comments at times come across rude to me, even condescending. You have a lot of knowledge, therefore certain things seem trivial to you... but try to understand where some of the new people are coming from. The Swing tutorial is extremely helpful but if you don't understand the concept of programming or java that well... then it can be overwhelming and you don't know where to start. It's a huge tutorial and when people are stuck they just want an answer to their one question. Most figure it's easier to ask someone who already knows instead of reading an entire tutorial to get their answer.
    I've learned by both methods, by taking the time to research it myself and by asking a lot of questions. I have the time. Some don't. Please realize that not everyone is like you and they will continue to ask whether you like it or not. You have a choice, either help them or not.

  • Easy Slide Question for Website

    Easy question for u guys.
    What is the easiest way to create slider header such as these websites ->
    http://www.pclsolutions.com/
    http://www.alivre.com/
    What is the easies way of doing it???
    Dreamweaver has so many options, and I have very limited time so I was wondering if anybody could give me the easy answer here so I can proceed further.
    Thank you in advance guys.

    Log-in to the Adobe Widget Exchange and grab Spry Content Slideshow
    http://labs.adobe.com/technologies/widgetbrowser/
    WOW slider
    http://wowslider.com/
    NIVO slider
    http://nivo.dev7studios.com/
    just to name a few...
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • FORD TRANSIT CONNECT VAN bluetooth question

    The Ford Transit van uses Nokia bluetooth . I have a question regarding connectivity .

    Hi JeffinMass
    It's probably more which Nokia device you are trying to use with it that's the issue here. Unfortunately Nokia Bluetooth connectivity never seems as universal as say any Sony Ericsson device.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Easy runtime question

    So I bind a variable in an ActionScript and store a value at
    compile time. Now I want to update that var at runtime, say
    calculate a meal.

    I had the following Java versions listed on one computer and one of them would not uninstall, so I am wondering how much of a problem that might be for the end user.
    Java 2 Runtime Environment, SE v1.4.2_03
    Java(TM) 6 Update 3
    J2SE Runtime Environment 5.0 Update 6
    Java 2 Runtime Environment Standard Edition v1.3.1_15 (this one is "stuck" within "Add/Remove Programs" listing)
    After removing all of the above Programs and rebooting the computer I installed "jre-6u7-windows-i586-p.exe" which translates as "Java(TM) 6 Update 7" (137.00 MB) for us simple humans to read.
    Suggestions:
    It would be great if the naming conventions of these programs made a little more sense or if the Downloads area of the Java web site had a Frequently Asked Question (FAQ) prominently featured at the top of the page explaining the history of these versions. I have been supporting the installation of these Plug-ins or Programs for several years and feel it has not gotten any easier with regards to names.
    It might even be nice to see a Timeline of versions showing:
    Java(TM) 6 Update 3, Released January 2008
    Java(TM) 6 Update 7, Released October 2008
    This would allow people using specific pieces of older software, as mentioned above, to have some idea of whether the version of Java they find on their machine is the appropriate version for some in-house application that was written and released in December 2007 (for example).
    If a web-based office application I use was written in February of 2008 then I might feel confident "Java(TM) 6 Update 3" is the right version for me!
    If this is confusing for me as an I.T. support professional, I can only imagine how the End Users view these cryptic file names!
    ~
    Edited by: Klaatu01 on Mar 9, 2009 9:49 AM
    Edited by: Klaatu01 on Mar 9, 2009 9:53 AM

  • K7N2L Bluetooth question

    Hi
    Ive have connected the D (bluetooth) bracket on my K7N2 L based system.
    Can anyone tell me if I need to fit an antenna or does the transeiver on the D-Bracket perform this function?
    I'm about to get an iPaq 5550 and want to connect to my PC via bluetooth and share my broadband connection for internet access.
    Any tips or advice on how to set this up would be very welcome.
    Thanks
    Rob :-)

    Hello Wonkanoby
    Thanks for the lightening fast reply!
    I just have a few questions...
    I presume that I can use any BT module or is it best to stick with the MSI kit.  Any recommendations?
    I dont mean to state the obvious but I'm curious to know in what way the "dedicated" port differs from other USB ports.
    Thanks
    Rob
    PS Sunny London???  Sometimes for sure but alas not today!  The sky looks like mushroom soup from here!  

  • Centro to Laptop Bluetooth Question

    Recently purchased a Toshiba Bluetooth to allow my Centro to hotsync with my laptop.  Downloaded the latest Palm Centro software.  Palm Desktop ver 6.2.2 and hotsync ver 7.0.2    Still unable to establish connection?  Can anyone provide advice?
    Post relates to: Centro (Verizon)

    Shift your attention to the Windows Hotsync section of this Forum, where you will find USB drivers available to sync with 64bit systems.
    You can then sync normally with your Hotsync cable.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Bluetooth Question - Mouse AND Keyboard?

    Hey guys. I just bought a new MacBook. It's pretty sweet, I must say.
    But I have one question. If I bought a wireless keyboard and the wireless mighty mouse, would I be able to use both? Because they both use Bluetooth (I'm talking about the official Apple ones) and I want to know if I can use both or if I can use just one before making a purchase.
    Thanks in advance.

    Personally, I prefer the Apple ones. I have two sets to use with my computers.
    Some people like the logitech ones. I just prefer to use the official ones - even if they are a little bit more pricey, they always work and feel so good.

  • Bluetooth question

    I just bought a mac mini and now I am looking at bluetooth mouse and keyboard on ebay. Because the mini has built in bluetooth, does that mean that I do not need to buy the bluetooth adaptor? And all I will need is the bluetooth mouse and keyboard?

    You do not need the Bluetooth adapter if your computer has a Bluetooth module built-in. The adapter enables Bluetooth devices to be used through a computer's USB port.
    (14431)

  • "Easy Setup" Question:   best setting?

    Howdy. I'm creating video with my HD Kodak Zi6 and the output looks a bit squished. (I'm fatter than usual.)
    I've had this trouble before and suspect that I have the wrong setting checked in Easy Set Up.
    What do you folks recommend?
    Thanks.
    Brad in Denver

    Hey Tom, I've been reading a lot of your posts on this forum advising not to get the Zi6 if you want to edit in FCE, but I bought the camera before I found them. I was meaning to ask why this is a bad camera to use, because I've been able to open and edit footage in FCE as well. By going to File > import. I used the easy setup:
    Format - HD, Rate - 29.97, Use -HDV-Apple Intermediate Codec 720p30
    Here is a link to a few clips thrown together with some transitions. I don't really know what I'm doing, so, it's terrible. (You've been warned)
    http://www.vimeo.com/3956558
    I'm really thinking about returning this camera though if it is terrible to pair with FCE, because the only reason I got it was to start learning FCE. I only have 2 days left to return it though. So I need to figure it out real quick. Do you think I should pay the restocking fee and get a cheap used DV camera off amazon/ebay etc?
    Appreciate all your help and posts.

  • Easy DMS Questions

    1. When Creating a DIR thru EDMS,  must it be assigned a number using a defined number range?, Can it not be an External and determined by user?
    2. Folder Numbers (Same ? as above)

    Hi John,
    generally it is recommended that documents in EasyDMS allow the usage of internal numbers. That means for the document type used in EasyDMS in internal number range should be maintained in transaction DC10.
    The usage of external number could be useful for folders and is required for the 2 standard EasyDMS folders:
    private: <userID>
    public: EDIPUBLICROOTFOLDER
    Here the number is assigned externally. For other documents and folders you can also use external numbering during the creation process if you navigate to the tab "Technical Details". Here you can enter a document number as well but this is not that easy when using Drag&Drop function for example.
    Best regards,
    Christoph

  • Easy Reports Questions

    Hi all,
    Platform Windows NT/2000, Reports 2.5
    I have to print the report to a file. The thing is that my report is very wide. It contains a lot of fields, and I want them all in one line, because ultimately it will be read in excel.
    Now i set the MODE to "CHARACTER", and it prints to a file, fine. But when I increase the width of the page, it allows me to set the fields where I want them to, and when I run the report it shows fine in the screen but when printed to the file, it wraps into the other line.
    Please guide my what to do.
    Regards
    naveen

    Hi,
    Actually the question on this topic is posted before
    2 years then also i am giving the solutions for some
    other members having the same problem.
    You have to search for the file DFLT.PRT and
    open this file in the Text Editor (Notepad).
    Change the settings of the width from 80 to the
    width you actually needed in the report output
    (Say 350). Save the file.
    And run the report and make the text file.
    You will see the problem solved.
    Regards
    Abhijit

Maybe you are looking for