Insertion of pictures in a word on Area2 document mutiple

Hi guys, I would like to know how I can insert several pictures into a word document (at the same time), which are located on individual lines in the folder "my pictures." I know that I can select several photos in a block by dragging my finger on the screen. But I want to know how I can insert photos 3 and 4 which are on separate lines in the folder "my pictures."

Kind regards

Paul

If you select a single photo icon, then hold SHIFT key and click on another, all of the intermediate images will be highlighted (and more of the two you have clicked on at the ends).  This allows you to select a solid range of icons.

If you select a single photo icon, and then hold down Ctrl while you click on more images, each image you click is highlighted, allowing you to randomly select ad-hoc icons.

Tags: Windows

Similar Questions

  • Insert a picture into a Word table with report generation tool.

    I was wondering if it is possible to use the report generation tool to place an image in the cell of a table in a Word document?

    Hello

    Yes, you can do this by using the Word change cell VI under reporting > specific word > Word tables in your diagram of function pallet blocks.  After you create a table, you can modify specific cells and send the file path of the image saved on your computer to that specific cell.  I have set up an example that I have attached here as well to help you with this.

  • How do I insert additional pictures in a folder that were not captured by the same device or are updated the postcards and then print them on the record

    How can I insert additional pictures to their appropriate location in a folder? These additional photos are either copies of postcards or changed pictures from another camera and do not show any information regarding taken. I moved their positions right left click and drag , but when I try to burn such displayed (using the Nero essentials as a data disc) , all additional photos appear at the end the slide show and not as stated on my computer.

    I tried different ways in VIEW, but without success. Please help!

    Hello

    You can try to rename the pictures in the sequence number and see if it helps.

    If the problem persists, you can contact the Nero Support.

    http://www.Nero.com/enu/support.html

  • When I insert a picture in wordpad on my steam Tablet 8 hp with windows 8, it comes in upside down

    When I insert a picture in wordpad on my steam Tablet 8 hp with windows 8, it's upside down? How can I fix it?

    Go to the location of the file, right click the photo icon and choose ' open with: painting.  Use the rotate option to rotate the image as you want, then copy and paste in the WordPad program.

  • Using CS3, I want to insert a picture on the active page of my site folder. What is the best way to do it?

    Using CS3, I want to insert a picture on the active page of my site folder. What is the best way to do it?

    The current folder simply reflects what you have already inserted in your site.

    Save images to your Site Local DW folder from your graphical application or move/copy using the file manager of your operating system (Mac Finder or Win Explorer).

    In DW, use the Insert menu to insert images directly into your web page.

    Nancy O.

  • How to insert a picture as a reference in a pdf file

    I'm looking for the steps insert a picture as a reference in a PDF file. The image is in a file and I can't find a way to insert it into a note by using Acrobat Pro XI.

    Thanks in advance

    Michel

    I add the image as an icon of a button field and then duplicate this button to the rest of the pages.

    Or you can add it as a background image of the document, via Tools - Pages - background.

  • for elements 7; How to insert a picture in a picture?

    I need to add an insert small picture in an existing photo.  Is this possible with this software?

    Thank you!

    Julie

    Certainly can!

    1. open the image to insert, and then select it: select > all

    2 copy the Clipboard: Edit > copy

    3. open the destination image and paste it from the Clipboard: Edition > paste. This places the insert a new layer with transparent background-centric.

    4. to resize the Insert, activate the move tool and hold down SHIFT while dragging a corner handle. Position the insert with the buttons on the mouse or the arrows.

    Bit boring isn't it.  Now you can add all kinds of effects. Here, I added a border (using the command of stroke) and added a shadow.

  • How to avoid the width and height of the code when inserting a picture

    Hello

    When I write html codes, I try to use "Ctr + ALt + I" to insert an image in the html code. "the codes will show width and height, for example" < img src = "Add - btn.gif" alt = "" "width ="76"height ="25"/ >", you can see, the code is not clean enough, I must remove the width and height by hand, is there a way I can insert a picture, without codes with the width and height.

    Thank you.

    Frank

    Hello

    First of all, welcome to the forum.

    is it possible that I can insert a picture, without codes with the width and height.

    No without changing the actual code of the marker or create an extension for editing. The first is not recommended because it will change it on all the html code and you must also change the tag for each doctype, and the second takes a lot of time and also needs to be done for each doctype.

    PZ

  • Storage of MS-Word and PDF documents in the database that is downloaded through APEX

    I want to enable users to download MS-Word and PDF documents that they created / edited outside of the app to the APEX for storage in the database with other data in the app.

    I know that I should use a queue item browse an area for this purpose.
    I have a few questions:
    1. what type of database data is best for storage of MS-Word and PDF docs? CLOB?
    2. How can the user see that the file has been downloaded? In other words, how can they see the name of the file has been downloaded? I want to show this on the page for later viewing. I downloaded a document, but later, I have no way to see that the document has actually been downloaded. On the page of the APEX, the browse file evidence not whether or not a previously downloaded file.
    3. how the user can download the previously downloaded?
    4. is there a way to give users the ability to edit a document in an APEX application where they can do the editing of type MS-Word (the font size, type of font, bold, italic, etc.)?

    I know I ask myself a lot here and I appreciate your comments.
    -Reid

    In my case, I am downloading screenshots of my application and then display them. You can feel free to use it if you want, the code has been taken for most examples of downloads of files sent by others. Here is a code to help you get started:

    Description Table file

    CREATE TABLE FILE_UPLOAD
       (name           VARCHAR2(4000) PRIMARY KEY,
        subject        VARCHAR2(4000),
        id             NUMBER,
        blob_content   BLOB,
        mime_type      VARCHAR2(4000),
        PAGE_ID        NUMBER);
    

    How to download file

    IF ( :P20_FILE_NAME is not null ) THEN
         INSERT INTO FILE_UPLOAD (id, NAME, SUBJECT, BLOB_CONTENT, MIME_TYPE, PAGE_ID)
          SELECT ID,:P20_FILE_NAME,:P20_SUBJECT, blob_content, mime_type, :P20_PAGE_ID
                FROM APEX_APPLICATION_FILES
                WHERE name = :P20_FILE_NAME;
       DELETE from APEX_APPLICATION_FILES WHERE name = :P20_FILE_NAME;
      END IF;
    

    Download Image definition of the procedure

    CREATE OR REPLACE PROCEDURE download_my_file(p_file in number) AS
            v_mime  VARCHAR2(48);
            v_length  NUMBER;
            v_file_name VARCHAR2(2000);
            Lob_loc  BLOB;
    BEGIN
      SELECT MIME_TYPE, BLOB_CONTENT, name,DBMS_LOB.GETLENGTH(blob_content)
             INTO v_mime,lob_loc,v_file_name,v_length
        FROM FILE_UPLOAD
       WHERE id = p_file;
        --
        -- set up HTTP header
        --
        -- use an NVL around the mime type and
        -- if it is a null set it to application/octect
        -- application/octect may launch a download window from windows
      owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
    
        -- set the size so the browser knows how much to download
      htp.p('Content-length: ' || v_length);
        -- the filename will be used by the browser if the users does a save as
      htp.p('Content-Disposition:  attachment; filename="'||replace(replace(substr(v_file_name,instr(v_file_name,'/')+1),chr(10),null),chr(13),null)|| '"');
        -- close the headers
      owa_util.http_header_close;
        -- download the BLOB
      wpg_docload.download_file( Lob_loc );
    end download_my_file;
    /
    

    don't forget to grant rights of procedure for the use by any person

    GRANT EXECUTE ON download_my_file TO PUBLIC
    

    Display Image definition of the procedure

    create or replace PROCEDURE "DISPLAY_IMAGE"
    (
      inID NUMBER
    )
    AS
      vMIME VARCHAR2(48);
      vLENGTH NUMBER;
      vFILENAME VARCHAR2(2000);
      vBLOB BLOB;
    BEGIN
      SELECT MIME_TYPE, BLOB_CONTENT, NAME, DBMS_LOB.GETLENGTH(BLOB_CONTENT)
        INTO vMIME, vBLOB, vFILENAME, vLENGTH
      FROM FILE_UPLOAD
      WHERE ID = inID;
      owa_util.mime_header(nvl(vMIME, 'application/octet'), FALSE);
      htp.p('Content-length: ' || vLENGTH);
      owa_util.http_header_close;
      wpg_docload.download_file(vBLOB);
    END;
    /
    

    Again, ensure that everyone has rights to execute the procedure.

    GRANT EXECUTE ON DISPLAY_IMAGE TO PUBLIC
    

    This does not create an editor in the browser, it simply creates a process simple upload/display. For a WYSIWYG editor that manages the PDF format or doc, you need something much more sophisticated, and I can't propose something here.

  • Pages supported by default and converted my word into pages documents. Ugh! now, half are corrupt and will not open. How do I reverse this order?

    Pages has taken over and converted all my Word documents. now, half are corrupt and a mess... How can I make Word my default and how to edit pages documents to Word.

    Pages is not a clone of Word, and you never work in the native Word document format.

    When you open a Word document in Pages, he translated the Word content in document format internal .pages Pages like the active working copy. When you save this content, it is recorded as a Pages document and cannot replace the original content of the word.

    This is when you export this document internal Pages content to the word he has once again reflected in the document format Pages internal to its best estimate in the new Word document format, Pages editing session and uses the same name of the document as the original Word document. Just nothing where you bitten, because Apple gives no assurance that the process of translation will be accurate, and you effectively overwriting your original, rather than generating a different export document name to preserve the original.

    If you want to always open/edit/save in the native format of Word document, then use Word in Office for Mac. It is the only app that offers native Word document changes.

  • How to print a Word using ActiveX document

    How to print a Word using ActiveX document?

    Can I get a document to open and close. Impossible to find a way to have it printed. I think I looked through and I tried all the possible properties and methods, but I may have missed that I need.

    I would have preferred not to open the document if possible.

    Please point me in the right of ownership. For example?

    Thank you

    Chris


  • is it possible to change the word to the document microsoft word pad

    Is there a way to change a word pad to document microsoft word document

    Yes. However, methods available depend on what program you have installed.

    For example

    If Word is installed: open the document in Word Pad and save to RTF. Open the document saved in Word and re - save in Word format.

    Tom Ferguson

  • That is, the output when open the Word or Excel document in Sharepoint

    OS: Windows XP 32 bit sp3

    IE8

    When try click on open the Word document or Excel stored in Sharepoint, exit full of Internet Explorer.

    I suspect that the cause may be due to

    1 installed Microsoft Visual C++ 2008. or

    2. I made a few changes on the associated C++ registry key. But do not remember what changes were made.

    I installed Chome. There is no question to open the Word or Excel document stored in Sharepoint

    If anyone can help.

    Thank you

    See Jimmy

    Hello

    I suggest you to report your charly in the Technet forum for better support.

    http://social.technet.Microsoft.com/forums/en-us/category/SharePoint/

  • I can't open Word or Excel documents that were sent to me people who use Excel lateset version or Word.__I uses the Windows XP desktop. __Is it a download to make the compatible...

    I can't open Word or Excel documents that were sent to me from people who use the lateset of Excel or Word version.
    I use Windows XP office.
    Is there a download to make the compatible...

    Hey Alan Gaskell,.

    First make sure you have all critical updates from Windows Update, already installed on your machine. Then follow the link below to install a compatibility pack that will allow you to open, edit and save the new format.

    http://www.Microsoft.com/downloads/details.aspx?FamilyID=941b3470-3ae9-4aee-8f43-c6bb74cd1466&DisplayLang=en

    If you need assistance please refer to the community of Office Discussion groups:

    http://www.Microsoft.com/Office/Community/en-us/flyoutoverview.mspx

    Hope that helps, I look forward to hearing from you.

    Steven
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • I can print Microsoft Word and Excel documents, but I am not able to print from the web. I get an error message that says: "Activation - Code 20' - error"Printer Not Activated".

    Activate printer F4580

    I run Microsoft Vista.  I have a printer HP F4580.  I can print Microsoft Word and Excel documents, but I am not able to print from the web.  I get an error message that says: "Activation - Code 20' - error"Printer Not Activated".  What should I do to correct this?

    Hello

    ·          What browser do you use to connect to the Internet?

    The error may occur if the wrong printer is set as default, the printer driver printer is missing, or if there are conflicts in Device Manager.

    Step 1: Make sure that the desired printer is set as the default printer:

    http://Windows.Microsoft.com/en-us/Windows7/change-your-default-printer

Maybe you are looking for