create a dynamic help based on a sql statement

Hello

A few years ago, I asked the same question, but I had no adequate answer to my problem:

I have to build a text of dynamic help for items diaplayed (bubble help or better pop-up window). When I go to a header element there is a? Displays and when I click on the left mouse button it will be a constant display text. Now, I have a table with explanation (build on documentation in the table) for each column on each page. If I want to start an SQL statement when I click the button and the text should be displayed in the pop-up window.

An example everywhere or can someone help me otherways?

Concerning

Siegwin

fixed for you, the changes are:

  1. added onclick = "getItemHelpText('#CURRENT_ITEM_NAME#'); call to your model of 'Optional with Help' for all items using this model will have the same call in.
  2. adding the global page, page 0,
  3. moved JavaScript "getItemHelpText" on page 0 to become a global function, so you can use it anywhere in the application
  4. added item globle P0_DYNAMIC_HELP_TEXT page 0
  5. update your application process to set the value of P0_DYNAMIC_HELP_TEXT on the convening of AJAX, you must fix the help text.
  6. help text changed to P41_ENAME in & P0_DYNAMIC_HELP_TEXT.

That's all I think, tested worked.

good luck with the rest...

Tags: Database

Similar Questions

  • Provisioning - Creating a dynamic username based on data of the user

    You have an instance where you need to generate a custom username based on the user's data during a stage of commissioning for a single resource.

    The following conditions apply

    1 resource Genetiquea is selected for the provision of
    2. the user name is composed of the first letter of the first name of the user, another initial, last initial, DATE of birth
    3. If the user has no middle name, an 'x' is used.

    I'm trying to find where I could create these rules within the IOM. Any help on its location would be useful.

    You can use a pre-fill adapter. The easiest way is to write a java class and package in a jar and deploy it in the xellerate/JavaTask directory. In this task, you can have an entry in the Users.Key or Users.User ID and then use the findUsers tcUserOperationsIntf api to search for that particular user and get all the fields you need her. Then, using if statements or any other comparison code, execute the logic you determine the user id in the target. Then return the new user as your output of your code. Create an adapter in the factory of pre-filled type adapters and use the code that you created. Then on the form for this workflow process, add a prepopulate field for the user ID and select your pre-fill adapter.

    -Kevin

  • column of formulas based on a sql statement

    Hi all

    I have a select statement:

    (select sum(t.CR_AMOUNT-t.DR_AMOUNT)
            from HOSPITAL_TRANSACTIONS_VIEW t
            where t.TRX_TYPE in ( 'CR','DR')
            and   t.CUSTOMER_NO = :account_no        -- where (:account_no) is a char column in a non-database block 
            and   t.trx_date between '01-03-2014' and '31-03-2014') ;
    
    

    and I want to create a column of formulas based on that, but I do not know how?

    Thanks in advance

    I don't see why you need a column of formulas to do this, as one element of forms is involved. But if you want to use a column formula:

    1. create a function local on your form name so maybe FK_FORMULA, col of the: account_no as IN-variable to this function. Inside your sql function and return the result as the result of the function.

    2. in the formula field, simply call the function as FK_FORMULA (: account_no)

  • [help needed] Several insert - SQL statement

    Hello

    This is my table:

    {code}

    create table test

    (

    Identification number,

    DS varchar (6).

    start_date date

    );

    {code}

    There is data in the table.

    {code}

    Insert test values (1, 'DS1982', TO_DATE ('01.03.2014 ',' DD.)) MM YYYY'));

    Insert test values (2, 'DS1982', TO_DATE ('01.04.2014 ',' DD.)) MM YYYY'));

    Insert test values (3, 'DS1982', TO_DATE ('01.05.2014 ',' DD.)) MM YYYY'));

    Insert test values (4, 'DS1982', TO_DATE ('01.06.2014 ',' DD.)) MM YYYY'));

    Insert test values (1, 'DS1999', TO_DATE ('11.04.2014 ',' DD.)) MM YYYY'));

    Insert test values (2, 'DS1999', TO_DATE ('11.05.2014 ',' DD.)) MM YYYY'));

    Insert test values (3, 'DS1999', TO_DATE ('11.06.2014 ',' DD.)) MM YYYY'));

    Insert test values (4, 'DS1999', TO_DATE ('11.07.2014 ',' DD.)) MM YYYY'));

    Insert test values (1, 'DS0009', TO_DATE ('21.01.2014 ',' DD.)) MM YYYY'));

    Insert test values (2, 'DS0009', TO_DATE ('21.02.2014 ',' DD.)) MM YYYY'));

    Insert test values (3, 'DS0009', TO_DATE ('21.03.2014 ',' DD.)) MM YYYY'));

    {code}

    I have to query all records from the table that has:

    Max (start_date) whitin ID and DS culoms.

    So, I have to insert in the record in the table for each DS to condition:

    Each record will be inserted with incremented id whithin DS

    each record inserted must be "newer" than previous 1 month.

    Integration goes up to to_char (sysdate, mm) = to_char (start_date, 'mm').

    Resoult for DS1982 has so (records to insert):

    Insert test values (5, 'DS1982', TO_DATE ('01.07.2014 ',' DD.)) MM YYYY'));

    Insert test values (6, 'DS1982', TO_DATE ('01.08.2014 ',' DD.)) MM YYYY'));

    Insert test values (7, 'DS1982', TO_DATE ('01.09.2014 ',' DD.)) MM YYYY'));

    Insert test values (8, 'DS1982', TO_DATE ('01.10.2014 ',' DD.)) MM YYYY'));

    Insert test values (9, 'DS1982', TO_DATE ('01.11.2014 ',' DD.)) MM YYYY'));

    Insert test values (10, 'DS1982', TO_DATE ('01.12.2014 ',' DD.)) MM YYYY'));

    Insert test values (11, 'DS1982', TO_DATE ('01.01.2015 ',' DD.)) MM YYYY'));

    Insert test values (12, 'DS1982', TO_DATE ('01.02.2015 ',' DD.)) MM YYYY'));

    Insert test values (13, 'DS1982', TO_DATE ('01.03.2015 ',' DD.)) MM YYYY'));

    Insert test values (14, 'DS1982', TO_DATE ('01.04.2015 ',' DD.)) MM YYYY'));

    all together for DS1982

    Insert test values (1, 'DS1982', TO_DATE ('01.03.2014 ',' DD.)) MM YYYY'));

    Insert test values (2, 'DS1982', TO_DATE ('01.04.2014 ',' DD.)) MM YYYY'));

    Insert test values (3, 'DS1982', TO_DATE ('01.05.2014 ',' DD.)) MM YYYY'));

    Insert test values (4, 'DS1982', TO_DATE ('01.06.2014 ',' DD.)) MM YYYY'));

    Insert test values (5, 'DS1982', TO_DATE ('01.07.2014 ',' DD.)) MM YYYY'));

    Insert test values (6, 'DS1982', TO_DATE ('01.08.2014 ',' DD.)) MM YYYY'));

    Insert test values (7, 'DS1982', TO_DATE ('01.09.2014 ',' DD.)) MM YYYY'));

    Insert test values (8, 'DS1982', TO_DATE ('01.10.2014 ',' DD.)) MM YYYY'));

    Insert test values (9, 'DS1982', TO_DATE ('01.11.2014 ',' DD.)) MM YYYY'));

    Insert test values (10, 'DS1982', TO_DATE ('01.12.2014 ',' DD.)) MM YYYY'));

    Insert test values (11, 'DS1982', TO_DATE ('01.01.2015 ',' DD.)) MM YYYY'));

    Insert test values (12, 'DS1982', TO_DATE ('01.02.2015 ',' DD.)) MM YYYY'));

    Insert test values (13, 'DS1982', TO_DATE ('01.03.2015 ',' DD.)) MM YYYY'));

    Insert test values (14, 'DS1982', TO_DATE ('01.04.2015 ',' DD.)) MM YYYY'));

    I hope someone can help me with this problem!

    Thank you!

    This...

    SELECT the id + id LEVEL,

    DS,

    Start_date ADD_MONTHS (start_date, Level)

    Of

    (SELECT ds,

    Max (ID) id,

    Date_début Max (start_date)

    OF the test

    GROUP BY ds)

    CONNECT BY LEVEL<=>

    AND PREREQUISITES ds = ds

    AND PRIOR DBMS_RANDOM. VALUE IS NOT NULL.

    Thank you

    Ann

  • copy and paste the sql statement into sql * more

    How do you paste the sql statement into sql * more... I tried the following options, get the windows interface for this sequel to the documentation below, but that did not work

    http://download.Oracle.com/docs/HTML/A88829_01/ch3.htm

    then I tried to create a simple .txt file with my sql statement and tried to run using @name (where name is the name of the file) and it gives me the following error SP2-0310: cannot open the file 'firstscriot.sql '.

    You name the file name.txt? Then you cannot start with @name, because SQL * PLUS will add the extension .sql

    Try instead the @name.txt or name the file name.sql

    And check if you have the correct path.

    Concerning
    Marcus

  • Create education dynamic table in SQL

    Hello

    I am trying to create a table in a select query via a using the dynamic SQL PL/SQL block. This is the query,

    declare
    stmt varchar2 (2000);
    Start
    stmt: = "' CREATE TABLE AS SELECT PATIENT_ID, name FROM employee output" ';
    immediately execute stmt;
    end;
    /

    It throws the following error.

    declare
    *
    ERROR on line 1:
    ORA-00900: invalid SQL statement
    ORA-06512: at line 5

    I tried to run the statement without the variable, and it runs very well. I mean

    Start
    run immediately "CREATE TABLE output AS SELECT PATIENT_ID, name OF the employee";
    end;
    /

    works perfectly. Can you please help me with this.

    Thank you

    Hello

    declare
    stmt varchar2(2000);
    begin
    stmt := 'CREATE TABLE output AS SELECT PATIENT_ID, FIRST_NAME FROM employee';
    execute immediate stmt;
    end;
    

    Nothing different from what Anurag has shown above.
    But you will need to consider a few things.
    (1) since it is possible it is not a must to use
    (2) it is considered to be a poor design where in it need to create tables on the fly.
    (3) whether it is absolutely mandatory. If you can give us an idea of your condition. I don't know that the gurus here can give you suggestions
    (4) this kind of design will be will lead you into problems sooner or later for sure

    Kind regards
    Bobin

  • Using mod pl/sql to create a dynamic form

    We have a backend application that creates questionnaires. The questions for this are created by an administrator and put in a MySQL database. This administrator can use a number of types of possible questions (like OPEN, MULTIPLE and RANGE). These questionnaires are then presented to the outside world using Web services.

    I'm currently building an Apex application that will accomplish this dynamically built form in the frontend.
    For this I used some PL/SQL procedures. A to collect data from Web services and put in temporary tables and another to return the data of these temporary tables using the cursor for loops and dynamically build the form using the htp package.

    It all works very well. Can I open a page of the Apex and it will show me the form with all the fields, as I expect. However, the problem with recording of data entered in this form.
    In the 'old' days when I created something like this using only modPL/SQL, I would have just a procedure with a parameter name_array and value_array to receive all the data. But in this case, when I try to do, I get a 404 error, because my form is between the apex #OPEN_FORM # and #CLOSE_FORM #...

    A brief overview of my code:
    -Page HTML apex with a region of PL/SQL calling the procedure p_get_form ('P1_PARAMETER');
    -p_get form with a call to p_get_webservice_data and the code to generate the form:
    htp.formopen('p_save_form');
    --
    --
    htp.formsubmit;
    htp.formclose;
    -p_save_form with name_array OWA settings. VC_ARR, value_array OWA. VC_ARR

    Can someone help me with this problem?

    Hello

    You should put the code in a process of PL/SQL (using point 'On Submit - after calculations' and Validations process) on the page. I have a full version of this, but he tried here: [http://apex.oracle.com/pls/otn/f?p=16338:3]

    Have you created a branch on your page?

    Andy

  • Hello all, I need help with creating a dynamic region in jdeveloper 11.1.2.3 version

    . Hello everyone, I need help with creating a dynamic region in jdeveloper 11.1.2.3 version

    What JDK you are using?

    You are probably using an old version of the JDK, that class while compiled under JDK 1.7.0

    http://java67.blogspot.com/2012/10/how-to-fix-javalangunsupportedclassversionerror-major-minor-version-49-50-51.html

    For example, work with the correct version, and it will be fine...

  • How to create a dynamic RTF report that creates dynamic columns based on the selection of dynamic columns in a table?

    Hi all

    Suppose I have table, whose structure changes frequently on a daily basis.

    For example. / / desc my_table gives you after the name of the column the day 1

    SQL > my_table DESC;

    Output

    Name

    Age

    Phone


    Day 2, two other columns are added, viz, address and salary.

    SQL > my_table DESC;

    Output

    Name

    Age

    Phone

    Address

    Salary


    Now, I want to create a Dynnamic RTF report which made extracting data from all columns from my_table daily. For this, I have defined a simultaneous program with XML output type and include in annex a data/definition of data model that takes XML as input and gives the final result of the conc program in EXCEL layout. I am able to do that for a constant number of columns, but don't know how to do it when the number of columns to display dynamically changes.

    For 1 day my XML file should be like this.

    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="XYZ" description="iExpenses Report" Version="1.0">
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT Name
    ,Age
    ,Phone
    FROM my_table
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_my_table" source="Q2">
      <element name="Name" value="Name" />
      <element name="Age" value="Age" />
      <element name="Phone" value="Phone" />
    </group>
    </dataStructure>
    </dataTemplate>
    
    

    And my day 1, EXCEL output RTF model should be like this.
    Name age phone

    Swapnill 23 12345

    For 2 days my XML file should be like this. With 2 new columns selected in the SELECT clause.

    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="XYZ" description="iExpenses Report" Version="1.0">
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT Name
    ,Age
    ,Phone
    ,Address
    ,Salary
    FROM my_table
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_my_table" source="Q2">
      <element name="Name" value="Name" />
      <element name="Age" value="Age" />
      <element name="Phone" value="Phone" />
      <element name="Address" value="Address" />
      <element name="Salary" value="Salary" />
    </group>
    </dataStructure>
    </dataTemplate>
    
    

    And my day 2, exit EXCEL model RTF should be like this.
    Name address telephone pay

    23 12345 Madrid 100000 Swapnill

    Now, I don't know below things.

    • Make the dynamic XML as we did in the day 1 there are 3 columns in the SELECT statement and the day 2, 5 columns. I want to create a dynamic XML which must not be changed if the new columns are added into my_table. I don't know how to create this query and also create their corresponding items below.
    • Make the RTF model dyanamic as day 1 there are 3 exit EXCEL columns and the day 2, 5 columns. I want to create a dynamic RTF model that would display all the columns selected in XML dynamic. I don't know how the RTF will create new XML tags and how it will know where to place them in the report. Means, I can create model RTF day 1, by loading the XML data for 3 columns and place 3 tags XML in the model. But how he will create and place the tags for the new columns the day 2?

    Hope so, you got my requirement, it's difficult. Please let me know how I can implement the necessary solution using the RTF dynamically without any manual intervention.

    Kind regards

    Patricia K.

    Post edited by: SwapnilK

    Hi guys,.

    I was able to solve above the requirement.

    I created a procedure that would create & update (attached to the data definition) XML file dynamically for each race. This dynamic XML contains the SQL statement for the data query that is built dynamically. I am updating this XML file using XDOLoader utility to the definition of data. Then run my program customized to generate the excel output.

    Exit excel retrieves correct number of columns dynamically (3 on Day1 and Day2 5), with corresponding data records.

    Kind regards

    Patricia K.

  • REF cursor in sql dynamic help to run immediately

    Hello

    How can we get the Ref cursor out a dynamic sql statement by executing immediate proceedings
    for example, immediately run ' open CROR for select * from dynamicTable'

    in this area, CROR is a dynamic cursor and table name is dynamic (known at run time), and we can't write static sql statement.

    Thank you

    I don't know what exactly you are after but here is a sample of what can be done.

    SQL> VAR r REFCURSOR;
    SQL> BEGIN
      2          OPEN :r FOR 'SELECT * FROM DUAL';
      3  END;
      4  /
    
    PL/SQL procedure successfully completed.
    
    SQL> PRINT r
    
    D
    -
    X
    

    You can use the OPEN... FOR education with a dynamic string.

  • How to do a validation based on the SQL query?

    Hello

    I have a requirement to perform a validation on a field (messageTextinput) in my page OAF.

    When I click the button apply, the value in this field is validated based on a SQL query (for example, the value in the field NOT IN (value1 select from table1).)

    Help, please.

    Best regards

    Joe

    1. create a SQL query based VO, XXVO. For example:-SQL query is select xx_table;

    2. Enter the "Apply" button click event in the controller and run the AM method passing the value entered by the user in the given field, for example:-value is VAL1

    3. in the method of the AM, get a handle of the VO, the whereClause and run.

    OAViewObjectImpl vo = findViewObject ("XXVO1"); XXVO1 is the name of the instance of the VO above, XXVO

    vo.executeEmptyRowSet ();

    vo.setWhereClause (null);

    vo.setWhereClause ("value =" + VAL1 + "'");

    vo.executeQuery ();

    If (VO. GetRowCount() > 0)

    A record is with the value of VAL1. Perform the required action

    I hope this helps.

  • Dynamic action to execute PL/SQL that calls a JavaScript alert - does not

    Greetings,

    I'm stuck!  I use the Apex Version 4.2.2.  I have a requirement that, when the user fills Field1, I check the database to see if the value of field1 has already been used.  If it was used, I have to inform the user, but the user is allowed to reuse the value - that is to say, duplicates are allowed.  My thought is to use a dynamic action to check the onchange of value running pl/sql to check (via a function in the database) and if it returns true, use a javascript alert to inform my user value is used.  They can then close the alert and change (or not change) the duplicate value

    I did the following:

    1 wrote a PL/SQL function in my utility package in the database - we'll call it apps.my_utils.check_value_use (p_my_val in varchar2) return Boolean - it works.

    2. created a dynamic Action with the following properties for P1_FIELD1:

    Event: change

    Selection type: item (s)

    Product (s): P1_FIELD1

    Condition: is not null

    3. the dynamic Action has an action - real Action

    Action: Execute the PL/SQL Code

    Page items to submit: P1_FIELD1

    PL/SQL code:

    BEGIN

    IF apps.my_utils.check_value_use(:P1_FIELD1) = TRUE THEN

    HTP.p ("< script type =" text/javascript "> '");

    HTP.p ("alert (" this value is used ""); ")

    ');

    HTP.p ("< /script >" ");

    END IF;

    END;

    When I run the page and fill in Field1 with a value that I know is in use, I get the following error:

    Error: parsererror - SyntaxError: JSON.parse: unexpected character

    Help, please.  I already spent too much time on this apparently simple requirement.

    Thank you

    J.

    BEGIN

    IF apps.my_utils.check_value_use(:P1_FIELD1) = TRUE THEN

    HTP.p(' ');

    END IF;

    END;

    Avoid doing this. Try the following method:

    (1) create a dummy hidden element to store the result of your validation of PL/SQL. Lets call it P1_DA_ERR

    (2) in your PL/SQL block put this point hidden in the field "Page point back.

    (3) in your PL/SQL block placed the result of your validation in this element hidden as

    DECLARE
    l_err PLS_INTEGER := 0;
    BEGIN
    -- An example
    IF 1=1 THEN
    l_err := 0;
    ELSE
    l_err := 1;
    end if;
    :P1_DA_ERR := l_err;
    END;
    

    (4) add a true other "Run Javascript code" type action. The could should look like:

    if(parseFloat($v('P1_DA_ERR'))==1)
    {
    alert('Error occurred');
    }
    
  • Failed to create a dynamic action ALERT to build a Select list when selecting a particular value.

    Hi everyone, this should be so easy, and yet I'm stuck.

    I have a form with a P110_VESSEL_ID element.   This article is a list of selection.   It is based on the query:

    Select distinct v.vessel_name, v.vessel_id

    of ships v, frequent_fishermen ff

    where ff.dea_permit_id =: G_PERMIT_ID and

    FF:vessel_id = v.vessel_id

    UNION

    Select v.vessel_name, v.vessel_id

    of apex_collections v, vessels

    where collection_name = "SUPVES_COLLECTION" and

    a.C002 = v.vessel_id

    If the user decides from the values in the selection list query, they can opt to SELECT all THE VALUES.  This SELECT all VALUES is a TEXT of ITEM POST on P110_VESSEL_ID.

    < a id = "popVessels" href = "#" > < font color = blue > select all < /a > ships

    It all works very well.

    The problem is that when the user selects a boat name = "UNKNOWN" and it is corresponding to the value of vessel_id, I want an ALERT to appear indicating that they should check that the boat is UNKNOWN and no one's any ship.

    I created a dynamic action

    event = change

    Select type = item

    Item = P110_VESSEL_ID

    Real ACtion #1 is the ALERT.

    Currently, I have no other logic, but can't even get this working.  All thoughts.   I also tried the SELECT TYPE = jQuery Selector = select [name = "P110_VESSEL_ID"], but that does not work either (although I am not sure if the value must be P110_VESSEL_ID or static VESSEL_ID name).

    Any help is appreciated.

    PS. the page is not submitted when the ship is changed.  There are other data that should be in this region and others and many validations run when submit to submit would not be an option.

    Thanks again,

    Karen

    Is (BOAT = UNKNOWN) a single value with a single vessel_id? If Yes and for example if the vessel_id is 99, then proceed as follows:

    Add an expression "JavaScript" in your dynamic action.

    In the Condition value, enter:

    this.triggeringElement.value == "99"
    

    -Jeff

    And I agree with Nicolette, there is something wrong with some other DA who is at the origin of the DAs after that does not work.

  • Zero error of iteration - the treatment of dynamic sql statements in dbms_xmlgen

    Hello

    I have a procedure that creates a dynamic sql v_sql

    cursor v_curr is
    Select *.
    of btctl_msg_log;

    BEGIN
    Select count (*) in the v_cnt of btctl_msg_log;

    IF v_cnt > 0 THEN
    C1 in v_curr
    LOOP
    v_sql: = "' | ' SELECT * from '. C1.msg_rcrd_src_tbl_nm | |' where rowid = ' | " ' ||'' ' || C1.msg_rcrd_src_tbl_id | " ' ||'' ' ||'' ' ;
    Select DBMS_XMLGEN.getXMLtype (v_sql) in the double v_xml;

    gives me an error

    ORA-19202: an error has occurred in the processing of XML
    ORA-24333: zero number of iterations
    ORA-06512: at "SYS." DBMS_XMLGEN", line 288
    ORA-06512: at line 1

    I don't know why is this error happening.
    Any help much appreciated.

    881575 wrote:
    Hello

    I have a procedure that creates a dynamic sql v_sql

    cursor v_curr is
    Select *.
    of btctl_msg_log;

    BEGIN
    Select count (*) in the v_cnt of btctl_msg_log;

    IF v_cnt > 0 THEN
    C1 in v_curr
    LOOP
    v_sql: = "' | ' SELECT * from '. C1.msg_rcrd_src_tbl_nm | |' where rowid = ' | " ' ||'' ' || C1.msg_rcrd_src_tbl_id | " ' ||'' ' ||'' ' ;
    Select DBMS_XMLGEN.getXMLtype (v_sql) in the double v_xml;

    gives me an error

    ORA-19202: an error has occurred in the processing of XML
    ORA-24333: zero number of iterations
    ORA-06512: at "SYS." DBMS_XMLGEN", line 288
    ORA-06512: at line 1

    I don't know why is this error happening.
    Any help much appreciated.

    Standard when boards (ab) use of EXECUTE IMMEDIATE is to compose the SQL statement in a single VARCHAR2 variable
    Then print the variable before passing to EXECUTE IMMEDIATE.
    COPY the statement & PASTE in sqlplus to validate its correctness.

  • How to create a dynamic clock in my page

    Hi all:

    I want to create a dynamic clock with the current time in my page,
    but it is not dynamic, only when refresh the url, it gives at the present time
    I have create a region with pl/sql (anonymous block)
    Source: htp.p (TO_CHAR (SYSDATE, 'DD YYYY my hh24:mi:ss day'));
    So who can help me change this dynamic region?
    Thanks in advance.


    Saven

    Hello

    If you try to change a part

    
    

    TO

    
    

    Does that help?

    Kind regards
    Jari

Maybe you are looking for

  • Should I use Firefox on my Mac 10.6.8

    I get the spinning wheel of death on my macbook 10.6.8 with firefox via facebook or yahoo just sometimes. I don't know where to go, I'm afraid to update to Didier.

  • Display driver M30X for ME

    I just created a partition separate and installed Windows ME (to play a footy game that does not work on XP). Installation was successful, but the display is terrible - I can't he compares to the grapics Mode without failure.I suspect that this is be

  • Satellite M30-107: WPA and WEP security software

    I want to connect my Satellite M30-107 P - M 745 to a network of wifi MIMO inverters to date.I bought a router and a PCMCIA adapter.I wish security WPA and WEP setup - I need any special software Toshiba on the PC itself to do so, or simply use the s

  • What does Ox886a69f6 mean?

    My computer does not recognize the printer even after changing the USB hubs, cord, uninstalling, re-installing soft ware. This message appears on the screen of the HP Photosmart 2610.

  • How to make calls to my board NI GPIB-PCI using VC ++ 1.52?

    I'm making calls to my new NI GPIB-PCI board using an application which was developed using MSVC ++ 1.52 on a Windows 98 operating system. With the help of MAX I can see the Board of Directors and the instruments on the GPIB communication works fine