How do I export the notes out of palm desktop? I get all other info but the notes

null
Post relates to: Treo 700w (Verizon)

Do you mean notepad?
If you're trying to get that to Outlook, I'm the bearer of bad news. I''m not aware it will work. 
Post relates to: None

Similar Messages

  • How can I export to Text and/or CSV format and get correct page info?

    I am using CRVS2010 to upgrade an application from CRXI RDC to .Net.  When at runtime I generate the report and export to Text or CharacterSeparatedValues my page footers show Page -1 of 1.  Using the CRXI RDC, I see the correct page info in the footers.
    When I export to Text, I get the Page -1 of 1 for every page.  If I set LinesPerPage to zero, then I get it all on one page, which still has Page -1 of 1 at the end.
    If I export to CSV, I get Page -1 of 1 for every line.  If I use the viewer to review the report at runtime, and export from there, I cannot export as Text so I have no comparison.  However, the Export to CSV from the Viewer as Page -1 of 1for every entry just as my export does.
    What do I need to do to get the correct line info?  What is that is different from CRXI RDC and CRVS2010 .net that would impact this behavior?

    Yes, I am using SP2 for VS 2010 and I'm using the Page N of M formula in the page footer.  While my export code was not quite as simple as yours, I did it both ways in my test program with the same results.  A one page report whose footer says Page -1 of 1.
    Here's the relative code snippet:
    #if 0
        CrystalDecisions::Shared::ExportOptions ^exportOptions = gcnew CrystalDecisions::Shared::ExportOptions();
        exportOptions->ExportDestinationType = CrystalDecisions::Shared::ExportDestinationType::DiskFile;
        exportOptions->ExportFormatType = CrystalDecisions::Shared::ExportFormatType::Text;
        TextFormatOptions ^textFormatOptions = exportOptions->CreateTextFormatOptions();
        textFormatOptions->LinesPerPage = 0;
        textFormatOptions->CharactersPerInch = 11;
        exportOptions->FormatOptions = textFormatOptions;
         CrystalDecisions::Shared::DiskFileDestinationOptions ^diskFileDestinationOptions = exportOptions->CreateDiskFileDestinationOptions();
         diskFileDestinationOptions->DiskFileName = gcnew System::String("c:\temp\test.txt");
         exportOptions->DestinationOptions = diskFileDestinationOptions;
        thisReport.Export(exportOptions);
    #else
        thisReport.ExportToDisk(CrystalDecisions::Shared::ExportFormatType::Text, gcnew System::String("c:\temp\test.txt"));
    #endif
    Edited by: nlDevotie on Jan 9, 2012 11:59 PM

  • I have a friend who was going to sync her phone with my computer to get the new update..  how do i add her phone with out her losing everything on her phone and not getting all my info on her phone..

    i have a friend who was going to sync her phone with my computer to get the new update..  how do i add her phone with out her losing everything on her phone and not getting all my info on her phone..

    First, create a separate login on your computer for your friend. Do this BEFORE you do anything else. Next, make sure iTunes is up to date. Then:
    1. Disable auto sync when an iPod/iPhone is connected under Preferences>Devices in iTunes.
    2. Make sure you have one contact & one event in the supported applications(Address Book, iCal) on your computer. These entries can be fake, doesn't matter, the important point is that these programs not be empty.
    3. Connect her phone, iTunes running, do not sync at this point.
    4. Store>Authorize this computer.
    5. File>Transfer Purchases(To make sure all purchased content on her phone will be in her itunes library).
    6. Right click in the device pane & select reset warnings.
    7. Right click again and select backup.
    8. Right click again & select restore from backup, select the backup you just made. When prompted to create another backup, decline.
    9. This MUST be followed by a sync to restore her itunes content, which you select from the various tabs, You'll get a popup regarding her contacts & calendars asking to merge or replace, select merge.
    You should be good to go.

  • How can I export the universe  to CSV format in Rational      (java)

    How can I export the universe to CSV format in Rational ,please give me one demo .thanks!!

    There's no direct access to an Universe from Java - Universes do have an SDK, but it's COM-based.
    If what you want is to retrieve data from the Universe, what you can do is create a Web Intelligence document reporting off that Universe, create a Query with the data you want from the Universe, then use the ReportEngine (REBean) SDK to retrieve the ResultSet from the Query - note that there's no CSV export option, so you'd have to walk through the ResultSet and write to an CSV yourself.
    Sincerely,
    Ted Ueda

  • How can i export the data to excel which has 2 tables with same number of columns & column names?

    Hi everyone, again landed up with a problem.
    After trying a lot to do it myself, finally decided to post here..
    I have created a form in form builder 6i, in which on clicking a button the data gets exported to excel sheet.
    It is working fine with a single table. The problem now is that i am unable to do the same with 2 tables.
    Because both the tables have same number of columns & column names.
    Below are 2 tables with column names:
    Table-1 (MONTHLY_PART_1)
    Table-2 (MONTHLY_PART_2)
    SL_NO
    SL_NO
    COMP
    COMP
    DUE_DATE
    DUE_DATE
    U-1
    U-1
    U-2
    U-2
    U-4
    U-4
    U-20
    U-20
    U-25
    U-25
    Since both the tables have same column names, I'm getting the following error :
    Error 402 at line 103, column 4
      alias required in SELECT list of cursor to avoid duplicate column names.
    So How can i export the data to excel which has 2 tables with same number of columns & column names?
    Should i paste the code? Should i post this query in 'SQL and PL/SQL' Forum?
    Help me with this please.
    Thank You.

    You'll have to *alias* your columns, not prefix it with the table names:
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id, b.id, a.val1, b.val1, a.val2, b.val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
      for rData in cData loop
    ERROR at line 18:
    ORA-06550: line 18, column 3:
    PLS-00402: alias required in SELECT list of cursor to avoid duplicate column names
    ORA-06550: line 18, column 3:
    PL/SQL: Statement ignored
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id a_id, b.id b_id, a.val1 a_val1, b.val1 b_val1, a.val2 a_val2, b.val2 b_val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
    PL/SQL procedure successfully completed.
    cheers

  • I added 2 cd's to itunes 11, I have an ipod classic 30gb, how do I export the albums from itunes to my ipod?

    Hi Ihave an ipod classic 30gb, i imported 2 cd's into itunes on win xp pro sp3, how do I export the albums from itunes to my ipod?

    It depends on how you previously added content to the iPod?  Or are saying the iPod is currently empty, and you want to add these albums to it?
    If you want to sync your entire iTunes music library to the iPod, which may or may not be just these two albums at this point, you can do the following.  Select the iPod in iTunes, so that you see the iPod's "management" screen.  If you are using the latest iTunes 12, you do this by clicking the "device button" on the horizontal bar that goes across the iTunes window (near the top).  The button's icon looks like the connected device.
    On the iPod's screen, there is a sidebar (along left side of window).  In the sidebar, under Settings, click Music.  To the right, the iPod's Music settings screen is shown, where you tell iTunes how to sync songs to the iPod.  Near the top, there is a checkbox for Sync Music.  Check that box to enable automatic syncing.  NOTE:  If that box is not already checked, checking it will replace the iPod's existing content with content from your iTunes library.  Any songs on the iPod now that are not in your current iTunes library will be lost.
    Below that setting, there are two options for how to sync songs.  30GB is a decent amount of storage space, so if your entire iTunes library can fit on your iPod, you can use the option to sync Entire music library.  Then click Apply.  iTunes syncs your entire iTunes music library to your iPod.  Going forward, any changes to your iTunes music library (such as adding more albums or songs) will sync automatically to the iPod, the next time it is connected (or when you click Sync if already connected).
    If your situation is different, please reply back with more details.

  • How can I export pictures NOT on camera roll from my ipad to my iMac?

    How can I export pictures NOT on camera roll from my ipad to my iMac?

    Hello jcamengual,
    I was having the same problem you're having - for those that don't understand... I synced photos on to my ipad which placed them inside "photos" not cameral roll. I then sold me laptop as I thought I had no need for it. When I bought my new iMac I tried to use my external hard drive which had my back up on, however my hard drive no longer works. Thus unable to retreive my photos on to my iMac!
    Anyway... long of the short of it is theres no easy way. But there are a few ways. I'm currently using icloud's photo stream. As long as you have photo stream set up on your mac you can create a shared stream on the ipad with a friend. This shared stream will appear on your mac, you can then "import photos" straight from the shared stream.
    Alternativley you could use something like drop box. Sync your pictures from iPad to drop box. Then download from drop box to Mac. As I said, no easy way that I have found but this does work. It just takes a long time.
    Key Facts:
    You can have 5000 photos inside a sharred stream
    You can have 100 sharred streams
    Therefore you can stream 500,000 photos - I hope you don't have that many.
    All explained here: http://support.apple.com/kb/HT4858?viewlocale=en_US&locale=en_US

  • When I export my song it's exporting the unedited version, how do I export the saved version?

    When I export my song it's exporting the unedited version, how do I export the saved version?

    I've just found out, that it sounds fine on my iphone when played through headphones, speakers or even stereo, its just when i play it on itunes, it sounds funny like when it hits lows it goes quiet as if it cant handle them...

  • How do you export your movie using idvd? I keep getting error messages and notices that I do not have enough space to transfer to a dvd.

    How do you export your movie using idvd? I keep getting error messages and notices that I do not have enough space to transfer to a dvd.

    Can you give us the steps to re-create the problem, and the exact wording of the error message you are getting please.

  • HT2486 how can I export the contact book data to a csv file for editing?

    how can I export the contact book data to a csv file for editing?

    You can edit a card right in Contacts. No need to export and re-import.
    Select a name and on the right side, click the Edit button:

  • How can I export the results of a query?

    After executing a select statement I can see the results in a grid but how can I export the results (the data)?
    How can I export the results of a join of two or more tables?

    Right click in the results grid and select the Export menu option

  • How can we export the data from OAF Page to Excel instead of .csv or .txt

    Hello,
    How can we export the data from OAF Page to Excel instead of .csv or .txt
    When i click on the export button it is exporting to txt file, But i need to export the data into Excel by default
    Please help me
    Thanks in advance
    Thanks,
    Raju
    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju
    Edited by: 1006649 on May 21, 2013 10:55 AM

    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju

  • How do I export the music from my itouch when I have recently lost my computer and cd's?

    How do I export the music from my itouch when I have recently lost my computer and cd's?

    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • How can I export the tickets into excel sheet?

    You can edit the report to display the specific information you need.  After choosing "Edit" for the report, you'll find a section at the bottom called "Columns to Display".  Pick and choose exactly what you want, and then click the button for "Save and Run".

    How can I export the tickets in to excel sheet? or get a report
    This topic first appeared in the Spiceworks Community

  • How can I export the very cool Lightroom Map and link to the photos which show on the map?

    How can I export the very cool Lightroom Map and link to the photos which show on the map?
    I love the way Lightroom imported my .gpx files, automatically geocoded the photos, and show where I took them on the map.
    Would love to export this lovely map and the photos which have been geocoded to the map.
    Anyone know how to export this as an HTML file I can import into my web site.
    I'm a Realtor in Berkeley, and integration of the elegant map and the photos.  It would be perfect way to show my clients where the homes are, and what they look like.
    Ira

    You probably didn't get an answer because none exists within Lightroom.
    You can perform a screen caputre of the Lightroom map, and use the resulting JPG/GIF of your screen, however there is no way to hyperlink the point on the map to your photos.
    You might want to consider a non-Lightroom solution, such as uploading the photos to an Album on Flickr (or one of many other photo sharing web sites) and using the mapping capabilites there, which would be hyperlinked to your photos, see example below. You can use Lightroom to geotag the photos and then use Lightroom to upload to Flickr (or other web site) and then use the web site to create and display the map

Maybe you are looking for

  • Photoshop CS 'Program error' but works in different account

    My version of Photoshop CS suddenly stopped working. It said 'program error' when I try to load any files. Then, after quitting, it failed to reload each time. I have tried reinstalling, then uninstalling fully (through Adobe's uninstall procedure).

  • "Random" play doesn't work,stops after each song; multiple plays of same

    One of the more annoying things happening: random doesn't work. I've gone through the Zen Media Explorer, reformated the Zen player, so there were no songs on it. Went and built a list of 37 songs and uploaded via Zen Media Player to the Zen player.

  • What is the best USB 3.0 (small) ext HDD for recording my music on

    Hello everybody! i start with saying........... A Happy Newyear!!!!! I wish you all the very best and love. Now for my question. I would like to know what is the best portable usb 3.0 external HDD for recording my music on. Because since today i am a

  • Component in SWF won't display in Sprite

    Hi I have a Flash sprite that contains a List component. In Flash the list populates fine (using ActionScript) and works as desired, complete with scrollbar. In Director, a plain box appears where the list box should be. (To be clear, the component i

  • IPhoto always opens asking to import photos from Touch

    Hello, Each time I connect the Touch to my Mac, iPhoto automatically opens, as if a camera is connected to the computer, asking if I want to import photos from the Touch? How to disable this feature? What I want to do is export Thanks, Neil