How to open docx attachment directly if it attached in editing forward mail

There is a mail with attachment docx file, I click forward to edit, at this moment, I want to open the attachment to check a few, but when I double-click the attachment, it always open a tmp file and ask me which application will be use. how can I disable the tmp file, just use what file is to open it?
Jason

You can not edit an attachment. The changes you make will be lost.

Similar Messages

  • How to open a pdf file and then attach it with images

    I am new to Indesign Server.
    I'm currently working on a pdf.
    I have a white blank pdf template.
    that I want to attach/glue it with images.
    How to open a pdf file and then attach it with images.
    Please, help me.
    Thanks.

    First step would be to make yourself familiar with InDesign desktop version.
    Whatever you intend to achieve, do it there manually. (see regular app docs or forums)
    Then try to automate your steps with scripting (see scripting docs or forum)
    If you can do it with a script in the desktop version, that script will likely also run in ID Server. (see server forum).
    If you can specify missing features not achievable thru scripting or manual use, reconsider to write a plugin (this forum).
    A seasoned C++ programmer will need a few months to learn the basics, wade thru tons of documentation etc. Alternatively consider to hire a consultant to do the development work for you.
    Dirk

  • Hi guys i m new as my name suggest could anybody tell me how to open .docx files on my macbook os x 10.7.4 thnx

    hi  i am a newbie   can anybody tell me how to open .docx files on macbook pro 10.7.4

    Ideally, you need software like Microsoft Word (Office), or Open Office, or NeoOffice, or LibreOffice, or Pages, etc.
    TextEdit or Preview (applications folder) can usually view them, though not always perfectly.
    charlie

  • Email-how to open docx attachments

    Email issue-how do you open docx attachments? My document software is Pages

    You can not edit an attachment. The changes you make will be lost.

  • Using Macro in Excel How to open a SAP directly?

    Hi,
           Can Anyone Suggest and help me to do above Code in Excel,"Using Macro in Excel  How to open SAP directly"
    Example: I want to Open T.CODE: MM01 directly, without login in to SAP, Using Macro, i want to open SAP Directly, Anyone Suggest me how to do it?.............
    I Tried this But it  showing Run time Error'438', Object does not support this property or method........
    VBCODE:
    Dim sap As Object
    Dim conn As Object
    Sub T_login()
    Set sap = CreateObject("SAP.Functions")
    Set conn = sap.Connection
    conn.System = "production"
    conn.client = "800"
    conn.user = "SAPUSER"
    conn.Password = "123456"
    conn.Language = ""
    conn.Tcode = "MM01"
    If conn.logon(0, False) Then
    MsgBox "Logon to the SAP system is not possible", vbOKOnly, "Comment"
    Else
    End If
    If Not IsObject(SapGuiApp) Then
    Set SapGuiApp = CreateObject("Sapgui.ScriptingCtrl.1")
    End If
    If Not IsObject(Connection) Then
    Set Connection = SapGuiApp.OpenConnection("production", True)
    End If
    If Not IsObject(session) Then
    Set session = Connection.Children(0)
    End If
    session.findById("wnd[0]/usr/txtRSYST-MANDT").Text = "CLIENT"
    session.findById("wnd[0]/usr/txtRSYST-BNAME").Text = "USER"
    session.findById("wnd[0]/usr/pwdRSYST-BCODE").Text = "PASSWORD"
    session.findById("wnd[0]/usr/txtRSYST-LANGU").Text = ""
    session.findById("wnd[0]/usr/txtRSYST-LANGU").SetFocus
    session.findById("wnd[0]/usr/txtRSYST-LANGU").caretPosition = 2
    session.findById("wnd[0]").sendVKey 0
    Set wshell = CreateObject("Wscript.Shell")
    wshell.Run Chr(34) & Path & "\script.vbs" & Chr(34), 1, 1
    End Sub
    Anyone send me the Exact code related to this.................
    Its very immediate requirement.................
    Regards
    Karthick

    Hi Karthick,
    You could try the following:
    Sub Test()
    If Not IsObject(SAPguiApp) Then
        Set SAPguiApp = CreateObject("Sapgui.ScriptingCtrl.1")
    End If
    If Not IsObject(Connection) Then
        Set Connection = SAPguiApp.OpenConnection("SYSTEMNAME", True)
    End If
    If Not IsObject(session) Then
        Set session = Connection.Children(0)
    End If
    session.findById("wnd[0]/usr/txtRSYST-MANDT").Text = "123"
    session.findById("wnd[0]/usr/txtRSYST-BNAME").Text = "USER"
    session.findById("wnd[0]/usr/pwdRSYST-BCODE").Text = "PASSWORD"
    session.findById("wnd[0]/usr/txtRSYST-LANGU").Text = "EN"
    session.findById("wnd[0]/usr/txtRSYST-LANGU").SetFocus
    session.findById("wnd[0]/usr/txtRSYST-LANGU").caretPosition = 2
    session.findById("wnd[0]").sendVKey 0
    session.findById("wnd[0]/tbar[0]/okcd").Text = "/nmm01"
    session.findById("wnd[0]").sendVKey 0
    session.findById("wnd[0]").maximize
    MsgBox "If you click on the OK button, the SAP session is terminated."
    End Sub
    SAP GUI should appear in the new design, you must do the following:
    START -> All Programs -> SAP Front End -> SAP GUI Configuration -> Application -> Add -> excel.exe -> Open
    If the program is started from a VBS file, it must be entered here wscript.exe.
    Regards,
    ScriptMan

  • How to open word document directly using ole2 and ole containers

    Hello
    i am using ole conatiners....in forms 6i. i want o open word document directly when i click a button....
    i have tried host....ole but word opens .....i want the document to open at once.....
    what should i use /set
    plz tell by host command and ole2 as well
    its urgent.....
    thanks

    Try this code, Hope this will work.
    declare
    item_name varchar2(80) := 'letter';
    item_id item;
    verb_index_str VARCHAR(20);
    verb_index PLS_INTEGER;
    verb_cnt_str VARCHAR(20);
    verb_cnt NUMBER;
    verb_name VARCHAR(20);
    loop_cntr NUMBER;
    begin
    item_id := Find_Item(item_name);
    IF Id_Null(item_id)THEN
              message('No such item: '||item_name);
    ELSE
    verb_cnt_str := Forms_OLE.Get_Verb_Count(item_id);
    verb_cnt := TO_NUMBER(verb_cnt_str);
    FOR loop_cntr in 1..verb_cnt LOOP
    verb_name := Forms_OLE.Get_Verb_Name(item_id,loop_cntr);
    -- message(verb_name);
    -- message(loop_cntr|| ' '||verb_name);
    IF verb_name = 'Open' or Verb_name = '?E?'THEN
    EXEC_VERB(item_id,verb_name);
    END IF;
         end loop;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    MESSAGE('Error: '||TO_CHAR(SQLCODE)||' '||SQLERRM);
    RAISE FORM_TRIGGER_FAILURE;
    end;

  • How to open jxl workbook directly using JSP...??

    Dear Friends,
    I have created an object for "jxl.write.WritableWorkbook" in my action class, suppose let's say "objWB"
    now I can write this object to a file using objWB.write(), If I write to a file I am able to open it using FileInputStream
    but I don't have permissions on my client machine
    so is there any way, where I can open it directly using JSP.
    Thanks in advance..
    GP
    Don't think be happy

    Don't think, be happy eh? How can you be happy if you have no capacity to register it?
    In any case, to "open" a document in any web environment, you write the binary data to the response with the correct content-type set. If for example you set the content-type to "application/ms-excel" and on the client computer a program is registered to handle that content type, the document might be opened directly in that application. If there is no application registered to handle the content-type, a download of the file is usually offered.
    Do a google search for popular content-type values. I'm sure you can also find examples on how to output a binary file to the response. You are already almost there, in stead of writing the data to the fileoutputstream, write it to the outputstream of the response object in stead.

  • Opening .docx files

    Does anyone know how to open .docx files? I am running 10.4.11 and use Microsoft Office for Mac for word processing. Generally it is no problem for me to use Word to open .doc files that are emailed to me, but I can't seem to open .docx files. I've tried opening these files in both Word and text editor, but neither works. Does anyone have a suggestion? Thanks very much.

    Use this tool, Microsoft Office 2008, or iWork 08 to open them.
    (36818)

  • HT1212 my iPhone is disabled ..... and i don't know how to open it ?

    my iPhone is disabled and i don't know how to open it

    Follow the directions in the article you linked.

  • How to open a ticket with Apple?

    Hi there, anyone knows how to open a ticket directly with Apple on Aperture 3.0.3? I am able to reproduce a problem on every occasion...
    In aperture, if you Edit a file into Photoshop CS3, close the file from Photoshop and goback to Aperture, try to adjust Exposure.... it will crash all the time... no exception...
    a force quit is necessary...
    Thank you so much in advance

    if you have a free online developer account you can use http://developer.apple.com/bugreporter/ the bug reporter where you will get direct feedback otherwise you can send a feedback http://www.apple.com/feedback/aperture.html but you will prolly not get direct feedback (altho it does get read and dealt with).
    HOWEVER
    CS3 is now "out of date". Does it still happen with CS4 or CS5? (not that I am asking you but if you have a friend who can test it it would be great)

  • Tiff dimensions 0x0 but file is 10.5MB. How to open?

    I scanned in a file on a PC (Vista, using Windows Fax and Scan) and am trying to open it on my Mac.
    Preview opens it but just shows a question mark, Photoshop says it can't read it. When I open it in Matlab it has data in it but is scrambled.
    Get Info... shows a tif file of 10.5 MB, with dimensions of 0x0 an an Alpha channel of 0.
    Anyone know where to start with this? I need to get the image as I have no way of scanning it again.
    Thanks.

    hi dominic.
    thanks for the help and the links.
    there is something terribly lacking in mac UI with respect to this unless i am missing something. if i do a search in Spotlight i see results and even when i see the file i want to know something about i have to OPEN FINDER which shows a ton of results (including hundreds if not thousands of eml file that i have to call mac and probably pay to find out why they are still showing up when prefs in Spotlight say to not show them...)  and only then can i actively select the file and have it show a file path at the bottom of the finder window.
    this is maddening. isn't there an option to show this information in Spotlight or to show this information WHEN THE FILE IS OPEN (apologies for the caps). i mean, if i have a file open, maybe i don't know /where/ it came from for some reason.
    for instance, if i am in a hurry and i open the file directly from Spotlight i can edit it and save it but i still have no idea where it resides on my hard drive. similarly if i open a file directly from spotlight and DUPLICATE a file and i want to save it as Version 2 - i have to - - - - well i guess i have to run another search for the file i just opened and am working upon in order to just save the dang file to the same location the original is in?
    i mean, the links are showing that i should open Get Info but i think i need to see the file in finder to run this command anyway since i have to right click on the file itself.
    maybe i am missing something but can't MAC OS just show me the FILE PATH at the top of the document like it does in Finder and also show me the FILE PATH in Spotlight? seems like the current implementation is like a big game of hopscotch for no good reason except the information is not shown to the (power) user.
    maybe i am missing a new feature in ML or in Mavericks or maybe i am using the wrong terms in the original title?
    THANK YOU

  • How do I SAVE a PDF (received as an attachment) directly to my iPhone 4S?

    How do I SAVE a PDF (received as an attachment) directly to my iPhone 4S?

    If you view the attachment in the mail program, and click and hold somewhere on the pdf (I usually use the top right, don't know if it works in other places), you will get an open in button appear. If you then choose to open the pdf in Reader, it will be saved with all the Reader documents.

  • HOW TO OPEN AND SAVE FILES TO/FOR MS-WORD 2007 .docx format

    MS-Office 2007 will open .docx files as well as .doc files. Apple's Pages '08 can OPEN MS Word 2007 documents with the new file format ".docx". Pages '08 can not save as ".docx" files, just ".doc" files, but since MS Office 2007 can open these ".doc" without a problem, you should be covered.
    Here is how.
    To open: Just double click the file and Apple's Pages '08 will import the file and open it for you to use and modify.
    To save and use at your work or school's Windows MS Word 2007: When you are done and ready to save the file, go to FILE in the menu bar in Pages '08 and select EXPORT. Then pick the icon DOC WORD and click NEXT. Then in the SAVE AS box, give it a name and tell where you want to save your file to. Click EXPORT. Export is like Save, as it will now save the file where you told it to save it to. Remember you can use the same name, or give it a new name. Thats it. EASY.
    It will save the file in a Windows Word format of ".doc" that MS Word 2007 can open and use.
    Hope this helps people.
    -Apple //GS

    Why yes. How did you know that I saw the way, the truth and the light?
    I just had so many people ask me how to do this, that I thought I might share it with as many people as I could and help the masses To bad that Apple just did not have it as a simple "Save As:" Maybe in the next update.
    -Apple //GS

  • I downloaded a program to be able to open docx diles and now every time I try to open one there are endless new tabs that read "new Tab" scrollomig across the top of the screen. How do I make it stop?

    I had an old version of office so I tried to install a free download that will allow me to open docx files. Now when I try to open one and endless stream of tabs that say "New Tab" scrolls across the top of the page. How do I make it stop. I already went and got office 2010 but it is still doing it. It does not do it if I use Internet Exployer for the browser.

    See [[Firefox keeps opening many tabs or windows]]

  • Need directions on how to open MUVO

    I have this really anoying headphones jack problem on my Muvo TX.
    the player's still under waranty but I li've far from the place where I bought it so there's no way for me to send it back.
    anyway, what i need from you guys is directions on how to open the muvo tx so I can fix this bad piece of electronics myself.
    I found that thread on the forum in which people fixed this by puting a piece of paper around the connector, but that doesnt work for me.
    to be honest, this is the first and the last mp3 player i buy from creative, this kind of problem in the year 2005 is unacceptable, walkmans in 975 didnt have this issue.
    thanks for any help.

    Tad,
    As BadBoy mention, if the player are having problem and you're within the warranty period then it's best to contact the customer support within your region for assistance.
    Americas Customer Support
    European Customer Support
    Asia Customer Support
    Jason

Maybe you are looking for

  • My iphone 4s is in recovery mode after updating and keeps getting error 4005

    Hi there, I recently tried updating to iOS 7.1 using iTunes. Don't know what went wrong but I got an error (quickly clicked it away so don't know what the first error was) and it is now in recovery mode. Whenever I try to recover it with iTunes it st

  • DC jack harness for a DV7-2278ca

    The DC jack harness on my laptop had two plugs. one on the top of the board and the other with two wires plugged in right underneath the six wire plug. The new board only has the top six wire plug available. I have no where to plug the two wire plug

  • Template for G\L account opening balance

    Hi which is the DTW template for importing G\L account and BP opening balance. Are there any default columns that need to be set ? Regards swapnil

  • Additional Selection in VF05N

    Hi, I am able to add the additional fields in VF05, but I have no idea to apply (additional fields as PLANT) additional selection criteria in VF05N report, Please let us know the process to add new selection for VF05N. Also let us know is there any p

  • 8530 White Screen AFTER Installing a new Screen

    Hi, my dog got hold of my 8530 and put a toothmark in the screen cover. The screen was also damaged meaning I could see white and grey stripes. I bought a new screen and replaced the old one. Now when I turn it on, I get the white screen and i cannot