get the unwanted letters instead of the picture in an e-mail message.

Hi all


I try to send a mail via gmail.com that I am able to send mail, but when I try
Send an attachment so I get strange text instead of the picture
his photo not showing but it is different in shape text appears in my Inbox.
Here is the result.
also get this error but I am able to send e-mail.
ERROR at line 1:
ORA-20000: Failed to send mail due to the
following error: ORA-29277: invalid SMTP operation
ORA-06512: at "MAIL.MAHI", line 159
ORA-06512: at line 2
===============================================
--BACKUP.SECBOUNDContent-
Type: application/octet-streamContent-Disposition:
 attachment; filename="g.gif"Content-Transfer-Encoding: base64 
Qk2O5QgAAAAAADYAAAAoAAAAwgIAABMBAAABABgAAAAA
AFjlCAAAAAAAAAAAAAAAAAAAAAAAhNWuhNWuhNWuhNWu
hNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNW
uhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWu
hNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNW
uhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
and here the link that I followed to use with my codes...
Re: Sending a message UTL_SMTP collateral issue unique jpg
create or replace package body Mahi
       is
          -- Write a MIME header
          procedure write_mime_header (
              p_conn in out nocopy utl_smtp.connection
           , p_name in varchar2
            , p_value in varchar2
          )
           is
          begin
            utl_smtp.write_data ( p_conn
                                 , p_name || ': ' || p_value || utl_tcp.crlf
             );
         end;
         procedure mail (
            p_sender in varchar2
          , p_recipient in varchar2
           , p_subject in varchar2
           , p_message in varchar2
          )
          is
            l_conn           utl_smtp.connection;
            nls_charset    varchar2(255);
           v_src_loc  BFILE := BFILENAME('BACKUP', 'Logon.jpg');
           --v_src_loc BLOB;
      l_buffer   RAW(54);
      l_amount   BINARY_INTEGER := 54;
      l_pos      INTEGER := 1;
      l_blob     BLOB := EMPTY_BLOB;
      l_blob_len INTEGER;
     v_amount   INTEGER;
              v_fname VARCHAR2(50);

     CURSOR img_cur IS SELECT photo_name,photo
  FROM temp_photo;
 

    --crlf  varchar2(2) := chr(10)||chr(13);

PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
   BEGIN
      UTL_SMTP.WRITE_DATA(l_conn,
                          pi_name || ': ' || pi_header || UTL_TCP.CRLF);
   END;

         begin
            -- get characterset
            select value
            into   nls_charset
            from   nls_database_parameters
            where  parameter = 'NLS_CHARACTERSET';
            /*
            select 
            photo into v_src_loc from
            temp_photo
            where id=1;
            */
            DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
     DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
     v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
     DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
     --DBMS_LOB.COPY(l_blob, v_src_loc, v_amount);
     l_blob_len := DBMS_LOB.getlength(l_blob);
 
           -- establish connection and autheticate
           l_conn   := utl_smtp.open_connection (g_smtp_host, g_smtp_port);
            utl_smtp.ehlo(l_conn, g_smtp_domain);
             utl_smtp.command(l_conn, 'auth login');
             utl_smtp.command(l_conn,utl_encode.text_encode('[email protected]', nls_charset, 1));
            utl_smtp.command(l_conn, utl_encode.text_encode('xxxxx', nls_charset, 1));
             -- set from/recipient
              utl_smtp.command(l_conn, 'MAIL FROM: <'||p_sender||'>');
             utl_smtp.command(l_conn, 'RCPT TO: <'||p_recipient||'>');
            -- write mime headers
             utl_smtp.open_data (l_conn);
             write_mime_header (l_conn, 'From', p_sender);
            write_mime_header (l_conn, 'To', p_recipient);
            write_mime_header (l_conn, 'Subject', p_subject);
             write_mime_header (l_conn, 'Content-Type', 'text/plain; charset=us-ascii');
             write_mime_header (l_conn, 'X-Mailer', g_mailer_id);
             utl_smtp.write_data (l_conn, UTL_TCP.CRLF);
             UTL_SMTP.WRITE_DATA(l_conn,
                         'MIME-Version: 1.0' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' boundary= "' || 'BACKUP.SECBOUND' || '"' ||
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
   
 
             -- write message body
            utl_smtp.write_data (l_conn, p_message);
            OPEN img_cur;
  LOOP
  FETCH img_cur INTO v_fname,l_blob;
end loop;
close img_cur;
            
            UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: text/plain;' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' charset=US-ASCII' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,  p_message || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
     
     UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: application/octet-stream' ||
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' filename="' || 'gpg.jpg' || '"' || --My filename
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
    UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
  /* Writing the BLOL in chunks */
    WHILE l_pos < l_blob_len LOOP
      DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
      UTL_SMTP.write_raw_data(l_conn,
                              UTL_ENCODE.BASE64_ENCODE(l_buffer));
      UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
       l_buffer := NULL;
       l_pos    := l_pos + l_amount;
     END LOOP;
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
   
    -- Close Email
    UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || '--' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
                         UTL_SMTP.CLOSE_DATA(l_conn);
                         utl_smtp.close_data (l_conn);
     UTL_SMTP.QUIT(l_conn);
     DBMS_LOB.FREETEMPORARY(l_blob);
     DBMS_LOB.FREETEMPORARY(l_blob);
     DBMS_LOB.FILECLOSE(v_src_loc);
 
                -- end connection
            utl_smtp.quit (l_conn);
                    exception
             when others
             then
               begin
                  utl_smtp.quit(l_conn);
                exception
                  when others then
                   null;
               end;
               
               raise_application_error(-20000,'Failed to send mail due to the
 following error: ' || sqlerrm);
 DBMS_LOB.FREETEMPORARY(l_blob);
 DBMS_LOB.FREETEMPORARY(l_blob);
      DBMS_LOB.FILECLOSE(v_src_loc);
     raise;
         end;
      end;
      commit;
Note:-I am using Stunnel, Oracle Database 11g R2 and operating system is Linux...
I have installed Linux on virtualBox.


Please suggest me why I get a strange text instead of the picture?
If my code is wrong, please fix it for me...
Thanks in advance...

Tic Tac Toe
Student.

Published by: Johann April 15, 2011 22:57

The main problem is, you have not specified clearly what you are doing and also not a not post your package specifications. After looking more closely at your code, I found that you use gmail.smtp.com and probably with stunnel (UTL_SMTP supports SSL).
In addition, the main idea is to http://monkeyonoracle.blogspot.com/2009/11/plsql-and-gmail-or-utlsmtp-with-ssl.html
If you would like to mention these facts, then probably someone can help you more sooner. In any case, it is an example of work of sending e-mail by using the gmail SMTP server.

SQL> conn sys@orclsb as sysdba
Enter password: ******
Connected.
SQL>
SQL> SHOW USER
USER is "SYS"
SQL>
SQL> /* My database version */
SQL> SELECT * FROM v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production

SQL> /* Creating DIRECTRY OBJECT. The physical path is C:\ */
SQL> CREATE DIRECTORY saubhik AS 'C:\';

Directory created.

SQL> /* Giving required grants to user SCOTT */
SQL> GRANT READ,WRITE ON DIRECTORY saubhik TO scott;

Grant succeeded.

SQL> /* Now connecting to the user scott, to run the emailing procedure */
SQL> conn scott@orclsb
Enter password: *****
Connected.
SQL>
SQL> SHOW USER
USER is "SCOTT"
SQL>
SQL> 

Now, the code principal.

SQL> SHOW USER
USER is "SCOTT"
SQL>
SQL> DECLARE
  2    v_nls_charset VARCHAR2(50);
  3    /*LOB operation related varriables */
  4    v_src_loc  BFILE := BFILENAME('SAUBHIK', 'Winter.jpg');
  5    l_buffer   RAW(54);
  6    l_amount   BINARY_INTEGER := 54;
  7    l_pos      INTEGER := 1;
  8    l_blob     BLOB := EMPTY_BLOB;
  9    l_blob_len INTEGER;
 10    v_amount   INTEGER;
 11
 12    /*UTL_SMTP related varriavles. */
 13    v_connection_handle  UTL_SMTP.CONNECTION;
 14    v_from_email_address VARCHAR2(30) := '[email protected]';
 15    v_to_email_address   VARCHAR2(30) := '[email protected]';
 16    /*
 17     I have used stunnel to send mail using smtp.gmail.com
 18     To get stunnel see http://stunnel.org/.
 19     The ORIGINAL idea is here :
 20     http://monkeyonoracle.blogspot.com/2009/11/plsql-and-gmail-or-utlsmtp-with-ssl.html
 21    */
 22    v_smtp_host          VARCHAR2(30) := 'localhost';
 23    v_subject            VARCHAR2(30) := 'Your Test Mail';
 24    l_message            VARCHAR2(200) := 'This is test mail using UTL_SMTP';
 25
 26    /* This send_header procedure is written in the documentation */
 27    PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
 28    BEGIN
 29      UTL_SMTP.WRITE_DATA(v_connection_handle,
 30                          pi_name || ': ' || pi_header || UTL_TCP.CRLF);
 31    END;
 32
 33  BEGIN
 34
 35    SELECT value
 36      INTO v_nls_charset
 37      FROM nls_database_parameters
 38     WHERE parameter = 'NLS_CHARACTERSET';
 39
 40    /*Preparing the LOB from file for attachment. */
 41    DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
 42    DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
 43    v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
 44    DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
 45    l_blob_len := DBMS_LOB.getlength(l_blob);
 46
 47    /*UTL_SMTP related coding. */
 48    v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host,
 49                                                    port => 1925);
 50    UTL_SMTP.EHLO(v_connection_handle, 'gmail.com');
 51    UTL_SMTP.COMMAND(v_connection_handle, 'auth login');
 52    UTL_SMTP.COMMAND(v_connection_handle,
 53                     UTL_ENCODE.TEXT_ENCODE('[email protected]',
 54                                            v_nls_charset,
 55                                            1));
 56    UTL_SMTP.COMMAND(v_connection_handle,
 57                     UTL_ENCODE.TEXT_ENCODE('my password', v_nls_charset, 1));
 58    --UTL_SMTP.MAIL(v_connection_handle, v_from_email_address);
 59    --UTL_SMTP.RCPT(v_connection_handle, v_to_email_address);
 60    UTL_SMTP.COMMAND(v_connection_handle,
 61                     'MAIL FROM: <' || v_from_email_address || '>');
 62    UTL_SMTP.COMMAND(v_connection_handle,
 63                     'RCPT TO: <' || v_to_email_address || '>');
 64    UTL_SMTP.OPEN_DATA(v_connection_handle);
 65    send_header('From', '"Sender" <' || v_from_email_address || '>');
 66    send_header('To', '"Recipient" <' || v_to_email_address || '>');
 67    send_header('Subject', v_subject);
 68    --MIME header.
 69    UTL_SMTP.WRITE_DATA(v_connection_handle,
 70                        'MIME-Version: 1.0' || UTL_TCP.CRLF);
 71    UTL_SMTP.WRITE_DATA(v_connection_handle,
 72                        'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
 73    UTL_SMTP.WRITE_DATA(v_connection_handle,
 74                        ' boundary= "' || 'SAUBHIK.SECBOUND' || '"' ||
 75                        UTL_TCP.CRLF);
 76    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
 77
 78    -- Mail Body
 79    UTL_SMTP.WRITE_DATA(v_connection_handle,
 80                        '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
 81    UTL_SMTP.WRITE_DATA(v_connection_handle,
 82                        'Content-Type: text/plain;' || UTL_TCP.CRLF);
 83    UTL_SMTP.WRITE_DATA(v_connection_handle,
 84                        ' charset=US-ASCII' || UTL_TCP.CRLF);
 85    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
 86    UTL_SMTP.WRITE_DATA(v_connection_handle, l_message || UTL_TCP.CRLF);
 87    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
 88
 89    -- Mail Attachment
 90    UTL_SMTP.WRITE_DATA(v_connection_handle,
 91                        '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
 92    UTL_SMTP.WRITE_DATA(v_connection_handle,
 93                        'Content-Type: application/octet-stream' ||
 94                        UTL_TCP.CRLF);
 95    UTL_SMTP.WRITE_DATA(v_connection_handle,
 96                        'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
 97    UTL_SMTP.WRITE_DATA(v_connection_handle,
 98                        ' filename="' || 'Winter.jpg' || '"' || --My filename
 99                        UTL_TCP.CRLF);
100    UTL_SMTP.WRITE_DATA(v_connection_handle,
101                        'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
102    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
103
104    /* Writing the BLOL in chunks */
105    WHILE l_pos < l_blob_len LOOP
106      DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
107      UTL_SMTP.write_raw_data(v_connection_handle,
108                              UTL_ENCODE.BASE64_ENCODE(l_buffer));
109      UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
110      l_buffer := NULL;
111      l_pos    := l_pos + l_amount;
112    END LOOP;
113    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
114
115    -- Close Email
116    UTL_SMTP.WRITE_DATA(v_connection_handle,
117                        '--' || 'SAUBHIK.SECBOUND' || '--' || UTL_TCP.CRLF);
118    UTL_SMTP.WRITE_DATA(v_connection_handle,
119                        UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
120
121    UTL_SMTP.CLOSE_DATA(v_connection_handle);
122    UTL_SMTP.QUIT(v_connection_handle);
123    DBMS_LOB.FREETEMPORARY(l_blob);
124    DBMS_LOB.FILECLOSE(v_src_loc);
125
126  EXCEPTION
127    WHEN OTHERS THEN
128      UTL_SMTP.QUIT(v_connection_handle);
129      DBMS_LOB.FREETEMPORARY(l_blob);
130      DBMS_LOB.FILECLOSE(v_src_loc);
131      RAISE;
132  END;
133  /

PL/SQL procedure successfully completed.

SQL> 

I got the email in my email perfectly with the attachment.

Tags: Database

Similar Questions

  • How to turn the camera off when I get the picture?

    How to turn the camera off when I get the picture?

    How to turn the camera off when I get the photo I do my iphone 6 mute and when I get the picture give sound

    Some countries do not allow phones take pictures of silent.  iPhones sold in these countries do not allow the sound picture to shut up.

  • I downloaded a program to watch on my Media Player and when I press on play I have sound but no picture, only models. How can I get the picture?

    original title: help!

    I downloaded a program to watch on my Media Player and when I press on play I have sound but no picture, only models. How can I get the picture?

    What is the format of the video file?

    If the extension is. AVI... no guarantee... but maybe
    you need the XviD Codec.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    XviD Codec
    http://www.xvidmovies.com/codec/

  • When booting I get the Visual C++ runtime library error message. This application has requested the execution in an unusual way. Any ideas how to fix?

    When booting I get the Visual C++ runtime library error message

    Hi ToddLynch,

    (1) since when are you facing this problem?

    (2) remember to make changes?

    It is sufficient to indicate the complete error message you receive.

    Put the computer to boot and then check if the problem persists

    Follow step 1 in the link below,

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    If everything works well after a clean boot, you can deduce that some third-party services are at the origin of the problem.

    Continue with the remaining steps to pin-point on the third party service.

    After find you the program that is causing the problem, you will have to perhaps to update or install a newer version of the program, if you rarely use that you should consider uninstalling the software.

    Important: n ' forget not to put the computer to a normal startup follow step 7 in the link.

  • I bought Photoshop element 14 this morning, get the serial number Adobe e-mail and downloaded the software, but... Adobe is always telling me that they cannot validate the software. What should I do now?

    I bought Photoshop element 14 this morning, get the serial number Adobe e-mail and downloaded the software, but... Adobe is always telling me that they cannot validate the software. What should I do now?

    Please see the links below.

    Hope this will help you.

    Kind regards

    Hervé Khare

  • I want to change the layout of my e-mail messages so that the message is on the side of the headers not below them

    I want to change the layout of my e-mail messages so that the message is on the side of the headers not below them. I just downloaded mozilla thunderbird on my new laptop computer to I can not get the layout that I'd rather go back. Help, please. Thanks June

    Maybe try Vertical page layout view in the menu bar.

    No menu bar? Press the ALT key.

  • Accidentally deleted a photo, I want to keep it, how can I get the picture back?

    I was looking through all my new messages and did a lot of deletion. This photo of girls came and I accidentally hit the bar to remove it. Is it possible that I can get her back? I found the picture in the file to be deleted, but can not see some sort of "undo" or send me the photo via email
    Any help will be greatly appreciated.

    Thanks in advance,
    BanjoJim

    Under edit is an undo command. He's going to cancel the last operation only so if you deleted something else after that will not work.

    If you find the message in the trash, just slip and fall back into the folder that you want only it in.

    FYI: using the Inbox for storage to long term of the message that you want to keep is a bad idea. Read this article on the maintenance of your messaging system.
    http://KB.mozillazine.org/Keep_it_working_%28Thunderbird%29

  • How to get the picture of the contact phone

    Hello

    Please, how can he get the contact picture?

    hear you a BlackberryContact? Using the PIM API with Contact.PHOTO:

    Byte [] photoEncoded = blackberryContact.getBinary (BlackBerryContact.PHOTO, 0);
    Byte [] photoDecoded = Base64InputStream.decode (photoEncoded, 0, photoEncoded.length);

  • get the picture of the ucm directly

    Hello Experts,

    I use jdev 11.1.1.7

    Currently

    I have written in the form of component in jsff images

    " < af:image id ="i1"source = ' http:// " #{facesContext.externalContext.request.serverName}: /file/ of#{facesContext.externalContext.request.serverPort}#{node.propertyMap ['IMAGE_RGD:Image'] .value}" / >

    Images are displayed in the browser

    the above image is rendered in the local machine as

    " < img id ="pt1:r1:0:i4:49:i2"src =" http:// localhost:80/file/image-file-name-001' > '.

    the above image is rendered in the production as

    " < img id ="pt1:r1:0:i4:49:i2"src =" http:// 10.0.220.33: 80. /file/image-file-name-001' > '.

    Image display, image is retrieved from the Complutense University of MADRID.

    Requirement is, instead of giving the source in this way, I want to directly give the path to the image, so that the recovery is faster and I can also be cached images later.

    I want to know how can I start with?

    Unfortunately I don't think that there is another way to do this, you will need to get the image at least once in the URL then I suppose that your browser saves it cached? I'm not sure. Unless you download images and deploy them with your application that according to me is not an option.

    Concerning

  • connected to my laptop and TV with vga cable, but cannot get the picture to TV

    VGA cable and pc selected on my tv, double vga mode click and drag from the laptop to the tv screen but nothing happens

    Could not get the image on the tv at all

    Help, please

    was soon, I solved the prob

    went to the nvidia Control Panel by right-clicking on the desktop and select multiple monitors

  • How to save photos in a new file, name it and get the pictures in this file

    I have photos that have been sent to me in an e-mail. I want to save them and create a new file in Windows Live Photo
    Gallery. I right-click and SAVED AS... then went to MY... and under some PICTURES under photos put my cursor
    to open a NEW CASE. He did open an empty folder and not of uploaded photos.

    What I am doing wrong? I want to save the photos, open a new folder/file, name and save the pictures of
    enamel in the new folder/file. How to achieve this?

    Thank you.
    Gilenya

    Gilenya,

    After you create a new folder, you must go inside this folder to save your photos.  I'll bet that you created the new folder, and then you click OK (or save), which caused the pictures save a level upwards in the folder that you created.
  • To install my card XD my camera to get the pictures on my pc, it has stopped working

    I used to install my photo card XD in the slot on my computer laptop to transfer photos, recently it stopped working for me telling me that I have to get the version of microsoft .net framework 2.0, when I try to download it it says so it cannot be installed on a 64 bit system, I understand not why he worked for more than a year and now I have problems.  Someone help please...

    The XD card.

    Click Start, type: Device Manager

    Press enter on your keyboard

    Your XD card must be listed in the tree view of the devices

    It to the right and click on uninstall

    Manager of output devices

    Restart your computer

    It should redetect and start working again.

    ---------------------

    If this does not work, let the swiped card and open Windows Update

    Click Find updates and get all the available drivers for your card reader that may be available.

  • How can I get the command bar, for e-mail, etc..

    How can I get the command bar in Mozilla? For the icon to email etc.

    If you want to learn the basics try this interactive and video tour

  • get the Octoshapeclient.exe: cannot start error message everytime I turn on my pc.

    My computer is running slow so I uninstalled programs and deleted all my files, now I get the Octoshapeclient.exe: impossible to launch the error message every time I turn on my pc, I have Vista.
    I ran a Spybot scan and a scan of Norton, continues to receive the Octoshape error. Please advise next step. Thank you!

    Hi Diane,

    Thanks for posting this question in the Microsoft Community.

    1. have you updated to Service Pack 2 installed?

    2. when exactly you get this error?

    Follow these methods.

    Method 1.

    Start the computer in safe mode and run a full scan of computer viruses.

    Start your computer in safe mode: http://windows.microsoft.com/en-SG/windows-vista/Start-your-computer-in-safe-mode

    Run a full scan of the computer with the Microsoft Safety Scanner to make sure that the computer is virus-free.

    Microsoft safety scanner: http://www.microsoft.com/security/scanner/en-us/default.aspx

    Warning of Security Scanner: there could be a loss of data while performing an analysis using the Microsoft safety scanner to eliminate viruses as appropriate.

    Additional information.

    Is my PC infected with virus or spyware? : http://windows.microsoft.com/en-in/windows/is-my-pc-infected-with-viruses-or-spyware

    Method 2.

    We can refer to this article and check if that helps.

    Optimize Windows Vista for better performance: http://windows.microsoft.com/en-in/windows-vista/optimize-windows-vista-for-better-performance

    Note: you should not disable Windows Firewall, unless you have another firewall is activated. Turning off Windows Firewall may make your computer (and your network, if you have one) more vulnerable to damage caused by worms or hackers.

    Warning of Security Scanner: there could be a loss of data while performing an analysis using the Microsoft safety scanner to eliminate viruses as appropriate.

    Let us know if you need assistance with this problem of Windows. We will be happy to help you.

  • Get the "pcwum.dll is missing" error message when you open the Task Manager

    Original title: Windows 7 64-bit: task manager and windows update does not work, amd update failed to load detectionprogramm and crashes from time to time

    Sometimes, when I try to open the windows task manager it says: "Het programma kan niet worden gestart omdat pcwum.dll Land op uw computer. ' U * says clean mogelijk oplossen door het programma opnieuw you installeren. Basically, he says pcwum.dll is missing on my computer and I can fix it by reinstalling the program. As it is I can't reinstall the Task Manager. Also, when I try to check for Windows updates, it does not work because it says: "uh" momenteel niet naar "kan updates gezocht worden, omdat Windows Update-service niet actief is. U moet uw computer opnieuw opstarten mogelijk. "translated: you can not search for updates now, because the Windows Update service is not active." You may have to restart your computer. It says this all the time so I will have this since June have not updated since then. When I try to update my AMD updater it says there is a new version available, I now 12.6 and 12.8 update. Can I download and extract, but whenever I try to install it it says it can't find the driver detection program. I have an AMD ATI - Radeon 5700. My computer crashes now and then. I get the famous blue screen, who said he had a problem with a driver (probably one of my graphics card) and needs to restart. When it restarts I have first option starting in safe mode, but I can't update my drivers in safe mode so that didn't help out me. Please help me, I'm having this problem for a few months now, and it gets really annoying.

    Hello HenkVB,

    Thank you for the question!

    It is disheartening to know that have problems you with the the Task Manager, Windows Update and blue screen.

    Question: Pcwum.dll missing everything by opening the Task Manager.

    Make the SFC (System File Checker) scan and see if the problem occurs.

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7

    Question: looking for a Windows Update.

    Run the troubleshooter and check if that helps.

    Open the Windows Update troubleshooting tool

    Question: Blue screen

    Perform the steps in the link and check.

    Resolve stop (blue screen) error in Windows 7

    Meet us if you face any problem of Windows, and I'd be happy to help you again and try to correct the problem as soon as possible.

    Good day!

    Hope this information helps.

Maybe you are looking for