VIXIA g30 won't allow movies to record a 64 microsd card or a SD 128 micro, but

My Vixia g30 will not allow movies to be recorded on a micro SD 64 card, or a 128 micro Sd Card, but to a microcard 32.  I have not initialized the card because it's new. Could this be the problem, or is it too big a card?

I had initialize card twice, but it's the video very well.

Tags: Canon Camcorder

Similar Questions

  • When moving e-mail to the folder, the drop-down list is gray & won't allow any action.

    When moving e-mail to a folder, the drop-down list is gray and won't allow any action to be done. How can I fix it in vista 7

    What is Vista 7?
    You are speaking of the right click. Move to folder option is grayed out? You highlight the header of message first? Can drag you messages from one folder to another? (I never use the right-click method).
    If you're talking about Windows Mail in Vista and not something else, try to compact and repair the database.
     
     
     
  • How to move from records in a procedure with Table Type as a parameter block

    Hello

    How can I move all records in a block of PL/SQL procedure with argument of Type Table or Refcursor.

    I created a procedure in the backend with a parameter of Type table. Of the form, I want to call this procedure with the argument that ALL of the records in BULK.

    Y at - it a simple method for it.


    Thanks in advance

    Rizly

    Rizly,
    I recently put in place a level of forms audit process that uses this method very - package of database, which takes an array of Records as a parameter. Forms 10 G supports this nicely. We have sought to implement this through a set of database triggers (update, insert, delete) but due to our requirements, it was not the best place to do so that we have implemented this in forms.

    Brief history on my form. The main block was based on a table, and the block has been marked NOT can, Insert and Delete. If the user wants to insert, update, or delete a record they clicked on Insert, Update, or Delete button that opens a popup form where they seized a reason Code and a Description of the transaction and then clicked a button Save.

    Here's what I did.
    Database side *.
    1 package database with a Record of PL/SQL and PL/SQL records in the Table variable declared in the Package specification.
    2. create INSERT_?, warning? and DELETE_? package procedures to manage integration, updates and deletions.
    Secondary forms *.
    1 create a table (control) Non-Base with all fields block
    2. create a button that performs a loop on the block and all values assigns to the variable of records in the Table (ToR) forms (typed off the DB package)
    3. pass the ToR to the appropriate database package procedure.

    Here is an example of the code I wrote:
    Database side *.
    Package specifications * (Note: replace with your database schema name) also note, I use PL/SQL Developer with the PLDoc plug-in so I documentation tags in my code.

    CREATE OR REPLACE PACKAGE .Transaction_Log_pkg IS
    -- Package Global Variables
    -- ------------------------
    TYPE rec_T_Log IS RECORD (
        table_name          .transaction_log.table_name%TYPE
       ,trans_type          .transaction_log.trans_type%TYPE
       ,trans_key           .transaction_log.trans_key%TYPE
       ,action              .transaction_log.action%TYPE
       ,column_name         .transaction_log.column_name%TYPE
       ,old_value           .transaction_log.old_value%TYPE
       ,new_value           .transaction_log.new_value%TYPE
       ,trans_date          .transaction_log.trans_date%TYPE
       ,user_id             .transaction_log.user_id%TYPE
       ,reason_code         .transaction_log.reason_code%TYPE
       ,comments            .transaction_log.comments%TYPE
       );
    
    TYPE tbl_T_Log IS TABLE OF rec_T_Log INDEX BY BINARY_INTEGER;
    
       -- Insert_Record --------------------------------------------------------------------------------
       /** Procedure adds "INSERT" audting records in to the CIR.TRANSACTION_LOG table
       %param      p_t_log      TABLE_OF_RECORDS
       %desc       You can pass a single record or a group of records.  Allows you to package up all of
                   the values inserted in a table and send them to the Insert_Record procedure as a
                   group rather than as individual transactions.
       -- ---------------------------------------------------------------------------------------------- */
       PROCEDURE Insert_Record (p_t_log tbl_T_Log );
    
       -- Update_Record --------------------------------------------------------------------------------
       /** Procedure adds a "UPDATE" record(s) in the CIR.TRANSACTION_LOG table
       %param      p_t_log      TABLE_OF_RECORDS
       %desc       You can pass a single record or a group of records if more than one value in a row is updated.
       -- ---------------------------------------------------------------------------------------------- */
       PROCEDURE Update_Record (p_t_log tbl_T_Log );
    
       -- Delete_Record --------------------------------------------------------------------------------
       /** Procedure adds "DELETE" records in to the CIR.TRANSACTION_LOG table
       %param      p_t_log      TABLE_OF_RECORDS
       %desc       You can pass a single record or a group of records.  Allows you to package up all of
                   the values inserted in a table and send them to the Delete_Record procedure as a
                   group rather than as individual transactions.
       -- ---------------------------------------------------------------------------------------------- */
       PROCEDURE Delete_Record (p_t_log tbl_T_Log );
    
    END Transaction_Log_pkg;
    

    Package body *.

    -- Beginning of Package Body -------------------------------------------------------------------------
    -- ---------------------------------------------------------------------------------------------------
    CREATE OR REPLACE PACKAGE BODY .Transaction_Log_pkg AS
       -- Package EXCEPTIONS
       -- ------------------
       null_table              EXCEPTION;
       null_table_name         EXCEPTION;
       null_trans_type         EXCEPTION;
       null_trans_key          EXCEPTION;
       null_action             EXCEPTION;
       null_column_name        EXCEPTION;
       null_value              EXCEPTION;
       null_user_Id            EXCEPTION;
       null_reason_code        EXCEPTION;
       null_comments           EXCEPTION;
    
       -- Package Variables
       -- -----------------
       vErrMsg                 VARCHAR2(1000);
       vSQL                    VARCHAR2(2000);
    
       -- ----------------------------------------------------------------------------------------------
       PROCEDURE Insert_Record (p_t_log tbl_T_Log ) IS
    
       BEGIN
          IF ( NVL(p_t_log.COUNT,0) = 0 ) THEN
             RAISE null_table;
          ELSE
    
             FOR i IN p_t_log.first .. p_t_log.last LOOP
                vSQL := 'INSERT INTO .transaction_log (seq_no,table_name,trans_type,trans_key,action'
                            ||',column_name,old_value,new_value,trans_date,user_id,reason_code,comments)'
                            ||' VALUES (.TRANSACTION_NO_SEQ.nextval';
    
                -- Build Insert Statement
                IF ( p_t_log(i).table_name IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).table_name||'''';
                ELSE
                   RAISE null_table_name;
                END IF;
                IF ( p_t_log(i).trans_type IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).trans_type||'''';
                ELSE
                   RAISE null_trans_type;
                END IF;
                IF ( p_t_log(i).trans_key IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).trans_key||'''';
                ELSE
                   RAISE null_trans_key;
                END IF;
                IF ( p_t_log(i).action IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).action||'''';
                ELSE
                   RAISE null_action;
                END IF;
                IF ( p_t_log(i).column_name IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).column_name||'''';
                ELSE
                   RAISE null_column_name;
                END IF;
                IF ( p_t_log(i).old_value IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).old_value||'''';
                ELSE
                   vSQL := vSQL||',NULL';
                END IF;
                IF ( p_t_log(i).new_value IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).new_value||'''';
                ELSE
                   RAISE null_value;
                END IF;
    
                --transaction_date
                vSQL := vSQL||',sysdate';
    
                IF ( p_t_log(i).user_id IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).user_id||'''';
                ELSE
                   RAISE null_user_id;
                END IF;
                IF ( p_t_log(i).reason_code IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).reason_code||'''';
                ELSE
                   RAISE null_reason_code;
                END IF;
                IF ( p_t_log(i).comments IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).comments||'''';
                ELSE
                   RAISE null_comments;
                END IF;
    
                vSQL := vSQL||')';
    
                dbms_output.put_line('vSQL = '||vSQL);
    
                EXECUTE IMMEDIATE vSQL;
    
                vSQL := NULL;
    
             END LOOP;
    
             -- The COMMIT is intentionally left out to force the calling
             -- application to perform the commit and complies with the
             -- basics of encapsulation.
             -- ---------------------------------------------------------
    
          END IF;
    
       EXCEPTION
          WHEN null_table THEN
             vErrMSg := 'The p_t_log Collection cannot be null!';
             RAISE_APPLICATION_ERROR(-20990,vErrMsg);
          WHEN null_table_name THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20991,vErrMsg);
          WHEN null_trans_type THEN
             vErrMSg := 'Transaction Type cannot be null!';
             RAISE_APPLICATION_ERROR(-20992,vErrMsg);
          WHEN null_trans_key THEN
             vErrMSg := 'Transaction Key cannot be null!';
             RAISE_APPLICATION_ERROR(-20993,vErrMsg);
          WHEN null_action THEN
             vErrMSg := 'Action cannot be null!';
             RAISE_APPLICATION_ERROR(-20994,vErrMsg);
          WHEN null_column_name THEN
             vErrMSg := 'Column Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20995,vErrMsg);
          WHEN null_value THEN
             vErrMSg := 'Value cannot be null!';
             RAISE_APPLICATION_ERROR(-20996,vErrMsg);
          WHEN null_user_Id THEN
             vErrMSg := 'User ID cannot be null!';
             RAISE_APPLICATION_ERROR(-20997,vErrMsg);
          WHEN null_reason_code THEN
             vErrMSg := 'Reason Code cannot be null!';
             RAISE_APPLICATION_ERROR(-20998,vErrMsg);
          WHEN null_comments THEN
             vErrMSg := 'Comments cannot be null!';
             RAISE_APPLICATION_ERROR(-20999,vErrMsg);
       END Insert_Record;
       -- ------------------------------------------------------------------------------------------------
    
       PROCEDURE Update_Record (p_t_log tbl_T_Log ) IS
    
       BEGIN
          IF ( NVL(p_t_log.COUNT,0) = 0 ) THEN
             RAISE null_table;
          ELSE
    
             FOR i IN p_t_log.first .. p_t_log.last LOOP
                vSQL := 'INSERT INTO .transaction_log (seq_no,table_name,trans_type,trans_key,action'
                            ||',column_name,old_value,new_value,trans_date,user_id,reason_code,comments)'
                            ||' VALUES (.TRANSACTION_NO_SEQ.nextval';
    
                -- Build Insert Statement
                IF ( p_t_log(i).table_name IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).table_name||'''';
                ELSE
                   RAISE null_table_name;
                END IF;
                IF ( p_t_log(i).trans_type IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).trans_type||'''';
                ELSE
                   RAISE null_trans_type;
                END IF;
                IF ( p_t_log(i).trans_key IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).trans_key||'''';
                ELSE
                   RAISE null_trans_key;
                END IF;
                IF ( p_t_log(i).action IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).action||'''';
                ELSE
                   RAISE null_action;
                END IF;
                IF ( p_t_log(i).column_name IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).column_name||'''';
                ELSE
                   RAISE null_column_name;
                END IF;
                IF ( p_t_log(i).old_value IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).old_value||'''';
                ELSE
                   vSQL := vSQL||',NULL';
                END IF;
                IF ( p_t_log(i).new_value IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).new_value||'''';
                ELSE
                   RAISE null_value;
                END IF;
    
                --transaction_date
                vSQL := vSQL||',sysdate';
    
                IF ( p_t_log(i).user_id IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).user_id||'''';
                ELSE
                   RAISE null_user_id;
                END IF;
                IF ( p_t_log(i).reason_code IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).reason_code||'''';
                ELSE
                   RAISE null_reason_code;
                END IF;
                IF ( p_t_log(i).comments IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).comments||'''';
                ELSE
                   RAISE null_comments;
                END IF;
    
                vSQL := vSQL||')';
    
                dbms_output.put_line('vSQL = '||vSQL);
    
                EXECUTE IMMEDIATE vSQL;
    
                vSQL := NULL;
    
             END LOOP;
    
             -- The COMMIT is intentionally left out to force the calling
             -- application to perform the commit and complies with the
             -- basics of encapsulation.
             -- ---------------------------------------------------------
    
          END IF;
    
       EXCEPTION
          WHEN null_table THEN
             vErrMSg := 'The p_t_log Collection cannot be null!';
             RAISE_APPLICATION_ERROR(-20990,vErrMsg);
          WHEN null_table_name THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20991,vErrMsg);
          WHEN null_trans_type THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20992,vErrMsg);
          WHEN null_trans_key THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20993,vErrMsg);
          WHEN null_action THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20994,vErrMsg);
          WHEN null_column_name THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20995,vErrMsg);
          WHEN null_value THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20996,vErrMsg);
          WHEN null_user_Id THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20997,vErrMsg);
          WHEN null_reason_code THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20998,vErrMsg);
          WHEN null_comments THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20999,vErrMsg);
       END Update_Record;
       -- ------------------------------------------------------------------------------------------------
    
       PROCEDURE Delete_Record (p_t_log tbl_T_Log ) IS
    
       BEGIN
          IF ( NVL(p_t_log.COUNT,0) = 0 ) THEN
             RAISE null_table;
          ELSE
    
             FOR i IN p_t_log.first .. p_t_log.last LOOP
                vSQL := 'INSERT INTO .transaction_log (seq_no,table_name,trans_type,trans_key,action'
                            ||',column_name,old_value,new_value,trans_date,user_id,reason_code,comments)'
                            ||' VALUES (.TRANSACTION_NO_SEQ.nextval';
    
                -- Build Insert Statement
                IF ( p_t_log(i).table_name IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).table_name||'''';
                ELSE
                   RAISE null_table_name;
                END IF;
                IF ( p_t_log(i).trans_type IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).trans_type||'''';
                ELSE
                   RAISE null_trans_type;
                END IF;
                IF ( p_t_log(i).trans_key IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).trans_key||'''';
                ELSE
                   RAISE null_trans_key;
                END IF;
                IF ( p_t_log(i).action IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).action||'''';
                ELSE
                   RAISE null_action;
                END IF;
                IF ( p_t_log(i).column_name IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).column_name||'''';
                ELSE
                   RAISE null_column_name;
                END IF;
                IF ( p_t_log(i).old_value IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).old_value||'''';
                ELSE
                   vSQL := vSQL||',NULL';
                END IF;
                IF ( p_t_log(i).new_value IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).new_value||'''';
                ELSE
                   RAISE null_value;
                END IF;
    
                --transaction_date
                vSQL := vSQL||',sysdate';
    
                IF ( p_t_log(i).user_id IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).user_id||'''';
                ELSE
                   RAISE null_user_id;
                END IF;
                IF ( p_t_log(i).reason_code IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).reason_code||'''';
                ELSE
                   RAISE null_reason_code;
                END IF;
                IF ( p_t_log(i).comments IS NOT NULL ) THEN
                   vSQL := vSQL||','''||p_t_log(i).comments||'''';
                ELSE
                   RAISE null_comments;
                END IF;
    
                vSQL := vSQL||')';
    
                dbms_output.put_line('vSQL = '||vSQL);
    
                EXECUTE IMMEDIATE vSQL;
    
                vSQL := NULL;
    
             END LOOP;
    
             -- The COMMIT is intentionally left out to force the calling
             -- application to perform the commit and complies with the
             -- basics of encapsulation.
             -- ---------------------------------------------------------
    
          END IF;
    
       EXCEPTION
          WHEN null_table THEN
             vErrMSg := 'The p_t_log Collection cannot be null!';
             RAISE_APPLICATION_ERROR(-20990,vErrMsg);
          WHEN null_table_name THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20991,vErrMsg);
          WHEN null_trans_type THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20992,vErrMsg);
          WHEN null_trans_key THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20993,vErrMsg);
          WHEN null_action THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20994,vErrMsg);
          WHEN null_column_name THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20995,vErrMsg);
          WHEN null_value THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20996,vErrMsg);
          WHEN null_user_Id THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20997,vErrMsg);
          WHEN null_reason_code THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20998,vErrMsg);
          WHEN null_comments THEN
             vErrMSg := 'Table Name cannot be null!';
             RAISE_APPLICATION_ERROR(-20999,vErrMsg);
       END Delete_Record;
       -- ------------------------------------------------------------------------------------------------
    
    END Transaction_Log_pkg; -----------------------------------------------------------------------------
    -- ---------------------------------------------------------------------------------------------------
    

    Secondary forms * (all this coding was limited to the Insert, update or delete buttons.) The following example is the Insert button)

    /* When-Button-Pressed Trigger */
    DECLARE
         vBlockName     VARCHAR2(20) := 'REPORT_CATEGORIES';
         vBlockItem     VARCHAR2(61);
         vCurrItem      VARCHAR2(61);
         nRecCnt        NUMBER := 1;
    
         /* Here is where you create your Forms Variable TYPEd off the Package Table of Records (ToR) */
         /* Since it is a table of records, you could easily add multiple rows to the ToR if your form uses a multi-record block */
         p_tlog         cir.transaction_log_pkg.tbl_t_log;    
    
    BEGIN
         vCurrItem := vBlockName||'.'||Get_Block_Property(vBlockName,FIRST_ITEM);
    
         Go_Item(vCurrItem);
    
         -- 1. Endure each field if populated.
            -- 2. Check for Duplicates (Handled in W-V-I)
    
         IF ( Name_In(:system.Cursor_Item) IS NULL ) THEN
              --Fail the form at the field that is NULL
              send_alert.msg('s','All fields are required.  Please enter a unique value.');
              RAISE Form_Trigger_Failure;
         END IF;
    
         WHILE ( vCurrItem IS NOT NULL ) LOOP
              vBlockItem := :system.cursor_item;
    
              -- Loop through the block and CALL Insert_Record for each Block Item.
              /* 1 */ p_tlog(nRecCnt).table_name := vBlockName;
              /* 2 */ p_tlog(nRecCnt).trans_type := Name_In(vBlockName||'.CAT_TYPE');
              /* 3 */ p_tlog(nRecCnt).trans_key := Name_In(vBlockName||'.ID');
              /* 4 */ p_tlog(nRecCnt).action := 'INSERT';
              /* 5 */ p_tlog(nRecCnt).column_name := substr(vBlockItem,instr(vBlockItem,'.')+1,length(vBlockItem));
              /* 6 */ p_tlog(nRecCnt).old_value := NULL;
              /* 7 */ p_tlog(nRecCnt).new_value := Name_In(vBlockItem);
              /* 8 */ p_tlog(nRecCnt).trans_date := sysdate;
              /* 9 */ p_tlog(nRecCnt).user_id := :Global.userid;
              /*10 */ p_tlog(nRecCnt).reason_code := Name_In(vBlockName||'.REASON_CODE');
              /*11 */ p_tlog(nRecCnt).comments := Name_In(vBlockName||'.COMMENTS');
    
              vCurrItem := Get_Item_Property(vBlockItem,NEXTITEM);
              next_item;
              nRecCnt := nRecCnt + 1;
         END LOOP;
    
         -- 3. Insert
      -- Call TRANSACTION_LOG_PKG.Insert_Record
      -- --------------------------------------
      .transaction_log_pkg.insert_record(p_t_log => p_tlog);
    
         -- 4. Commit
         Commit;  
    
         -- 5. Clear Block
         Clear_Block(Ask_Commit);
    
         -- 6. Close Form
         Hide_Window('REPORT_CATEGORIES');
         -- 7. ReQuery RC_DISP Block
         Go_Block('REPORT_CATEGORIES_DISP');
         Clear_Block(No_Validate);
         Execute_Query;
         -- 8. Done
    END;
    

    I knew not when I started this process of forms if she was going to work because I tried to do something similar to this when I was working with Forms 6i and Oracle Enterprise Business Suite and Forms 6i supported not Ref Cursor and Table of documents very well so I didn't know at first if it would work. Search in forms documentation, I found that Forms 10 g has supported this type of functionality and this process works very well and it was surprisingly fast - at least in my usage, it is very fast. :)

    I hope this helps.
    Craig...

    If I or someone elses answer was useful, please mark accordingly

  • Latest version of FF won't allow vertical window resizing

    Latest version of FF now has a 'FIXED' vertical window size > about 1 1/2 inches. It won't allow vertical window size adjustment. Horizontal > no problem. The size button, upper right corner, makes the browser window jump right > right edge of the browser is turned off my screen and the same vertical height is all I get.

    This has happened

    Each time Firefox opened

    == Yesterday when displaying Facebook > just jumped at this size.

    Try http://kb.mozillazine.org/Corrupt_localstore.rdf

  • HP 6700 printer won't allow web services.

    My printer HP 6700 won't allow web services. I have already downloaded the update of the firmware, manually entered the IP address and DNS numbers... stop the printer and turned it back. But when I try to activate the web services it try for awhile, then he said to web services could not be activated... any help would be appreciated.  I have vista.

    I tried to reset to the default settings on the built-in Web server.  I was able to reset the default settings of the printer and has been able to activate the web services.

    Thanks a bunch...

  • the sound card for the Pavilion Slimline S3300T will allow me to record audio from the internet?

    I have a Pavilion Slimline S3300T. KC833AV prod # #ABA. OS vista Home Premium 32 bit.  The sound card will allow me to record audio directly from the internet?

    The sound card is not big thing to do with it, but there are third party software out there that will allow you to do.

    WaveTap is recommended by LifeHacker.

    Here is an article on their website explaining how to use it:

    WavTap Audio recordings of your computer by pressing a keyboard shortcut

  • I can't open attachments. I don't know how, but the program won't allow it. I just get an error message.

    I can't open attachments. I don't know how, but the program won't allow it. I just get an error message.  I can't find a solution in the Options.

    original title: I can't open attachments.

    See www.oehelp.com/OETips.aspx#1

    Steve

  • My home server is talktalk and have got a dongle 3 which won't allow me to emails sent

    Original title: my home server is talktalk I'm away from home has got a dongle 3 and can not sent e-mailsNetwork network networking Internet Web site Site Web URL Web Site programs

    my home server is talktalk I am away from home and got a dongle 3 which won't allow me to emails sent

    Hi Patriciarafferty,

    1. What mail client do you use?

    2. what happens when you try to send email? You receive messages or error codes?

    You can view the following support TalkTalk article and see if it helps.

    I have problems sending and receiving emails, what should I do?

    Hope this information is useful.

  • My commputer won't allow updates. When I try the blue bar just continues to run. I tried to run Powershell, but it stops and says error has occurred.

    Original title: Powershell

    My commputer won't allow updates.  When I try the blue bar just continues to run.  I tried to run Powershell, but it stops and says error has occurred.  What should I do

    Hello

    1 - what you mean that you can not install Windows Update? If Yes, then the updates?

    2 are. what Powershell you referring?

    3. you receive an error message? If so, then post back the exact error message.

    Answering these questions that could help us help you better. The following article could be useful if you are referring to the Windows updates.

    Problems with installing updates

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-installing-updates

  • My computer won't allow me to access my files on my portable hard disk without error appear "you must format the E: drive before using it. How can I fix this please!

    My computer won't allow me to access my files on my portable hard disk without error appear "you must format the E: drive before using it. How can I fix this please!

    Try to scan your driver with anti-virus, also try to throw the disc looking for this driver and as you try to run the following tools:

    http://support.Microsoft.com/mats/system_maintenance_for_windows/

    http://support.Microsoft.com/mats/windows_file_and_folder_diag/

  • Have only administrator under Vista and it won't allow me to install Office 2007, saying: I need approval from the Admin... what gives?

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Have only administrator under Vista and it won't allow me to install Office 2007, saying: I need approval from the Admin... what gives? Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Hello. The new Admin still doesn't let me download the software. IERU! Any suggestions?

    Make sure that there is no "leftovers" MS Office components on your computer. This tutorial of MS to run an uninstall operation. Select Office suites 2007 button.
    http://support.Microsoft.com/kb/290301

    After that... Suggestions:
    Try to install the 2007 release after each suggestion is complete.

    1. run a full scan with your security program. See if he catches something.

    2. make a file system check... sfc/scannow

    Start button > Search box type cmd > look up, do a RIGHT click oncmd.exe > click onRun As Administrator > in this window cmd black and white, type at the prompt flashing sfc/scannow > press theENTER key.
    Note: there is a space between 'sfc' and ' / '.
    To sit and wait. It will take time.
    When finished, exit the cmd window.
    Reboot (restart your computer)

    3 do a disc check chkdsk/f/r...

    Start button > Search box, type cmd > look up, right-click on cmd.exe > Run As Administrator > in the black and white window, at the command prompt flashes, type chkdsk/f/r > press the Enter key.
    Note: there is a space between 'chkdsk' and ' / '.

    The screen will say something like cannot do it now, but you want to run it on reboot. Click on 'y' as in Yes > press > window cmd of output.
     
    Restart your computer. It will take a while. DO NOT stop the machine. Just wait.
     

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Security settings won't allow download LimeWire

    I am trying to download limewire and some updates and I get a msg saying that my security settings won't allow it. I tried everything, I am running vista.

    If you sure that the download is safe you could try adding the download site as a Site approved in Internet Explorer.  You can also try to disable "protection Mode" in IE.  See IE / Tools / Internet Options / Security.

    You can also try of in "Safe Mode with network.

    Vista Advanced Boot Options (or 7)
    http://Techblissonline.com/Vista-advanced-boot-options/

    LimeWire can be a risky download source, so use carefully before you download anything.

    People who use limewire etc.!, this is not a complaint!
    http://forums.deathknell.cc/index.php?showtopic=1018&St=0

    Help! It is super important, I have a virus and it is thought to descend?
    http://answers.Yahoo.com/question/index?QID=20080620093517AAaBOii

  • OfficeJet 6700 won't allow web services.

    My new officejet 6700 won't allow web services.  I have a good internet connection via a DSL modem/router.  I tried a wired connection and Wi - Fi.  Nothing works.  I can see the printer and the status of ink etc. to the ip address of a computer on the local network.

    sko1947,

    I suggest you set a static ip address of the dns servers and the address of this printer as it has resolved questions like these in the past.

    Before we begin, we need a network with your current connection settings configuration page. To do this, press the arrow to the right and go to settings. From there on, we want to select 'Network', then 'Print Network Configuration.

    After that you have, we will need to access the built-in Web server (EWS) printers. You can do this by entering the IP address of printers (from the Network Setup page) browser press and the address bar type.

    Once there, press the 'Network' tab at the top of the page. From there, you'll want to click on the button "IPv4", on the f-side of the page. It will be there for wireless and wired, so make sure you click the one for you, but you are connected. If you do not see "IPv4", you should see 'Networking', press and press "Network Address (IP).

    Then, you click the small round button next to "Manual"IP address", and then fill in the IP address, subnet mask and default gateway using the information available on the network configuration page.

    For the primary or the preferred DNS server, you will want to enter 8.8.8.8. For secondary school or another DNS server, you will want to write 8.8.4.4.

    Click on apply and when the message appears saying that the changes have been applied, press 'OK '.

    Press the power button on your printer, wait that it completely power off and press it again to power it on.

    After doing this, go ahead and try to reactivate Web Services. It should work now, but if not, let me know and I we can try something else.

  • Windows Media Player not play either allow me to record a few songs that I download on limewire. Some are AVI or THE or something else. I want to know can I install so this media player allows me to listen to and record.

    Windows Media Player not play either allow me to record a few songs that I download on limewire. Some are AVI or THE or something else. I want to know can I install so this media player allows me to listen to and record.

    Windows Media Player not play either allow me to record a few songs that I download on limewire. Some are AVI or THE or something else. I want to know can I install so this media player allows me to listen to and record.

    The link below shows list you formats supported by Windows Media Player, audio and video.
    http://www.Microsoft.com/windows/windowsmedia/KnowledgeCenter/mediaadvice/0071.mspx

    If you downloaded something not supported by WMP, then you will have to google for a converter. There are many FREE online converters.

    t-4-2

  • Security won't allow me to install a download

    I have parental controls installed on the computer of my nephew and I am trying to install a game for him, Minecraft, I bought.

    I got the game downloaded, but when I go to my downloads and click the icon to open the download and install it, a window will appear with a red "X" saying that settings admin will not allow the configuration of this because of the parental control. I had two of my nephews, the same game for their computers and thought I had the exactly same settings on each computer, but one that enabled me to turn off the parents settings and install the game, but the other does not.

    I disabled the settings parents, even deleted the account for this computer from my parental account, but it still won't allow me to install, even after that I restarted the computer after turning off and remove the parents on their computer settings.

    Is there something that I am missing? What can cause this error?

    You need permission to administrators? Here is how you get it... giving all users the permission to do what is the order of the day you choose.

    First search for the item. then right click and go to properties.

    Go to the Security tab.

    Click Advanced.

    go to the owner tab to see if you are the owner.

    then click on change if you are not.

    enter among consumers, or choose your account and put a check mark on replace the existing owner...

    then close all tabs by clicking ok

    then reopen the properties and go to settings and go to the permissions tab.

    Click on change permissions

    Click on Add.

    type in users, or of your account, and click on the name to check.

    Click ok. Click on the first box saying: full control, and then click ok.

    Now you have all permissions to access the item, and you are the owner of it.

    alternative: If you know the password that you have set up your account, then the user name is the user name you set up, and the password is the password you set up.

Maybe you are looking for

  • Screen flashes while taking pictures using the Auto flash and front camera on

    Device: iPhone 7 more iOS: 10.0.2 Question: Screen flashes with blank white light while taking the photo using a front camera with the flash light on which is so annoying Note: After taking the photo, the photo is visible and doesn't have any problem

  • Satellite Pro L40 does not start

    When I turn on my Satellite Pro L40 it shows me a screen asking me to start to repair windows or start windows normally.When you choose the option it brings me to the same screen. Does anyone have any ideas? Thank you very much

  • Satellite M30X - high use of the hard drive

    Once the connection in Windows XP (SP2), my computer toshiba laptop is very slow. The hard drive light is permanently on during 5 minutes. I looked in the Task Manager, but the CPU usage is low and RAM usage is low. There is no program which seems to

  • ThinkVantage button doesn't work is not started

    Hello I bought a couple of seconds for the W520 hand that accompanies Windows 10. LN two machines you cannot interrupt the start-up with the blue zThinkvantage button. Research I've done seems to point to this remap after Windows is loaded, which doe

  • Temperatures > 100 ° C CPU

    I have a HP p7 - 1380 computer t n with: Inner 500w PSU H-Joshua-H61-Μatx motherboard graphics NVIDIA GTX 660 I just replaced the i5-3330 stock with an i5-3570 (non - K). The computer boots fine, but fans are very load and idle the temperatures are a