Text editor using text layout

Does anyone know where I can find code that uses TextLayout to create a text editor directly?

Are you sure you wouldn't be better off using a JTextArea? You can set the font to whatever you want, and make the background transparent, and then use its paint() method to paint it on any other Graphics object?
But if you still insist on using TextLayouts, here's a method to generate some.
     String text = "I have a lot of text here that can change with time.\nNote it handles multiple lines";
     public static final char separator = (char)Character.LINE_SEPARATOR;
     Rectangle onScreen = ... ;
     public TextLayout[] getLayouts(Graphics2D g) {
          return getLayouts(g.getFontRenderContext());
     //a temporary list of lines that the text has to broken into. (Each element is a separate line)
     transient Vector v = new Vector();
     /* Anytime another method changes the text, or the attributes of the text, you'll
     * want to set cachedLayouts to null. Otherwise they will automatically be
     * returned whenever you ask for the TextLayout[]'s... makes this MUCH more efficient.
     transient TextLayout[] cachedLayouts = null;
     static transient TextLayout[] emptyLayout = null;
     protected TextLayout[] getLayouts(FontRenderContext frc) {
          if(frc==null) return new TextLayout[0]; //or you might want to throw an exception
          if(text.length()==0) {
               if(emptyLayout==null) {
                    emptyLayout = new TextLayout[1];
                    emptyLayout[0] = new TextLayout((new AttributedString(" ")).getIterator(),frc);
               return emptyLayout;
          if(cachedLayouts!=null) return cachedLayouts;
          String temp = text;
          v.clear();
          //first break up the text into lines based on how many times the line separator char appears
          while(temp.length()>0) {
               if(temp.indexOf(separator)!=-1) {
                    v.add(temp.substring(0,temp.indexOf(separator))+" ");
                    temp = temp.substring(temp.indexOf(separator)+1);
               } else {
                    v.add(temp);
                    temp = "";
          String[] lines = new String[v.size()];
          lines = (String[])v.toArray(lines);
          v.clear();
          int handledText = 0;
          AttributedCharacterIterator aci;
          for(int z = 0; z<lines.length; z++) {
               aci = new AttributedString( lines[z].substring(handledText) ).getIterator();
               LineBreakMeasurer lbm = new LineBreakMeasurer(aci, frc);
               lbm.setPosition(0);
               while (lbm.getPosition() < lines[z].length()) {
                    v.add( lbm.nextLayout(Math.max(onScreen.width-8,0)) );
               handledText+=lines[z].length();
          TextLayout[] t = new TextLayout[v.size()];
          cachedLayouts = (TextLayout[])v.toArray(t);
          return cachedLayouts;
This just gets you layouts. if you actually want to the user to edit those (with cursor and selected text et al) then you have your work cut out for you.

Similar Messages

  • Where can I find a user-guide for the awfull Text-Editor used to enter/edit these forums entries?

    I am desesperate to understand how quite basic functions (just as one of many examples: how can I paste text, that I have formatted in MS Word and want to paste into a Forum Post-Entry?) can be done with the primitive and awful Text Editor used to enter/edit Forum Entries. Notice, that like many other Adobe users, I am not familiar at all with HTML and it is therefore a description of the badly named "Full Editor" that I am looking for.
    Where can I find a User-Guide for this Text Editor?
    My recommendation to Adobe: exercise enough  brute pressure on the developers of this primitive Text Editor to force them to provide something more reasonable, more powerful and more intuitive.

    Thank You Jochem
    I was trying to understand how I could do things as simple as inserting text that I had previously copied. Since there are neither command menüs nor buttons for the Insert of previously copied text, I was trying a mouse right click.....and was being offered in the context menu the choice between "Insert Link", "Insert Image", "Alignement", and "Insert Table"....... but no possibility of a plain insert of previously copied text.
    Now, I realize, that Clearstream supports at least the keyword shortcut of "Ctrl V" ........that I am not using in any other software (I never use any keyboard shortcuts).
    Since Clearstream does not support reasonable choices in the contextual menus, I will need to memorize the most important keyword shortcuts.
    By the way: I detected now, that the "Ctrl V" keyboard shortcut allows me to insert formatted text.
    Even, if I will now begin to be able to use reasonably Clearstream, I am quite surprised to see that such a software provides neither reasonable Contextual Menus, nor a User Guide, nor........
    Thank you again Jochem for your patience with me.

  • How to develop a rich text editor using Web-Dynpro?

    Hello Everyone,
    I am new hire,
    today I got a task from leader to develop a rich text editor using Web-Dynpro,
    Because I just finished the BC400 and NET310 training and lack of expericen in ABAP,
    Can anyone tell me the main idea to accomplish the task?
    Thank you very much.
    Best Regards,
    Derek

    Have you looked at the standard UI Element
    [FormattedTextEdit|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/44/2772f505605447e10000000a422035/frameset.htm] it's not perfect, but it does allow some simple formatting.
    Anything beyond this - you're going to need to use an Island.
    [Thomas Jung's Demo of using an Island to provide a rich text editor|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0c91fc0-932d-2c10-4ca7-f5774950c8e3]
    Cheers,
    Chris

  • Any description on how to use the Text Editor used for this Forum?

    I am very frustrated when trying to use the text Editing functions (without use of HTML, that I do not undertstand) that can be used to create Posts in this Forum .
    Can somebody point me to a good description of the Text Editor used to enter/edit Posts in this Forum? Thanks a lot in advance.

    Ian,
    Thank You very much for your answer.
    Based on your answer, I guess and fear, that there exist no "user guide" for this Text Editor.
    I will wait a little bit more to see whether I get more information/answers. If not, i will probably write a "Feature Request" to request that Adobe provides us or point us to a reasonable User-Guide for this Text Editor.

  • Text Editor using cl_gui_textedit

    Hi,
    I need a text editor box on selection screen in display mode. and I'm using cl_gui_textedit class to get it.. but for some reason its not working.
    Here is the code below -
    report YLTEST1
           no standard page heading line-size 255.
    DATA: g_text_editor             TYPE REF TO cl_gui_textedit,
          g_text_container          TYPE REF TO cl_gui_custom_container,
          g_gen_text_editor         TYPE REF TO cl_gui_textedit,
          g_gen_text_container      TYPE REF TO cl_gui_custom_container.
      DATA: WORDWRAP_POSITION LIKE CL_GUI_TEXTEDIT=>M_WORDWRAP_POSITION.
      data: g_gen_txt_container       TYPE scrfname VALUE  'GENERAL_TEXT_FOR_REPS'.
      DATA: TEXT_TAB      TYPE STANDARD TABLE OF LINE.
    parameters: p_check.
    at selection-screen output.
    Create sales Text container
      WORDWRAP_POSITION = 100.
      IF G_GEN_TEXT_CONTAINER IS INITIAL.
            CREATE OBJECT:
                 G_GEN_TEXT_CONTAINER EXPORTING CONTAINER_NAME = G_GEN_TXT_CONTAINER,
                 G_GEN_TEXT_EDITOR    EXPORTING PARENT = G_GEN_TEXT_CONTAINER
                 WORDWRAP_MODE =  CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
                 WORDWRAP_POSITION = WORDWRAP_POSITION
                 WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=>TRUE.
      ENDIF.
      IF not G_GEN_TEXT_CONTAINER IS INITIAL.
    Set container options
      CALL METHOD: G_GEN_TEXT_EDITOR->SET_TOOLBAR_MODE
                                  EXPORTING TOOLBAR_MODE   = 0,
                   G_GEN_TEXT_EDITOR->SET_READONLY_MODE
                                  EXPORTING READONLY_MODE  = 1,
                   G_GEN_TEXT_EDITOR->SET_STATUSBAR_MODE
                                  EXPORTING STATUSBAR_MODE = 0,
                   G_GEN_TEXT_EDITOR->SET_AUTOINDENT_MODE
                                  EXPORTING AUTO_INDENT    = 1.
    Pass the text to the sales text container
      CALL METHOD G_GEN_TEXT_EDITOR->SET_TEXT_AS_STREAM
        EXPORTING
          TEXT = TEXT_TAB.
      endif.

    Try this way:
    DATA: lo_dock TYPE REF TO cl_gui_docking_container.
    DATA: lo_text_editor TYPE REF TO cl_gui_textedit.
    DATA: lt_tab TYPE STANDARD TABLE OF char80.
    DATA: la_tab LIKE LINE OF lt_tab.
    DATA: w_carrid TYPE sflight-carrid.
    ** Selection Screen
    SELECTION-SCREEN: BEGIN OF BLOCK blk1 WITH FRAME TITLE aaa.
    SELECT-OPTIONS: s_carrid FOR w_carrid.
    SELECTION-SCREEN: END   OF BLOCK blk1.
    INITIALIZATION.
    * Docking container
      CHECK lo_dock IS INITIAL.
      CREATE OBJECT lo_dock
        EXPORTING
          repid     = sy-cprog
          dynnr     = sy-dynnr
          ratio     = 80
          side      = cl_gui_docking_container=>dock_at_bottom
          name      = 'DOCK_CONT'.
      IF sy-subrc <> 0.
        MESSAGE 'Error in the Docking control' TYPE 'S'.
      ENDIF.
    * Text Editor
      CREATE OBJECT lo_text_editor
        EXPORTING
          parent                 = lo_dock
        EXCEPTIONS
          error_cntl_create      = 1
          error_cntl_init        = 2
          error_cntl_link        = 3
          error_dp_create        = 4
          gui_type_not_supported = 5
          OTHERS                 = 6
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set text
      la_tab = 'This is test'.
      APPEND la_tab TO lt_tab.
      CALL METHOD lo_text_editor->set_text_as_r3table
        EXPORTING
          table           = lt_tab
        EXCEPTIONS
          error_dp        = 1
          error_dp_create = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Regards,
    Naimesh Patel

  • Print PDF rich text editor using BI Publisher

    Hi !
    I have a CLOB field from database, and I store data using a rich text editor, like a MS Word system, here as you know, I can write words in bold format, use differents kind of colors, etc... and use all formatted text that the editor allow me. I haven't problems once save this data into table and restore again, I can see all this data formatted , and I don't loose any property of this formatted text.
    The problem is when I want print this information in the same way that I can see in the rich text editor. I use BI Publisher for generate a PDF, when I send this field for print a PDF, the PDF that BI publisher generate, print only text, prints all characters including generating that text is formatted, for example, if the field is written in bold print "<b>hello</b>" in the PDF generated by BI Publisher see "< b. > hello < / b>".
    Please which is the way for print the same as is displayed in the rich text editor?
    Thanks in advance.
    Edited by: Almogaver on 07-mar-2011 14:35
    Edited by: Almogaver on 07-mar-2011 14:35
    Edited by: Almogaver on 07-mar-2011 14:36
    Edited by: Almogaver on 07-mar-2011 14:37

    Bump Again. I understand how to remove the HTML tags, thats not a problem. The problem is getting the report to print the data from a Rich Text Field stored in a CLOB or NCLOB as formatted text. Is there a "Master Style Template" or "Master Rich Text Field Subtemplate"?
    Richard

  • Text editor used to type the contents of the properties file

    ******To all those (expect iainsinclair) who view this message - Sorry for using this forum for my personal contacts **********
    Hi iainsinclair
    Thanx for explaining ur experience to me for my previous posted topic . U did mentioned a text editor called NETBEANS PROPERTY TEXT EDITOR .
    * Can u please explain more about this editor . Is this editor specific to some encodings ....
    * U said that as u enter the Japanese characters in ur keyboard the editor saves the characters in the unicode format. Are the characters displayed in their glyphs or as \u????.
    * Can u give me a list of languages f or which this text editor can be used . Bcoz u had suggested that it can be used for chinese also .
    * I need more info about a Japanese Computer and keyboard. I think we both are in the same level in this topic I18N . Iam working for I18N project in my company. This is my official mail ID- [email protected] .Can u send me ur mail Id so that we make sure that this forum members are not disturbed by our discussion .

    Hi, I'm happy if I can help.
    * Can u please explain more about this editor . Is this editor specific to some encodings ....
    It's the netbeans IDE from www.netbeans.org it's a free integrated development environment for java. It includes many editors, for .java files, .properties files and many others. It is designed to accept text in the non-ascii format and convert it for use in properties files.
    * U said that as u enter the Japanese characters in ur keyboard the editor saves the characters in the unicode format. Are the characters displayed in their glyphs or as \u????.
    They are saved as ascii characters, not glyphs. For example, I entered MSGothic (MS&#12468;&#12471;&#12483;&#12463;) in japanese using net beans and it looks like this when I use a normal text editor: MS\u30B4\u30B7\u30C3\u30AF
    * Can u give me a list of languages f or which this text editor can be used . Bcoz u had suggested that it can be used for chinese also .
    It should work for any language that your windows/linux system has support for (need the right fonts for a start). My system is native japanese, so I have all the required japanese fonts installed. If you want to use (for example) Chinese on an English system, you'll have to get the fonts and probably you will need to modify the jre/lib/font.properties file.
    * I need more info about a Japanese Computer and keyboard. I think we both are in the same level in this topic I18N . Iam working for I18N project in my company. This is my official mail ID- [email protected] .Can u send me ur mail Id so that we make sure that this forum members are not disturbed by our discussion .
    I don't think it's disturbing anyone. Forums are all about sharing information, and there is a lack of experience of I18N in the broader comminity, I feel. This isn't a busy forum... ;-)
    Don't forget to look for the article written by John O'Conner called 'Displaying Text' I don't have the URL handy but it was posted on this forum recently. It's required reading.

  • Saving the text in text editor changes text line format

    In my program I have an output witha  text editor box where
    we type in text and save , and if we want to print it it prints it out
    on a smartform. When I type in a text on the text editor box for example :
    "This will include a policy and best practice for
    what files can be stored on the server and where
    they should reside. The policy will include
    required ownership of each folder and required
    authorizations for access to folders. Also
    included in the policy will be a section describing
    best practices on the file and folder naming
    conventions. Anew file struicture of the drive that
    better aligns with the business. An drive with only
    four folders at the root level also will be de"
    After I type in this text in teh text editor and try saving it
    , it save sthe text but shows up with lots of gaps like below.
    "This will include a policy and best practice for
    what files can be stored on the server and
    where
    they should reside. The policy will include
    required ownership of each folder and
    required
    authorizations for access to folders. Also
    included in the policy will be a section
    describing
    best practices on the file and folder naming
    conventions. Anew file struicture of the drive
    that
    better aligns with the business. An drive with
    only
    four folders at the root level also will be de"
    I am not preety sure why on saving teh typed text it chnages to this format.
    I would like to have my program save it as is typed. Is this possible to do so
    and how?
    Thanks.

    Hi Aarav,
    Check the internal table used to store the text is having line length 100. Change that to 200 or more . You can see the difference . If still the problem persists, enter each line in the text editor and conclude each line with a carriage return( ENTER ) 
    key press.
    Hope this will help you.
    Regards,
    Smart Varghese

  • More than 1 line of text when using text generator from file?

    hi
    have 8 line blocks of text to show onscreen.
    would like to use text generatorn>from file
    all they seem to print is one line.
    is there a work around?
    have trhied soft returns and paragraphs on saved text file.
    no change.
    anyonre know how to get 2 or more lines of text?
    thanks in addvance!

    Select the File generator layer and in the Inspector, select the Layout pane and in Layout controls, set the Layout Method to Paragraph.  Narrow your margins and the text will "flow" into multiple lines.
    You can also keyframe the paragraph layout position. [Probably more info than you want here.]
    That said, you can only display *one line* at a time per File Generator. (If you're up to date with Motion [v5.1.2], you can use more than one File generator.) The generator does not accept any other characters for returns other than newline and carriage return.
    I've never tried it, but thinking about it, you can set Tab stops in the Paragraph layout (double click in the layout rectangle and a ruler should appear over the top -- right click on the ruler to set tabs). If you go back into the original text file and where you need to break lines into two or more, setting a left tab stop in the layout very near the end of a line might force the tabbed text into the next line (did I make that clear enough??)

  • Start text layer (using Text Tool) from current time indicator - Adobe After Effects CC

    This is something that would improve the speed of my workflow considerably. When I click inside a composition using the Text Tool, the text layer always positions itself at the beginning of the composition.
    Is there any way to make the text layer start from the current time indicator so I don't continually have to scroll back to the start of the composition and drag the text layer forward to the desired position?
    Many thanks.

    There's a preference: Create Layers At Composition Start Time.

  • CL_GUI_TEXTEDIT - Text Editor is having old text..

    Hello Experts,
    I have created a text editor using the standard class CL_GUI_TEXTEDIT and invoking the same in two different places.
    In-order to use the text editor screen it in two places i have used FREE <obj> foor clearing the object.
    My problem is, whenever i am using the texteditor screen in both a places for the first time, the data is populated perfectly and if i come to the same screen again the text editor populated with old entries...
    I am clearing the object using the keyword FREE.
    I fould lot of threads for this issue, but still i am not able to figure out the issue.
    I need all your suggestions to fix this.
    Thanks in advance!
    Rgds,
    Benu

    Hi,
    I have the same problem and did call the FREE Method and the FREE object.
    The Problem is that my textedit control does not appear any more after those statements...
    do I have to re-init the control? and how? this code i do after the FREE statements in the PBO of a dynpro
    * Container anlegen
      CREATE OBJECT go_custom_container
        EXPORTING
          container_name              = 'CONTAINER_1'
        EXCEPTIONS
          cntl_error                  = 1
          cntl_system_error           = 2
          create_error                = 3
          lifetime_error              = 4
          lifetime_dynpro_dynpro_link = 5
          OTHERS                      = 6.
      IF sy-subrc <> 0.
        RAISE general_fault.
      ENDIF.
    * Textedit anlegen
      CREATE OBJECT go_textedit_control
        EXPORTING
          parent                 = go_custom_container
        EXCEPTIONS
          error_cntl_create      = 1
          error_cntl_init        = 2
          error_cntl_link        = 3
          error_dp_create        = 4
          gui_type_not_supported = 5
          OTHERS                 = 6.
      IF sy-subrc <> 0.
        RAISE general_fault.
      ENDIF.
    * Eingabemodus auf "read-only" setzen
      CALL METHOD go_textedit_control->set_readonly_mode
        EXPORTING
          readonly_mode = 1.
    * Toolbarmodus setzen (1 = an, 0 = aus)
      CALL METHOD go_textedit_control->set_toolbar_mode
        EXPORTING
          toolbar_mode = 1.
    Thanks and regards,
    Daniel

  • Making Rich Text Editor with PHP in Dreamweaver  - Problem with CKEditor...

    Hi,
    I am developing a website in Dreamweaver and using the platform of PHP and MYSQL. I need to develop a Rich Text Editor just like the one I am typing at the moment. With my recent searches I have come across with CKEditor as one of the possibilities to add a Rich Text Editor to my website. I have seen older versions of CKEditor also known as FCKEditor which I believe unfortunatley is out of date and obsolete now (discontinued). I cannot find any of the downloads now from anywhere on the web.
    I can find FCKEditor tutorials with PHP,  but can not find CKEditor tutorials for PHP (when I try googling it, it always gives me FCKEditor page). Can anyone please help me and tell me if I can still make Rich Text Editor using CKEditor and PHP?
    If yes, please guide me how? Any tutorials or reading material will be very helpful.
    Regards,
    Bilal . Khan

    Yes, you absolutely can use CKEditor to create a rich text editor with PHP/MySQL.I have tried several editors and it's my choice.
    Here is a link to the documentation page:
    http://docs.cksource.com/
    CKFinder is also very good in conjunction with CKEditor. Although it costs $59/per website, it's better than the free alternatives.

  • Create a Text Editor with Java

    I'd really like to create a text editor using Java but, i'm having a little trouble figuring out which direction to take to create it. I'm thinking of purchacing a book on Swing, I know there must be more to learn though. are there anything else that might be useful in achieving my goal?
    Thanks,
    JV
    Message was edited by:
    Shockwave83

    look at the demo examples provided with your jdk.
    For example : jdk1.5.0_10\demo\jfc\Notepad

  • Saving the data of text editor ?

    Hello
    I have ceated a text editor using the following code..
    TOP declarations
    DATA :init,
          container TYPE REF TO cl_gui_custom_container,
          editor    TYPE REF TO cl_gui_textedit.
    DATA: CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
         EDITOR TYPE REF TO Cl_GUI_TEXTEDIT,
          REPID LIKE SY-REPID.
    CONSTANTS: LINE_LENGTH TYPE I VALUE 250.
    Process Before Output
    ====================================================
    IF EDITOR IS INITIAL.
        repid = sy-repid.
        CREATE OBJECT custom_container
           EXPORTING
              CONTAINER_NAME = 'BOX'
           EXCEPTIONS
              CNTL_ERROR = 1
              CNTL_SYSTEM_ERROR = 2
              CREATE_ERROR = 3
              LIFETIME_ERROR = 4
              LIFETIME_DYNPRO_DYNPRO_LINK = 5.
        CREATE OBJECT editor
              EXPORTING
                 parent = custom_container
                WORDWRAP_MODE = CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
                 WORDWRAP_POSITION = line_length
                 WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=>TRUE.
      ENDIF.                 "editor is initial
    *==============================================================
    With this code i am able to achieve the text editor.
    My requirement is to save the text that is typed in the text editor. If any can help me to achive this task will be highly appriciated.
    Thks

    check the sample code..
    this will be in edit mode , you activate the save button, when you press the save button get the text as table using the method GET_TEXT_AS_R3TABLE, now save that internal table to DB.
    REPORT  zvijay_textedit.
    DATA:
      obj_cust     TYPE REF TO cl_gui_custom_container,
      obj_text     TYPE REF TO cl_gui_textedit.
    * Internal table to display
    DATA:
    BEGIN OF i_table OCCURS 0,
      line(132) TYPE c,
    END OF i_table.
    START-OF-SELECTION.
      CALL SCREEN 100.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
    * To create the object custom container
    * screen
      CREATE OBJECT obj_cust
          EXPORTING
              container_name = 'CONTAINER'
          EXCEPTIONS
              cntl_error = 1
              cntl_system_error = 2
              create_error = 3
              lifetime_error = 4
              lifetime_dynpro_dynpro_link = 5.
      IF sy-subrc NE 0.
      ENDIF.                             " IF sy-subrc NE 0
    * create the a TextEdit Control
      CREATE OBJECT obj_text
        EXPORTING
           parent = obj_cust
           wordwrap_mode = cl_gui_textedit=>wordwrap_at_fixed_position
           wordwrap_to_linebreak_mode = cl_gui_textedit=>true
        EXCEPTIONS
            OTHERS = 1.
      MOVE: 'SDN Sample code' TO i_table.
      APPEND i_table.
      CALL METHOD obj_text->set_text_as_r3table
        EXPORTING
          table  = i_table[]
        EXCEPTIONS
          OTHERS = 1.
    * Flush
      CALL METHOD cl_gui_cfw=>flush
        EXCEPTIONS
          OTHERS = 1.
      IF sy-subrc NE 0.
      ENDIF.                               " IF sy-subrc NE 0
    ENDMODULE.                 " STATUS_0100  OUTPUT
    Regards
    Vijay Babu Dudla

  • Re:text editor

    hi
    I create the text editor using the Editor Pane , is there any other way to create a text editor , like OLE in VB
    thanks and regards
    vino

    i did n' t get the scrioll bar in editor pane
    sigh
    Considering this and all of your other Swing questions that you thankfully didn't post in the Swing forum:
    just how much do you know about Swing?

Maybe you are looking for

  • The iPod Nano that I just bought was supposed to be a 16 GB, but it only shows a capacity for 247 MB.  ***!

    For having only had this thing opened and out for maybe little over an hour, I've already run into some pretty serious aggravation.  According to the numerous error messages I'm getting, there's not enough room on my BRAND NEW IPOD NANO for the 1.89

  • Streaming From Lumia 920 to TV

    Hi All. I haven't posted anything here for quite a while which is a reflection of just how delighted I am with my Nokia Lumia 800 and now 920. Thank you Nokia and Microsoft! My 920 is SUCH a step up from the 800! I'm going to hang on to the 800 as a

  • Anyone uploaded video from a Canon Mark III to Final Cut Pro X?

    Can't figure out how to upload video files to Final Cut Pro X. What steps do I need to take. This is all new to me. Thanks!

  • DVD burning and finder

    when i set up to burn a dvd, i open two windows. one has the photos i wish to burn, one has the dvd. i drag files from one to the other just fine. but when i want to remove a file from the dvd list and i drag it to the trash that file/folder is delet

  • PL/SQL using BULK COLLECT and MERGE

    what i am trying to do is to use bulk collect to create an array of row data, then loop through the array and either insert or update a table, hence, merge: FORALL i in ID.first .. ID.last SAVE EXCEPTIONS MERGE INTO table1 t USING ( select ID(i) ID,