The page validation: function returning a Boolean

Hi guys,.

I'm doing a page validation simple to check an element in my presentation table if it is a number or not:

START
FOR i IN 1.. apex_application.g_f12. COUNTY
LOOP
IF LENGTH (TRIM (TRANSLATE (apex_application.g_f12 (i), "0123456789","" "))) is NOT null
THEN
RETURN FALSE;
END IF;
END LOOP;
END;

but I get this error message if g_f12 = AAA:

ORA-06502: PL/SQL: digital or value error: character of number conversion error
ERR-1021 error cannot run the validation of the "body of the function that returns a Boolean.
Ok

If g_f12 = A12 or a mixed alphanumeric it will work!

* (I tried this with the function returning the text and it works like a charm, but in this case I have to use the function returns boolean to allow me to translate the error message) *.

am I doing something wrong please help

Thank you

Hello

Well, now when I look at the error message, I think that the problem is quite obvious.

Kind regards
Jari

-----
My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
Twitter: http://www.twitter.com/jariolai

Tags: Database

Similar Questions

  • conditional view using body of the Pl/SQL function returning a Boolean

    I have problems with the conditional display of a report.

    I have to select list: p50_facility and p50_supervisor.

    I entered the Sub function body of pl/sql returning a Boolean

    Begin
    If (: p50_facility is null or)
    (: p50_supervisor is null) THEN
    Return False;
    On the other
    Return True;
    End if;
    End;

    No matter what values are my articles on (null, not null), the report shows.

    What I am doing wrong?

    Hello

    The list values will be null only until the first time that the page is sent. Subsequently, the value is likely to be "null %."

    You should do something like:

    BEGIN
     IF (:P50_FACILITY IS NULL OR :P50_FACILITY = '%' || 'null%' OR :P50_SUPERVISOR IS NULL OR :P50_SUPERVISOR = '%' || 'null%') THEN
      RETURN FALSE;
     ELSE
      RETURN TRUE;
     END IF;
    END;
    

    Andy

  • is it possible to pass the value of the variable validation function return Boolean message?

    Selection_012.pngSelection_013.png

    Assume that L_BATCH_NAME is the name of the variable which will receive the value as

    declare

    l_batch_name: = "NA";

    BEGIN

    L_BATCH_NAME: = FUNCTION (PARAMETERS);

    IF CONDITION > 0

    THEN

    RETURN FALSE;

    ON THE OTHER

    RETURN TRUE;

    END IF;

    END;

    Hi Reema,

    ReemaPuri wrote:

    Assume that L_BATCH_NAME is the name of the variable which will receive the value as

    declare

    l_batch_name: = "NA";

    BEGIN

    L_BATCH_NAME: = FUNCTION (PARAMETERS);

    IF CONDITION > 0

    THEN

    RETURN FALSE;

    ON THE OTHER

    RETURN TRUE;

    END IF;

    END;

    1. create a hidden item I say P1_HIDDEN_ITEM

    2 type the error message for this element in your process of

    declare
    l_batch_name:='NA';
    
    BEGIN
    :P1_HIDDEN_ITEM := FUNCTION(PARAMETERS);
    IF CONDITION > 0
    THEN
    RETURN FALSE;
    ELSE
    RETURN TRUE;
    END IF;
    END;
    

    3 and refer to this element hidden in the error message.

    Record for the batch '||&P1_HIDDEN_ITEM.||' already exists.
    

    Kind regards

    Jitendra

  • VALIDATION - function returns the error text

    I have a domain that occurs on about 12 pages, I need to post this field with some code

    I created a function on the database that performs this validation, I pass the field value to the function and it returns some text of error, or NULL if the value is correct

    I can't for the life of figure me out how to call the function of APEX

    I've tried everything

    FUNCTION RETURN ERROR TEXT, Expression SQL, PL/SQL Expression... nothing works!

    to call the function my comand is

    FN_VALIDATE_HR1_REF (: P1_GCI,: P1_HR1_REF);

    I want to return the error on the function text and display it in the banner of APEX error

    any help greatly appreciated

    A function like this return error text should work:

    Return (FN_VALIDATE_HR1_REF (: P1_GCI,: P1_HR1_REF));

    Is giving the error?

  • Assigning a page element in the region of the "body of function return PLSQL SQL query.

    I've not been here in a long time. I like the new forum text editor!

    I have a search page in my application that contains a return region of query SQL PLSQL function body. I use PLSQL to build a query based on the user entries in various page numbers (search text, serial number, year, etc.). Using PLSQL is very useful to enforce the page quickly because there are 1/2 million lines with a lot of text fields some of which are CLOB.

    Users want to know how many rows were returned, but if I allow using a paging system that includes the total performance dies because ApEx has to sort through all the pages of output. Instead, I use ' line varies X to Y "without the part of" Z", and it's pretty fast. I can't use the #TOTAL_ROWS # because it does not work with this system of pagination.

    So, I built a code within the region of function body PLSQL to build a second query that counts only the lines based on the input parameters. I can do this query within the region using EXECUTE IMMEDIATE and the number to an output variable. The disconnect is that I can not then assign it to a page element. If I add a statement assigned to a page element, either by

    : P45_COUNT: = p_count;
    or
    APEX_UTIL. SET_SESSION_STATE ('P45_COUNT', p_count);

    then when I submit the changes I get

    ERR-1002 unable to find point item ID 'P45_COUNT' in the application '4000 '.

    as if the ApEx is not looking for the item in my application, but in the application development environment. I am able to write the results to a table and then recover data in the next region. That's how I got around the problem, but it seems too complicated and unnecessary.

    I wrote the following code just to illustrate the problem.

    Make sense? Any ideas?

    Thank you!

    Bill


    declare
    p_sql varchar2 (32767).
    p_sql_count varchar2 (32767).
    p_table_count number (2);
    p_count number (10);
    p_instr number (10);
    Start
    p_sql: = q'! Select g.id, g.widget, g.year_made, g.serial!';
    p_sql: = p_sql | q'! g table_g where g.status = 1!';

    If: P45_YEAR_MADE is not null then
    p_sql: = p_sql | q'! and $P45_YEAR_MADE = g.year_made!';
    end if;
    If: P45_SERIAL is not null then
    p_sql: = p_sql | q'! and upper (g.serial) like '% "| Upper ($P45_SERIAL) | » %' !';
    end if;
    If: P45_WIDGET_SEARCH is not null then
    p_sql: = p_sql | q'! and upper (g.widget) like '% "| Upper ($P45_WIDGET_SEARCH) | » %' !';
    end if;

    p_instr: = instr (p_sql, 'of g table_g where g.status = 1');
    p_sql_count: = ' select count (g.id) of "| substr (p_sql, p_instr);

    p_sql_count: = replace (replace (replace (p_sql_count, ' $P45_YEAR_MADE ',: P45_YEAR_MADE), "$P45_SERIAL", "' |: P45_SERIAL |)) ('), "$P45_WIDGET_SEARCH", "' | : P45_WIDGET_SEARCH | '''');

    run immediately p_sql_count in p_count;

    / * the following

    : P45_COUNT: = p_count;

    gives this error when I submit the region in the development environment

    ERR-1002 unable to find point item ID 'P45_COUNT' in the application '4000 '.

    */

    Select count (1) in the table_sql p_table_count where app_session =: APP_SESSION.
    If p_table_count = 0 then
    insert into table_sql (app_session, sql_text, session_date, count) values (: APP_SESSION, p_sql_count, sysdate, p_count);
    on the other
    Update table_sql set sql_text = p_sql_count, session_date = sysdate, count = p_count where app_session =: APP_SESSION.
    end if;

    / * the above written SQL and count of a table * /.

    Return replace(p_sql,'$',':');
    end;

    Hello

    Try the suggestion of Scott in Re: how to get the query region "PL/SQL function body returns the query string"?

    Andy

  • Why the HTTP become function returns the error code 63?

    I tried to use the get HTTP function to get the XML file is returned by the api Google MAPS distance-matrix. I got the right answer if I insert the url directly in the browser, but using the get HTTP function, it returns the error 63, why?

    This is my code (the VI is developed on LV2011).

    I guess, the VI GET for use with LabVIEW Web Service, only not to get of the Internet pages.

    Using the simplest way:

    Andrey.

  • On the Page validator errors

    Hi I get 4 errors on my site. I think that the errors are flash related so I can leave them, or if anyone of you have any ideas to fix it please let me know. I don't use dreamweaver to integrate the flash then maybe if I use it and make a new animation it wouldn't happen.

    Link to the validator is http://validator.w3.org/check?uri=http%3A%2F%2Fwww.theoldfort.com%2Findex.htm & charset =(det ect+automatically) & doctype = Inline & group = 0 & user-agent=W3C_Validator%2F1.606

    Validation errors only that I see that they are related to your use of Flash. If
    you use CS4, just remove the Flash, then reinsert. Who should
    take care of things.

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    ==================

    "Atomic King" wrote in message
    News:gm1ov6$RDC$1@forums. Macromedia.com...
    > Hi I get two error warning and 4 on my site. I think that errors
    > are
    > flash related so I can let them, or if anyone of you have any ideas to fix
    > them
    > please let me know. I have to use dreamweaver to integrate the flash so
    > maybe if
    > I use it and make a new animation it wouldn't happen.
    >
    > Warnings seem more serious, I would like to bring out of the page. Link
    > to
    > validator is
    > http://validator.w3.org/check?uri=http%3A%2F%2Fwww.theoldfort.com%2Findex.htm&ch
    > arset = (detect + automatically) & doctype = Inline & group = 0 & user-agent = W3C_Validator % 2F1
    .606 >
    >

  • Google search results on the page with "(function(){}) (;(function(){})()');"

    Installed FF9.0.1. I type a word in the google search bar and results. When I select 'shopping' from the left navigation, it flashes the results and then refreshes instantly to a white page with this in mind: (function() {}) ();(function(){})();

    The same thing happens if I click on 'News' and 'Videos' of the NAV. However, if I click on 'Images' and 'Maps' it works fine and load the corresponding Google search results. The url below is a search for 'test '.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • the page validation

    (1) where to place validation is better, component or recode?
    (2) how to manage only allow the letter, number and special characters? can I use ascii value?

    Thank you!

    I was thinking something like this

    For &i = 1 To Len(&string)
       /* get character from string */
       &chr = Substring(&string, &i, 1);
       /* check if chararcter is in ascii range 32 - 127 */
       If Code(&chr) < 32 Or
             Code(&chr) > 127 Then
          /* Set field to Error style */
          &Field.Style = "PSERRORTEXT";
          /* break out of loop */
          Break;
       Else
          /* proceed with following character */
       End-If
    End-For;
    
  • Bug? -Validations in the processing of the Page

    I think I found a bug in the Validations for the processing of the Page.

    If I create a validation of type "Point in 1 Expression contains only characters of the Expression 2", it's as it should be and catches any invalid character.

    But, if I create a new liquidation of type 'Error of function return text', this validation works and another one does not.

    It is the expression of validation 1 for type validation "function return error text:

    BEGIN
    IF: P42_LLP_DECIMAL_DEG_LAT IS NOT NULL
    THEN

    IF: P42_LLP_DECIMAL_DEG_LAT <-90
    THEN
    RETURN "decimal latiitude must be between - 90.0000000 to 90.0000000';
    ON THE OTHER
    NULL;
    END IF;

    END IF;
    end;

    But, how to integrate the validation of character?

    To be honest, I don't think you should! "Point in 1 Expression contains only characters of the Expression 2" does not guarantee that you have a number, which I think is the intent? (Try something like "5-0"...) There is a built-in "..." is digital""validation"but I have had problems with it. I would use a single validation "function return a Boolean:

    begin
    
      return nvl(to_number(:P42_LLP_DECIMAL_DEG_LAT), 0) between -90 and 90;
    
    exception
    
      when value_error or invalid_number
      then
        return false;
    
    end;
    

    [With ' decimal latiitude must be \[a number\]-90.0000000 to 90.0000000' as the error message in the validation, using the "..." a number...' bit if you want to insist on this.

  • validation function call

    Hello
    I created an item-level validation. I have a database function side that check to make this name of user and password is valid.
    Under type of validation, I choose "function returning a Boolean.

    Here's what it looks like
    edumet_auth ('[email protected]', 'temp1');

    When I hit the "connect" button I get the error message

    ORA-06550: line 1, column 44: PLS-00221: 'EDUMET_AUTH' is not a procedure or is undefined ORA-06550: line 1, column 44: PL/SQL: statement ignored ERR-1021 cannot run the validation of the "body of the function that returns a Boolean.


    I choose the wrong type of guy? How can I fix this problem

    Thank you
    Laba

    Assuming that the edumet_auth function returns a Boolean result, use:

    return edumet_auth('[email protected]','temp1');
    

    with the type of validation function returning a Boolean .

  • Field validation through pl/sql returning a Boolean

    Hello

    I do a validation of date entered based on a value in the other field of the form.  The function returns Boolean values (TRUE / FALES) based on the date of entry if it falls within the specific range of dates.

    Here is the example.

    img 2.png

    However, after sending them, I get the error message like -.

    Processing of validation error.

    ORA-06550: line 1, column 44: PLS-00221: 'F_CHECK_DATE' is not a procedure or is undefined ORA-06550: line 1, column 44: PL/SQL: statement ignored

    I'm doing something wrong here?  Help, please.

    Thank you

    -Anand

    anand_gp wrote:

    Hello

    I do a validation of date entered based on a value in the other field of the form.  The function returns Boolean values (TRUE / FALES) based on the date of entry if it falls within the specific range of dates.

    Here is the example.

    However, after sending them, I get the error message like -.

    Processing of validation error.

    ORA-06550: line 1, column 44: PLS-00221: 'F_CHECK_DATE' is not a procedure or is undefined ORA-06550: line 1, column 44: PL/SQL: statement ignored

    I'm doing something wrong here?  Help, please.

    Thank you

    -Anand

    The index is in the validation type: function returning a Boolean

    The expression of validation for validation of Boolean function return must be in the form of a function with at least one accessible body return statement that returns a Boolean value:

    ...

    return ;

    or

    return to_date(:p11_event_date, 'DD/MM/YYYY') > sysdate;


    in this case:

    return my_package.f_check_date(:p11_season, :p11_event_date);

    However, because the function returns a Boolean value anyway, you might as well use a validation Of PL/SQL Expression and save some typing:

    my_package.f_check_date (: p11_season,: p11_event_date);

  • Go to a function that returns a Boolean

    Short version of the question: Boolean values can be returned by a pl/sql function?

    I've implemented a short function which returns a Boolean value; When I compile it I get an error:

    Error report:

    ORA-06550: line 5, column 32:

    PLS-00382: expression is of the wrong type

    ORA-06550: line 6, column 4:

    PLS-00306: wrong number or types of arguments in the call to "PUT_LINE '.

    ORA-06550: line 6, column 4:

    PL/SQL: Statement ignored

    06550 00000 - "line %s, column % s:\n%s".

    * Cause: Usually a PL/SQL compilation error.

    * Action:

    The closest, I appealed


    RETURN sys.diutil.bool_to_int (< foo >);


    and then a caller script can call


    sys.diutil .int_to_bool (< bar >);

    at least this way there is no verification of the Boolean value of 'manual '.  Is it really the only way to return / call a Boolean?


    Thank you

    Chris


    EDIT


    I was aware of the fact I had not provided examples of code - and was just one question fairly open. I hope that this example will show what does not work!


    I have a function that returns a Boolean value:


    create or replace

    FUNCTION myFunc (s_in IN VARCHAR2) RETURN a Boolean value

    IS

    s_out BOOLEAN: = TRUE;

    BEGIN

    RETURN s_out;

    END FUNCTION3;

    I try and call the function in the following script:

    DECLARE

    s_in varchar2 (20): = "Hello";

    s_out boolean;

    BEGIN

    SELECT myfunction (s_in) INTO s_out FROM DUAL;

    END;

    That's when I get the error. But sorry, I was looking for too many error messages! I have worked that the one I posted above is because put_line can accept only strings and numbers not Boolean, the mistake that this function returns is:

    ORA-06550: line 5, column 32:

    PLS-00382: expression is of the wrong type

    ORA-06550: line 5, column 11:

    PLS-00382: expression is of the wrong type

    06550 00000 - "line %s, column % s:\n%s".

    * Cause: Usually a PL/SQL compilation error.

    * Action:

    However, I suppose that the comment of Frank Kulash is perhaps the reason why I see this?


    Post edited by: 2922851

    Hi, Chris,.

    2922851 wrote:

    Short version of the question: Boolean values can be returned by a pl/sql function?

    Sure.  If you are having problems, post your code (both the function and some PL/SQL that calls it).

    The BOOLEAN data type exists only in PL/SQL, not in SQL, so if the function returns a BOOLEAN value, then you can't call it in a SQL statement, even if this SQL statement is used within PL/SQL.  For this reason, a lot of guys write functions that return a NUMBER (1 or 0) or a string (' t ' or 'F') rather than return a BOOLEAN value.

    I've implemented a short function which returns a Boolean value; When I compile it I get an error:

    Error report:

    ORA-06550: line 5, column 32:

    PLS-00382: expression is of the wrong type

    ORA-06550: line 6, column 4:

    PLS-00306: wrong number or types of arguments in the call to "PUT_LINE '.

    ORA-06550: line 6, column 4:

    PL/SQL: Statement ignored

    06550 00000 - "line %s, column % s:\n%s".

    * Cause: Usually a PL/SQL compilation error.

    * Action:

    This error indicates a problem calling put_line; It has nothing to do with what returns the function.

  • validate if the user has entered at least one element of the page

    The apex Version: Application Express 4.1.0.00.32
    Web browser: Internet Explorer 8
    Oracle DB: 11g Enterprise Edition Release 11.2.0.1.0

    Is there a way to validate whether a user has entered at least one item on a form?

    I have a function:
    function hasPageValues return a Boolean value
    is
    Boolean v_item_found: = false;
    Start

    for rITM in
    (select nom_element
    of apex_application_page_items
    where application_id = Apex_Application.g_flow_id
    and page_id = Apex_Application.g_flow_step_id
    )
    loop
    -the element's value
    If v (rITM.item_name) is not null then
    v_item_found: = true;
    end if;
    end loop;

    Return v_item_found;
    end hasPageValues;

    I call this function returning a Boolean in my posting of the page. It doesn't seem to work. It always returns false. What am I missing and is there a better way to do this type of validation. Sorry I'm new to APEX. Thank you very much!

    SmV says:
    Also, I added the part output in the above code and it still does not work. Always returns false.

    When you have a problem in the APEX you can use debug mode to trace what actually demand. It is advisable to include the code of instrumentation in your program units that will generate useful debugging information. To do this, use apex_debug_message API:

    create or replace function hasPageValues (
        p_app_id  in pls_integer
      , p_page_id in pls_integer)
      return boolean
    is
      v_item_found boolean := false;
    begin
    
      for rITM in (
        select
                  item_name
                , display_as
        from
                  apex_application_page_items
        where
                  application_id = p_app_id
        and       page_id = p_page_id)
      loop
        apex_debug_message.log_message(rITM.item_name || ' (' || rITM.display_as || '): ' || v(rITM.item_name));
        -- does the item have a value
        if v(rITM.item_name) is not null
        then
          apex_debug_message.log_message(rITM.item_name || ' is not null: exit.');
          v_item_found := true;
          exit;
        end if;
      end loop;
    
      apex_debug_message.log_message('hasPageValues = ' || case when v_item_found then 'TRUE' when not(v_item_found) then 'FALSE' else null end);
    
      return v_item_found;
    
    end hasPageValues;
    

    Without data in the page, this gives the following debug trace:

    ...
    0.19096     0.00084     Perform custom validations:
    0.19180     0.00081     ...Validation "hasPageValues" - Type: FUNC_BODY_RETURNING_BOOLEAN
    0.19261     0.09948     ...Execute Statement: declare function x return boolean is begin return hasPageValues(:app_id, :app_page_id); return null; end; begin wwv_flow.g_boolean := x; end;
    0.29213     0.00144     P6_PRODUCT_IMAGE (File Browse...):
    0.29352     0.00082     P6_IMAGE (Display Only):
    0.29434     0.00075     P6_PRODUCT_ID (Hidden):
    0.29509     0.00105     P6_PRODUCT_NAME (Text Field):
    0.29614     0.00083     P6_PRODUCT_DESCRIPTION (Textarea):
    0.29697     0.00104     P6_CATEGORY (Radio Group):
    0.29801     0.00151     P6_PRODUCT_AVAIL (Radio Group):
    0.29952     0.00079     P6_LIST_PRICE (Number Field):
    0.30030     0.00071     hasPageValues = FALSE
    0.30102     0.00066     ......Did NOT pass
    0.30168     0.00080     Add error onto error stack
    0.30249     0.00079     ...Error data:
    0.30327     0.00299     ......message: Page has no values
    

    While with a set of element values, we get:

    0.07573     0.00107     Perform custom validations:
    0.07680     0.00094     ...Validation "hasPageValues" - Type: FUNC_BODY_RETURNING_BOOLEAN
    0.07774     0.00231     ...Execute Statement: declare function x return boolean is begin return hasPageValues(:app_id, :app_page_id); return null; end; begin wwv_flow.g_boolean := x; end;
    0.08005     0.00105     P6_PRODUCT_IMAGE (File Browse...):
    0.08109     0.00077     P6_IMAGE (Display Only):
    0.08187     0.00094     P6_PRODUCT_ID (Hidden):
    0.08281     0.00074     P6_PRODUCT_NAME (Text Field):
    0.08354     0.00087     P6_PRODUCT_DESCRIPTION (Textarea):
    0.08442     0.00072     P6_CATEGORY (Radio Group):
    0.08514     0.00067     P6_PRODUCT_AVAIL (Radio Group): Y
    0.08581     0.00112     P6_PRODUCT_AVAIL is not null: exit.
    0.08693     0.00076     hasPageValues = TRUE
    

    The two that appear to be the expected behaviours. What happens when you do this?

  • How to switch the page in the footer numbering based on looking for it's a left or a right page

    Hello

    I sink my teeth into indesign and I was wondering if I can ask for your help on the foll:

    I need to have my page numbers in the footer somewhere different sheet based on knowledge if it is a page left or right-aligned. Something like this is easily done in Word by checking the option "different odd and even pages.

    Y at - it a similar option in InDesign to get the same result.

    Thank you

    Hello

    Yes, there is.

    You must first make sure that you work in a facing Pages document. Something you select when you create a new document (file > New > Document), or you can change after the fact by choosing File > Document format, and then by selecting the option Pages deal with.

    The document is then formatted with pages of left and right along the spinal column.

    The next step is to apply a master page which consists of a left and right page on the pages of your document and add the footer information page and automatic numbering of the pages on this master page (in a different location for the left and right page of course).

    1. Double-click the Master Page label in the Pages panel to modify an existing master page that applies to your document pages, or select new master from the Pages panel menu to create a new master page design to be applied to your document pages, make sure that you set the number of Pages to 2.
    2. Now add a block of text or other footer information, including a page number 'false' the bottom left and right of the master page, you edit and format as it is on your odd/even pages.
    3. To change the number of fake page to auto page number, use the text tool to select the wrong page number and choose text > insert special character > markers > current Page number.
    4. Repeat step 3 for the page number on the second page.
    5. Double-click on a document page in the Pages panel to return to the document.

    If you opted to create a new master page, you will need to apply it to the pages of a document always.

    1. In the Pages panel, select the pages to which you want to apply the master by clicking on the first page and then Shift clicking on the last page. This will select all of the pages between the two institutions.
    2. In the Pages panel menu select master apply to Pages, select the right apply from the menu of master teacher apply in the dialog box apply master and click OK.

    CARI

Maybe you are looking for

  • Satellite U500 - themes changed after Windows Update

    Hello Last night, I turned off my Satellite U500 with lots of updates install. But today, when I've reconnected, the start-up took more time and the model had to restart, then it when on the login screen which is now silver instead of blue and when I

  • Install windows update 10 anniversary on SSD

    Product name: HP Envy 15-j122txPre-install OS: Windows 8.1 New clean installation operating system: Windows 10 pro I bought Samsung 850 pro 1 TB SSd for my computer hp envy laptop. I will replace an old 1 TB HHD by a new 1 TB SSD Samsung 850 EVO on m

  • Qosmio G40 - Windows 7 64 bit and missing drivers

    Hello.. recently, I upgraded my G40 for win7 64 bit and was very appalled by all the missing drivers. up to now 1 Cd/hd dvd drive - driver not supported on this product - it was when he was on vista 32 - now, I just get error in cd player. ??2 tuner

  • How to connect my iPhone to my car bluetooth 6

    How to connect my iPhone to my car bluetooth 6.  I got my old iPhone 4 pair, but can't do the car (Toyota Camry 2009) to recognize the new.  Any tips?

  • is a forgotten password, askes for a reeset disc and do not have

    I had recently been hacked on our personal computer. I was told to do a password, which we did. We do not write it down and the password forgotten, can not connect to our computer right now. The only choice that gives us is to put in a disc to reset