Sending images to doc file

Hi Experts,
I have a jsp page which is showing the report with the graphs. I want to export the data to doc file.
By using response.setContentType("application/vnd.ms-word");
     response.setHeader("Content-disposition","attachment;filename=Report.doc");I am able to send all the text & tables to the doc file but the images are not going. Please help me sending the graph image to the doc file.
Thanks

You should realize I am just making wild guesses at your problem. And I am assuming you actually have a Microsoft Word document that you are sending. If you do, then following menu options "Insert, Picture, From File..." should work. But if you are just writing out HTML and telling the browser it's actually a Word document, I have no idea.

Similar Messages

  • Send Image through xml file

    Hey guys,
    I want to send an JPEG image through xml file. i dont want to just give the URL of the image but i want to actually send the image through xml. Im new in XML so can you please give me a working sample code.
    Thank you so much.

    Working code will not be difficult to write. Jpeg or other binary info can be encoded in xml using base64 encoding or some other encoding algorithm.
    After base64 encoding you will get some text which will be the base64 equivalent of the image data. This text can be placed in CDATA section of your image element and transferred.
    On the receiving end you will need to decode the text. After this what u have is the binary data for ur image.
    It will not be difficult to find libraries for base64 encodin/decoding on the net.
    Hope it helps

  • My netbook came with MS Works, it's useless. I've downloaded Open Office, but every time I try to open a document (usually .doc files) it opens automatically as a Works wps file. I can't get it to change! Do I just have to uninstall Works?

    Just as above, Works makes documents crazy (eg someone sends me a .doc file by email, I go to open it and it automatically opens as a .wps and I can't get it to stop!) and no-one else can open .wps documents. I know this may not actually be specifically a Firefox issue but have tried a few things on netbook settings etc and am getting nowhere fast.
    Any advice much appreciated x

    http://support.mozilla.com/en-US/kb/Managing+file+types
    Change the '''Action''' for '''''.doc''''' documents to OpenOffice, and then make sure the Mozilla Plugin is enabled in the OpenOffice program. <br />
    Tools > Options > Internet + Browser Plugin
    You have a number of Plugins that are outdated and are a security risk, please visit the Plugin Check page. http://www.mozilla.com/en-US/plugincheck/

  • Sending image as attachment

    I have generated endpoint from WSDL with IBM RAD 7.0.
    I'm sending jpg image as attachment:
    public class Send {
    client-luokkia.
         public static void main(String[] args) {
              try {
                   AttachmentServiceLocator asl = new AttachmentServiceLocator();
                   AttachmentTip tip = asl.getAttachmentTip();
                   System.out.println("send image");
                   sendImage(tip, "file:///C:/temp/12a.jpg");
              } catch (Throwable t) {
                   t.printStackTrace();
         static void sendImage(AttachmentTip tip, String fileName)
                   throws RemoteException {
              try {
                   Toolkit toolkit = Toolkit.getDefaultToolkit();
                   Image image = toolkit.createImage(fileName);
                   image.flush();
                   tip.sendImage(image);
                   System.out.println("image sent");
              } catch (Exception e) {
                   System.out.println("error " + e.getLocalizedMessage());
    }I get this erro from client:
    17.4.2007 14:06:18 com.ibm.ws.webservices.engine.attachments.ImageDataSource <init>
    SEVERE: WSWS3227E:  Error: Exception:
    java.lang.IllegalArgumentException: Width (-1) and height (-1) cannot be <= 0
         at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:1031)
         at java.awt.image.BufferedImage.<init>(BufferedImage.java:347)
         at com.ibm.ws.webservices.engine.components.image.MerlinIO.privilegedSaveImage(MerlinIO.java:139)
         at com.ibm.ws.webservices.engine.components.image.MerlinIO.access$000(MerlinIO.java:95)
         at com.ibm.ws.webservices.engine.components.image.MerlinIO$1.run(MerlinIO.java:108)
         at com.ibm.ws.security.util.AccessController.doPrivileged(AccessController.java:63)
         at com.ibm.ws.webservices.engine.components.image.MerlinIO.saveImage(MerlinIO.java:106)
         at com.ibm.ws.webservices.engine.attachments.ImageDataSource.<init>(ImageDataSource.java:107)
         at com.ibm.ws.webservices.engine.attachments.ImageDataSource.<init>(ImageDataSource.java:98)
         at com.ibm.ws.webservices.engine.encoding.ser.ImageDataHandlerSerializer.serialize(ImageDataHandlerSerializer.java:121)
         at com.ibm.ws.webservices.engine.encoding.SerializationContextImpl.serializeActual(SerializationContextImpl.java:823)
         at com.ibm.ws.webservices.engine.encoding.SerializationContextImpl.serialize(SerializationContextImpl.java:547)
         at com.ibm.ws.webservices.engine.xmlsoap.ext.ParamValue.serializeItem(ParamValue.java:419)
         at com.ibm.ws.webservices.engine.xmlsoap.ext.ParamValue.serialize(ParamValue.java:340)
         at com.ibm.ws.webservices.engine.xmlsoap.ext.RequestResponse.outputImpl(RequestResponse.java:602)
         at com.ibm.ws.webservices.engine.xmlsoap.ext.RequestResponseAlternateContent.serialize(RequestResponseAlternateContent.java:117)
         at com.ibm.ws.webservices.engine.xmlsoap.SOAPElement.outputImpl(SOAPElement.java:1961)
         at com.ibm.ws.webservices.engine.xmlsoap.SOAPElement.outputContentsImpl(SOAPElement.java:2042)
         at com.ibm.ws.webservices.engine.xmlsoap.SOAPElement.outputImpl(SOAPElement.java:2017)
         at com.ibm.ws.webservices.engine.xmlsoap.SOAPEnvelope.outputImpl(SOAPEnvelope.java:355)
         at com.ibm.ws.webservices.engine.xmlsoap.SOAPElement.output(SOAPElement.java:1937)
         at com.ibm.ws.webservices.engine.SOAPPart.writeTo(SOAPPart.java:897)
         at com.ibm.ws.webservices.engine.SOAPPart.writeTo(SOAPPart.java:816)
         at com.ibm.ws.webservices.engine.SOAPPart._getWebServicesInputSource(SOAPPart.java:950)
         at com.ibm.ws.webservices.engine.SOAPPart.getAsWebServicesInputSource(SOAPPart.java:574)
         at com.ibm.ws.webservices.engine.Message.getContentType(Message.java:498)
         at com.ibm.ws.webservices.engine.transport.http.HTTPSender.invoke(HTTPSender.java:491)
         at com.ibm.ws.webservices.engine.PivotHandlerWrapper.invoke(PivotHandlerWrapper.java:227)
         at com.ibm.ws.webservices.engine.PivotHandlerWrapper.invoke(PivotHandlerWrapper.java:227)
         at com.ibm.ws.webservices.engine.PivotHandlerWrapper.invoke(PivotHandlerWrapper.java:227)
         at com.ibm.ws.webservices.engine.WebServicesEngine.invoke(WebServicesEngine.java:332)
         at com.ibm.ws.webservices.engine.client.Connection.invokeEngine(Connection.java:738)
         at com.ibm.ws.webservices.engine.client.Connection.invoke(Connection.java:659)
         at com.ibm.ws.webservices.engine.client.Connection.invoke(Connection.java:617)
         at com.ibm.ws.webservices.engine.client.Connection.invoke(Connection.java:452)
         at com.ibm.ws.webservices.engine.client.Stub$Invoke.invoke(Stub.java:908)
         at org.example.www.AttachmentBindingStub.sendImage(AttachmentBindingStub.java:86)
         at fi.kela.testi.Send.sendImage(Send.java:38)
         at fi.kela.testi.Send.main(Send.java:26)What this mean? Does it mean that image is somehow null or what?

                   sendImage(tip, "file:///C:/temp/12a.jpg");...
                   Image image = toolkit.createImage(fileName);
    Are you sure you can give Toolkit.createImage(String fileName) an URL? Perhaps you should call it with "c:/temp/12a.jpg" instead.

  • How To "Dis-Embed" An Image From A .Doc File?

    Here's what I've got. I'm working on a flier to be commercially printed; it contains four photos and text. I've spent a lot of time with each photo, massaging each in PE to maximize its quality when it's eventually printed, and saved each as a TIFF file. (I "tested" each photo's printability by seeing what I get when I run it through my own Canon printer.)
    What I did next was to take each of the PE processed photos, moved them into a MS Word text document, and saved the final flier results as a .doc file.
    Now, my commercial print shop tells me that better results might be obtained by me giving them the original photos instead of using the completed .doc flier. This is where my problem arises: it's not that I saved too few, I saved too many versions of the photos as works in progress. It's not an easy job to find the exact photo version I, finally, embedded. Using the "direct" approach doesn't seem to work. When I drag a photo out of its .doc file onto my desktop and try to open this clipping (PICT) with PE I get the message, "Could not complete your request because an unexpected end-of-file was encountered."
    So, how do I "dis-embed" each of these photos from the original document and without losing all the nice stuff I did when first processing them? Any comments and suggestions will be appreciated.
    Dave

    Hi,
    You can use javax.swing.ImageIcon like so
    ImageIcon anIcon=new ImageIcon("image.jpg");Hope thats what you are after,
    Cheers
    Jack573

  • I am unable to accept a .doc file from a sender

    FILE TRANSFER ERROR:
    Could not receive file “FAIR v. Rumsfeld.doc” from Tiggsfrnpooh26:
    An error occurred.
    This is what comes up when i try to recieve it.
    I have had no trouble with sending and recieving files in the past, though this is the first time I have tried to recieve a .doc file from someone. And that someone is using a PC.
    Others I ahve recieved and sent files to with no problem were on macs, but i dont think that is the issue here.
    I do have port 5190 open as usual.
    Am i Missing something,
    any questions will be answered right away.

    Hi
    The " v. " was the thing causing the problem.
    12:23 PM Wednesday; March 29, 2006

  • How to send image file through mail without   any attachment

    Plz tell  me how to send image file through mail without any attachment  ( i mean not converting  that image into pdf or any format )  i want to send that text or image  through mail .

    Hi Sandeep,
    I think you can setup the type of email in Shared office Settings in transaction S016.
    There is an option called <Preset document classes>
    You choose this pushbutton to branch to the maintenance screen for the document classes that are directly displayed to users in the Business Workplace for selection when they use the Create function. The name under which the documents are displayed can also be maintained.
    http://help.sap.com/saphelp_nw70/helpdata/en/6c/69c30f418d11d1896e0000e8322d00/content.htm
    Haven't tried it though.
    Regards,
    Siddhesh

  • Problem in sending .doc file as an attachment.!

    Hi SDN,
    I am using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send a .doc file as an attachment i am filling the the table contents_hex with my internal table containing the data in hex format but the attachment coming to the SAP office inbox is not showing the actual data it's showing the file with all hex values.
    can any one tell the reason?
    Please give sample code if possible for sending a word file as an attachment..
    Regards,
    Rahul

    Hi Rahul,
    I am sending you the sample code I have written for TXT.
    you can use the same code for .doc with small modification.
    You use this code and check once and let me know.
    Sample code:
    Declaration:
    DATA : w_name TYPE sos04-l_adr_name.
    DATA: sent_to_all  LIKE  sonv-flag.
    DATA:
      l_datum(10),
      ls_docdata TYPE sodocchgi1,
      lt_objpack TYPE TABLE OF sopcklsti1 WITH HEADER LINE,
      lt_objhead TYPE TABLE OF solisti1 WITH HEADER LINE,
      lt_objtxt TYPE TABLE OF solisti1 WITH HEADER LINE,
      lt_objbin TYPE TABLE OF solisti1 WITH HEADER LINE,
      lt_reclist TYPE TABLE OF somlreci1 WITH HEADER LINE,
      lt_listobject TYPE TABLE OF abaplist WITH HEADER LINE,
      l_tab_lines TYPE i,
      l_tab_lines1 TYPE i,
      l_tab_lines2 TYPE i,
      l_att_type LIKE soodk-objtp.
    CONSTANTS : c_tab TYPE x VALUE '09'.     "tab delimiter between records.
    CONSTANTS : c_line(2) TYPE x VALUE '0D'.
    CONSTANTS : l_newline(2) TYPE x VALUE '0D0A'.        "To insert Newline.
    DATA: v_str LIKE lt_objbin.
    *Program logic
    Main Text
      lt_objtxt = 'Dummy heading. ' .
        APPEND lt_objtxt.
        lt_objtxt = '' .
        APPEND lt_objtxt.
    lt_objtxt = 'Dummy second line.'.
        APPEND lt_objtxt.
        lt_objtxt = '' .
        APPEND lt_objtxt.
        lt_objtxt = 'Regards,'.
         APPEND lt_objtxt.
        lt_objtxt = 'Field Service Team' .
        APPEND lt_objtxt.
        lt_objtxt = '----
        APPEND lt_objtxt.
    lt_objtxt = 'This is system-generated email;please do not reply to this
    message.'  .
        APPEND lt_objtxt.
    lt_objtxt = 'If there are any questions regarding this error message'.
        APPEND lt_objtxt.
    lt_objtxt = '----
        APPEND lt_objtxt.
    Write Packing List (Main)
        DESCRIBE TABLE lt_objtxt LINES l_tab_lines.
        READ TABLE lt_objtxt INDEX l_tab_lines.
      ls_docdata-doc_size = ( l_tab_lines - 1 ) * 255 + STRLEN( lt_objtxt ).
        CLEAR lt_objpack-transf_bin.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_tab_lines.
        lt_objpack-doc_type = 'RAW'.
        APPEND lt_objpack.
    Create Message Attachment   "Attachmant of  file
        LOOP AT itab1.
          CONCATENATE itab1-bldat itab1-blart itab1-bukrs itab1-budat
                      itab1-monat itab1-waers itab1-xblnr itab1-bktxt
                       INTO lt_objbin SEPARATED BY c_tab .
          CONCATENATE  l_newline lt_objbin INTO lt_objbin.
          APPEND lt_objbin.
          CLEAR lt_objbin.
        ENDLOOP.
    Write Packing List (Attachment)
        l_att_type = 'txt'.
        DESCRIBE TABLE lt_objbin LINES l_tab_lines.
        READ TABLE lt_objbin INDEX l_tab_lines.
        lt_objpack-doc_size = ( l_tab_lines - 1 ) * 255
                                        + STRLEN( lt_objbin ).
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_tab_lines.
        lt_objpack-doc_type = l_att_type.
        lt_objpack-obj_name = 'Header file name'.
        lt_objpack-obj_descr = 'Header file name'.
        APPEND lt_objpack.
    *refresh bdclm.     "Attachemnt of second file
       CLEAR lt_objbin.
        LOOP AT bdclm.
          CONCATENATE itab2-indate itab2-intime itab2-tcode
                      itab2-longtext
                      INTO lt_objbin SEPARATED BY c_tab.
          CONCATENATE  l_newline lt_objbin INTO lt_objbin.
          APPEND lt_objbin.
          CLEAR lt_objbin.
        ENDLOOP.
        CLEAR lt_objbin.
    Write Packing List (Attachment)
        l_att_type = 'txt'.
        DESCRIBE TABLE lt_objbin LINES l_tab_lines1.
        l_tab_lines2 = l_tab_lines1 - l_tab_lines.
        READ TABLE lt_objbin INDEX l_tab_lines2.
    lt_objpack-doc_size = ( l_tab_lines2 - 1 ) * 255 + STRLEN( lt_objbin ).
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = l_tab_lines2.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = l_tab_lines + 1.
        lt_objpack-body_num = l_tab_lines2.
        lt_objpack-doc_type = l_att_type.
        lt_objpack-obj_name = 'file name '.
        lt_objpack-obj_descr = 'file name '.
        APPEND lt_objpack.
    Create receiver list
        lt_reclist-receiver = '[email protected]'.
        lt_reclist-rec_type = 'U'.
        APPEND lt_reclist.
    Send Message
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
             EXPORTING
                document_data = ls_docdata
                put_in_outbox = 'X'
                 commit_work = 'X '
    *put_in_outbox = ''
            IMPORTING
                sent_to_all = sent_to_all
    VALUE(NEW_OBJECT_ID) LIKE  SOFOLENTI1-OBJECT_ID
             TABLES
                 packing_list = lt_objpack
                 object_header = lt_objhead
                 contents_bin = lt_objbin
                 contents_txt = lt_objtxt
                 receivers = lt_reclist
    *COMMIT_WORK = X
             EXCEPTIONS
                 too_many_receivers = 1
                 document_not_sent = 2
                 document_type_not_exist = 3
                 operation_no_authorization = 4
                 parameter_error = 5
                 x_error = 6
                 enqueue_error = 7
                OTHERS = 8.
    Thanks,
    Yuvaraj

  • How to send doc files from one system to another using XI

    Hi All,
    I have a requirement to pick the word doc files from one file system and send these word document files to ECC system place in ECC application server.Can we achieve this requirement using XI. If so how we can do this. also let me know can we convert these doc files into proxy and send to ECC?. Please let me know. Thanks.
    Regards,
    Rajesh

    Yes You Can
    XI Converts Unstructured data(That is non -XML)Type- in your case word doc and maps it to Target structure.
    You can either use content conversion
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    /people/venkat.donela/blog/2005/06/08/how-to-send-a-flat-file-with-various-field-lengths-and-variable-substructures-to-xi-30
    /people/anish.abraham2/blog/2005/06/08/content-conversion-patternrandom-content-in-input-file
    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter
    /people/jeyakumar.muthu2/blog/2005/11/29/file-content-conversion-for-unequal-number-of-columns
    /people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem
    /people/michal.krawczyk2/blog/2004/12/15/how-to-send-a-flat-file-with-fixed-lengths-to-xi-30-using-a-central-file-adapter
    You can either built a adaptermodule for the same(U nedd to have Some Java knowledge)
    You can also convert without creating any objects in integration directory link for the same is
    /people/william.li/blog/2006/09/08/how-to-send-any-data-even-binary-through-xi-without-using-the-integration-repository
    ***********Please Reward Points If find Helpful*********

  • AOL mail doesn't send .doc-files with Firefox

    When using Firefox AOL Mail doesn't send .doc-files. Instead a corrupted file with a different size is sent. Any other file type works aswell as sending .doc-files with other browsers works...

    I'm getting a similar problem. Snow Leopard Mail for me seems to be choking on large attachments - sending them, forwarding them, or even moving them from one IMAP folder to another.
    My mails are getting through, but it takes a long time and they are dragging the whole system to a crawl in the process.

  • How to convert Doc file into image

    hello frnds
                     Can any body guide me how to convert doc file into image and show into swf loader.
    actually i have to convert doc files into swf files in runtime so that i have to use this flow.
    is it possible to convert doc file into byte array and than convert into image.
    Thanks And Regards
        Vineet Osho

    You can convert any DisplayObject to byeArray using this function ImageSnapshot.captureBitmapData().getPixels()

  • Mac can't display some images from Windows .doc files.

    I've opened .doc files written in Windows Word in Pages 2009, Mac Word 2008 and Mac Word 2011 and they all fail to show some of the images within these documents. When I open these files in Windows Word, they show up just fine. Why aren't the Macs showing them properly?

    Try downloading OpenOffice or LibreOffice and opening them in one of those. They do a better job of importing Word documents than Pages. Once you've got them open, you can save them as RTF and load them into Pages. Pages is nicer to work with, but OO/LO (basically the same application) has better features.

  • Messages won't send images or files

    For the past 2 or 3 weeks Messages will not let anyone in my office send or receive images, screenshots, or files. This is really disrupting our work because we chat each other screenshots and pdfs all day long to get quick feedback. When send an image it acts totally normal and seems like it has been sent (it doesn't say it can't be delivered or anything), but the person on the receiving end never gets it or any kind of notification about it.
    The first time this happened, I just quit the program and restarted it then sent the image immediately and it went through. But now nothing will get it to send. It was working fine right after we all got Yosemite but then just randomly stopped. Anyone have any ideas how to fix this?

    Hi,
    I have several AIM based accounts and  Google (Jabber) one plus Bonjour and some other computers to test that with.
    I find that it has changed between Messages 7 (Mountain Lion) and the so called Messages 8 in Yosemite (it was also Messages 8 in Mavericks).
    I get different results using different Accounts that are supposed to use the same subroutines.
    In Messages 8 Yosemite I can plain Pic or File in Bonjour to iChat 4.x.x. but not iChat 5 (Snow Leopard).
    I can send plain Pic and Files between all my AIM based Accounts.
    I have a Buddy/contact that I have AIM, Google (Jabber) and Yahoo IDs for and Apple ID for iMessages.
    We have no trouble with iMessages or AIM but Google to Google in Yosemite on both ends appears to be a problem.
    I have not, recently, tried zipping a pic over Google.
    In the past AIM have stopped hidden URL links as these could contain Code (of the malicious sort)
    As jpegs can also be used as a corrupt delivery system  (see http://en.wikipedia.org/wiki/Leap_%28computer_worm%29 delivery and Infection)
    It seemed logical that ways to prevent Auto loading of such items might be to zip them so they could be checked when on the Desktop/Downloads folder.
    AIM has the servers set to allow File (Pics included) as a matter of course.
    Jabber servers need the protocol to be turned On and sometimes to allow Server to Server Proxy sending to help out.
    It could be that Google have turned this Off (it would require much more testing than I have done to come anywhere near proving it)
    I am not aware that anyone has discovered a fix as potentially it effects all four "Services" that accounts can belong to across the app.  (The Yahoo Account has never done anything beyond Text Chats).
    10:12 pm      Tuesday; January 27, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How to send more then one image ore data file

    Here
    http://www.kfhgd.internetcafe-kaufbeuren.de/upload.php
    I use an already
    made script. I want to allow users to send more then one
    image or data file
    to the server. All my efforts for reaching the author had
    been
    unsuccessfully.
    Could someone help me to change the script in my way?
    Ciao, servus und salut
    Janis

    .oO(Janis)
    >Here
    http://www.kfhgd.internetcafe-kaufbeuren.de/upload.php
    I use an already
    >made script. I want to allow users to send more then one
    image or data file
    >to the server. All my efforts for reaching the author had
    been
    >unsuccessfully.
    >
    >Could someone help me to change the script in my way?
    You need multiple file upload form controls in your HTML and
    the PHP
    script has to loop through the array that holds the
    informations about
    all received files.
    The script might also need some additional security checks.
    Currently it
    seems to be possible to upload any arbitrary files, even
    other scripts.
    With some more tweaking the server might be tricked into
    executing them,
    which would be a huge security hole.
    The receiving script has to check the actual file content,
    not just the
    file extension or content type, which can both be faked.
    Where did you get that script from?
    Micha

  • Procedure or Function that send E-mail with image background and file attached

    hi
    I4d like know if someone there is a procedure or function that send E-mail with image background and file attached, for me.
    thanks
    Josi Vieira

    If you go to this part of OTN you will find the official Oracle UTL_SMTP demo, which includes attachments:
    http://technet.oracle.com/sample_code/tech/pl_sql/htdocs/Utl_Smtp_Sample.html
    Getting a background is slightly trickier. The UTL_SMTP package is for primarily sending text e-mails, whereas images require HTML e-mail. I suggest you look at the structure of a sample HTML e-mail and see if you can write the necessary HTML strings in the DATA parameter. Otherwise you'll need to investigate handcrafting a program based on the UTL_TCP package.
    [rant]
    If this seems like a lot of trouble I agree and urge you not to bother. HTML e-mail is one of the curses of the modern age, not least because it is frequently used by purveyors of viruses. I have a filter on my Outlook client that strips out all the HTML in any e-mail I receive, which means I get lots of e-mails rendered unreadable by the inclusion of <HTML> tags. But who cares, they're mostly spam anyway. In fact, the use of HTML in an e-mail is almost always an indicator of the irrelevance of its content.
    [rant]
    Vibes, APC

Maybe you are looking for

  • Is there any way to get the canvases names on the form

    i have a form in Orcle 6i i want when the form load i get the names of the Canvases on the Form automatically to change their visual attribute is there any way to get the name of the canvases on the form automatically Thanks in advance

  • My mac keeps telling me my apple ID and imessage is being used on a new iPhone, help? is this related to Yosemite?

    My mac has popped up with these alerts twice now, one saying 'Your apple ID is now being used for iCloud on a new iPhone.' followed by 'Your phone number is now being used for iMessage and facetime on a new iPhone.' what should I do? I haven't got a

  • Downloading iTunes 8.0 causes error message

    I downloaded iTunes 8.0 and now I get an error message that reads: "Warning! The registry settings used by the iTunes drivers for importing and burning CDs and DVDs are missing. This can happen as a result of install other CD burning software. Please

  • Using 2 AP's for One Network

    Hi, I have an AP Extreme and an older Graphite, both wired using ethernet, that I'd like to use to create one wireless network. I live in a log home that one won't begin to cover. Any info on if this is possible and how to set it up would be greatly

  • There's no Iran in your forms. What should I do?

    Hi, I'm from iran. I have an apple ID, but I can't complete my information for using my ID on iTunes and Store. that's because of my region. There's no Iran in your forms. What should I do?