Text ToolTip APEX of select list query

Hi all

Currently, I'm stuck with how to display the ToolTip text by using a selection list query. I tried to look for the solution but I got is: assigning help unique text value. I also passed by the example:

https://Apex.Oracle.com/pls/Apex/f?p=44321:410:

When I'm hovering above the value of column Loc Departments IR, , it displays the ToolTip text in a list. My requirement is almost the same. I will implement for the page element and the value of the list will be generate by query.


I use 5 APEX with Database 11g


Any help would be appreciated.



Concerning

Nabila

I solved this problem. I just want to share this, if anyone needs.

1 created dynamic action on loading of the page.

2. Choose the action ToolTip [plug-ins].

3. ToolTip content type: Code PL/SQL which is:

Start

Select: P260_FINANCIALINSTRUMENT

in l_help_text

Double;

HTP.p (replace (nvl (l_help_text, "no help is found.'"), ', ' '))
'));

exception

while others then

HTP.p ('no help is found.');

end;

4. affected elements--> JQuery selector:

Label [for = P78_FINANCIALINSTRUMENT] Caddy-tip

Note:

I used the Tooltip Plugin which is mentioned in my original post.

78 is my page number created if the dynamics of the action when the page is loaded. And P78_FINANCIALINSTRUMENT matches the element for which the ToolTip will come as a selection list.

P260_FINANCIALINSTRUMENT is the element that contains the actual value of the selection list. I used the database query to get the value separated by,

Start

Select listagg (Orders, ',')

THE Group (Control Orders) Orders

in: P260_FINANCIALINSTRUMENT

of Orders;

end;

Thank you

Tags: Database

Similar Questions

  • Fill in the text fields of the select list

    I have a select list when selected will fill two text fields with values based on the SQL query

    For example. The selection list is for empno and meets ename and sal in two different fields.

    I looked at the example of the Dene http://htmldb.oracle.com/pls/otn/f?p=31517:42 it's very good, but the only problem I do face is how to fill in several fields.

    Any help will be appreciated.

    ZRH

    Hello

    It would depend where SAL data. If it's on your page, then you could probably do something with javascript. If this isn't the case, you will need to do some Ajax to retrieve the value of the database. Take a look on: http://htmldb.oracle.com/pls/otn/f?p=31517:80

    Your select list can include the ENAME and SAL and your javascript values existing would then just divide the data into two parts and insert them into the appropriate fields.

    Andy

  • Selection list query

    Hello

    I make this request for popup lov below and it works fine. When I changed the type of a selection list, I received an error "letter dead or unreasonable conversion requested."

    return ' select decode (lead_store_ind, "Y", sv.store: "-" |) SV.store_name | " ", sv.store:"-"| d SV.store_name),
    SV. Store r
    of rms_margin_store_zone_vw sz.
    rms_store_vw sv
    where sv.store = sz.store and
    sz.group_id =: P4_MARGIN_GR and
    sz.zone_id =: P4_MARGIN_ZN
    order of sz.lead_store_ind desc, sv.store';

    Something weird is that if I removed one of these two in where clause, the error is resolved, but I need these two conditions. Help, please.

    sz.group_id =: P4_MARGIN_GR and
    sz.zone_id =: P4_MARGIN_ZN


    Thank you.

    Try this

    return ' select decode (lead_store_ind, "Y", sv.store: "-" |) SV.store_name | " ", sv.store:"-"| d SV.store_name),
    SV. Store r
    of rms_margin_store_zone_vw sz.
    rms_store_vw sv
    where sv.store = sz.store and
    sz.group_id = ' | " ' || : P4_MARGIN_GR | " ' |' and
    sz.zone_id = ' | " ' || : P4_MARGIN_ZN | " ' ||
    ' order of sz.lead_store_ind desc, sv.store';

    Published by: DanielB on 6 February 2012 16:34

  • text box and the size of the selection list

    I text boxes and select the entry in the form.

    I have the width of the box text = 200px html property and select entry have CSS style width 200px.

    It shows the same width at design time, but the much shorter run-time text box, and then select list.

    Are there assets that I can configure to adjust their width to the same to make the shape as more enjoyable?

    Your information and help is much appreciated,

    Kind regards

    Iccsi,

    Yes, experiment, but use a browser view, not DW for final verification.

    You can also experiment using Firefox addon "Firebug".

  • Problem with the cascading for interactive report selection list

    Hi all.

    I'm trying to implement the solution of cascading to the tabular presentation list.

    https://Apex.Oracle.com/pls/Apex/f?p=31517:176:103661090335568:

    But instead of the form of paintings, I use interactive report. After executing the query, I get the error:

    ORA-06550: line 1, column 147: PL/SQL: ORA-00936: lack of expression ORA-06550: line 1, column 13: PL/SQL: statement ignored


    My Sql query for the report:

    select 
    apex_item.hidden(1, a."DATA_ID")DATA_ID,
    apex_item.select_list_from_query(10,
      b.WAVE_GROUP,
     'select GROUP_DISPLAY, GROUP_RETURN from dwd_wave_group',
     'onchange="f_set_casc_sel_list_item(this,f11_'||LPAD (a.DATA_ID, 4,'0')||')"',
     'YES',
     '',
     '- Select Group -',
     'f10_' || LPAD (a.DATA_ID, 4, '0'),
      NULL,
     'NO'
     )WAVE_GROUP,
    apex_item.select_list_from_query(11, b."WAVE_USER",
    'SELECT username d, '
    ||'username r FROM dwd_user where groups = '||b."WAVE_GROUP",
    '',
    'YES',
    '', 
    '- Select User -',
    'f11_' || LPAD (a.DATA_ID, 4, '0'),
     NULL,
    'NO'
    )WAVE_USER
    from "DWD_WAVE_MASTER" a, dwd_wave_assignment b
    where a.data_id = b.data_id
    and b.wave_id = 'wave_1'
    

    If I exclude the condition 2nd selection list query and change as below then everything works fine. Query does not give error on sql developer.

    Use: APEX 4.2.6 with Database 11g.

    apex_item.select_list_from_query(11, b."WAVE_USER",
    'SELECT username d, '
    ||'username r FROM dwd_user',
    '',
    'YES',
    '', 
    '- Select User -',
    'f11_' || LPAD (a.DATA_ID, 4, '0'),
     NULL,
    'NO'
    )
    

    Can someone please help!

    Thank you

    Nabila

    The nabila Islam wrote:

    I'm trying to implement the solution of cascading to the tabular presentation list.

    https://Apex.Oracle.com/pls/Apex/f?p=31517:176:103661090335568:

    But instead of the form of paintings, I use interactive report. After executing the query, I get the error:

    ORA-06550: line 1, column 147: PL/SQL: ORA-00936: lack of expression ORA-06550: line 1, column 13: PL/SQL: statement ignored

    My Sql query for the report:

    1. Select
    2. apex_item. Hidden (' 1, a. "DATA_ID DATA_ID").
    3. apex_item.select_list_from_query (10,
    4. b.WAVE_GROUP,
    5. "select GROUP_DISPLAY, GROUP_RETURN from dwd_wave_group,"
    6. "onchange =" f_set_casc_sel_list_item (this, f11_'|) LPAD (a.DATA_ID, 4, '0'). ") » ',
    7. '' YES. ''
    8. '',
    9. -Select Group «-»,
    10. "f10_" | LPAD (a.DATA_ID, 4, '0'),
    11. NULL,
    12. 'NO '.
    13. ) WAVE_GROUP,.
    14. apex_item.select_list_from_query ("11, b.") WAVE_USER,"
    15. "SELECT user name d.
    16. |' username r FROM dwd_user where group = ' | b."WAVE_GROUP."
    17. '',
    18. '' YES. ''
    19. '',
    20. "- Select user -",
    21. "f11_" | LPAD (a.DATA_ID, 4, '0'),
    22. NULL,
    23. 'NO '.
    24. ) WAVE_USER
    25. of 'DWD_WAVE_MASTER' a, b dwd_wave_assignment
    26. where a.data_id = b.data_id
    27. and b.wave_id = 'wave_1. '

    If I exclude the condition 2nd selection list query and change as below then everything works fine. Query does not give error on sql developer.

    Use: APEX 4.2.6 with Database 11g.

    1. apex_item.select_list_from_query ("11, b.") WAVE_USER,"
    2. "SELECT user name d.
    3. |' username r FROM dwd_user ",
    4. '',
    5. '' YES. ''
    6. '',
    7. "- Select user -",
    8. "f11_" | LPAD (a.DATA_ID, 4, '0'),
    9. NULL,
    10. 'NO '.
    11. )

    What is the data type of DWD_WAVE_ASSIGNMENT. WAVE_GROUP? If it is not a number, then it must be enclosed in quotes when it is used as a literal:

    apex_item.select_list_from_query(11, b."WAVE_USER",
    'SELECT username d, '
    
    ||'username r FROM dwd_user where groups = ' || dbms_assert.enquote_literal(b."WAVE_GROUP"),  
    
    '',
    'YES',
    '',
    '- Select User -',
    'f11_' || LPAD (a.DATA_ID, 4, '0'),
    NULL,
    'NO'
    )
    
  • 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.

  • Errors in the selection list

    Forgive a stupid question. I have followed the Advanced Tutorial documentation and decided to try some of what I learned in a test application I'm building. However, I keep running into an error. I'm tryign to convert a text field in a selection list with a dynamic LOV generated out of a SQL query. I tried following the example of the tutorial, which gave a SQL query of

    SELECT department_id a, department_id FROM oehr_departments b

    And it works without fail. I use the following query

    SELECT NAME, NAME OF CITY_ORIGIN b

    And I get the "LOV query is not valid, a display and a return value is needed, the column names must be different. If your query contains a query online, the first CLAUSE in the SQL statement must not belong to the query online. ' error.

    I tried to replace a and b with display_value and return_value. I tried even change it so the value returned is another column of the same table, all with the same result. I saw another post that mentions making sure that the select privileges is granted at the table. However, if I put

    GRANT SELECT on CITY_ORIGIN < inset user name or the schema > I get ' cannot grant or revoke privledges to yourself. This happens with the user name or the name of the schema for the environment. I don't know where to go to ensure that this privilege is granted, or even what to look for. Display table in the SQL workshop lists all privledges as being 'no' in the column 'accepted '.

    It is for the most fustrating just since this simple single thing is somehtign that I need in several places in the application. Essentially a select list that is populated with the contents of another table.

    Try to run the query below sqlWorkshop

    SELECT 'name' a, b 'Name' OF CITY_ORIGIN

    Looks like the 'Name' column is in different cases

  • LOV SQL: How to configure a selection list to get all the records

    Hello

    I use Oracle 10 g with APEX 2.0.

    Here's my question:

    I have a report and I use 3 text fields and a selection list to search in a join of two tables. The selection list is composed of a "list of values" and the parameter is used in the SQL sentence, has a numerical value.

    Table of results after the join operation looks like this:
    Field1 Field2 Field3 Field4 (assuming that the field3 is used in the select list).
    21 has this NL 1000
    21 bis as 1001-vb
    33 so 1012 ct

    What I want to do is put another pair of the value of the parameter in the select list to let the user choose the "ALL" items mentioned in the selection list, so that the search returns all records without taking this select list-field into account.

    Is it possible to do it with SQL and LOV? Do I need other functions? or configurations?

    Thanks in advance,

    Sedef

    Hi user630478!

    I always use a selection with submit list and the option to get a NULL value for such things. To solve your problem do the following:

    1.) create two named LOVs. As you have already done and another for all values.
    2.) to submit your selection list must be configured to display a NULL value e.g. it shows EVERYTHING with the value 0.
    3.) create two conditional branches that work with your selection list. Which show normal results, if a user has clicked on a normal value and the second should act only if a user has clicked on the WHOLE.
    4.) write a process triggering the LOVs in your selection from one to the other list. This process should only be fired if the second conditional branch has been activated.

    As I understand it that's maybe what you want to know.

    Yours sincerely

  • APEX: Find the value of the selection list in the text box.

    Hi all

    I'm creating an application in which I want to select list textfield value. If I select a value in the select_list must display this value in the textfield, please help me with that.

    Thank you and best regards,
    Martin

    Hi Dr.Jiten Patel,

    You can do this with a dynamic Action that fires on the change of the item selection list. Then it should run JavaScript as follows:

    $('#PX_TEXTFIELD').val($('#PX_SELECTLIST').val());
    

    Replace PX_TEXTFIELD and PX_SELECTLIST for the names of your page elements.

  • change the field type selection list of text based on the data in the other domain.

    Hello

    We have a requirement where we are looking to display the page as element select list or a free text field based on the value of the item to another page.

    Say, we have two fields

    Day:

    Products:

    If day = 'Monday' produced a drop in low field of another product would be a free text field.   Is this possible in APEX?

    This is the configuration I did.

    I used the field produced twice (as a text and list field select) as an element of a page., dependent on the value of the day I used the dynamic properties of actions to show/hide these fields.

    However, when I click on submit, it throws an error:

    ORA-06550: line 1, column 108: PL/SQL: ORA-00957: name of column in double ORA-06550: line 1, column 13: PL/SQL: statement ignored


    Kind regards

    Satya

    You can have both share the same database column, the process of the APEX DML does not know how to consolidate.

    You will need to add a calculation and determine the real value based on two fields, up to an only one mapped to db.

  • NVL selection list does not not on the place where clause in query

    Ok. APEX 4.2...

    Im having problems with my selection lists and NULL values... I see that it has come time and time again...

    I have a tabular presentation, with a query based on a selection list.  The selection list has the ability to '- Show All -'... The value of the selection list is a number, and the display is words...  (for reference the LOV query is: select status, batch from pmt_stat_lookup by 1)

    Initially I had problems with null and invalid numbers like ' display Null = 'Yes' and the problem of null % ', so have used the code in this blog to remove the NULL values... Display Null = & amp; #34; Yes & amp; #34; and the problem of null % | Inside Oracle APEX by Patrick Wolf

    Then in the application of my report, I have a where clause clause that checks the value of the selection list... WHERE batch = nvl(:P11_STATUS_SELECT,STATUS_ID)

    everything works almost fine, and I can choose a status, or I choose - see the All-, but the query will not include the lines where the State is null.

    (I also see that maybe I should be, use the case statement instead of the NVL on where clause, but not sure of the syntax. In addition, NVL was used somewhat in the different reports in the application...)

    For reference, the code of the old blog that I as a process page is:

    BEGIN

    FOR rItem IN

    (SELECT NOM_ELEMENT

    OF APEX_APPLICATION_PAGE_ITEMS

    WHERE APPLICATION_ID = TO_NUMBER(:APP_ID)

    AND PAGE_ID IN (TO_NUMBER(:APP_PAGE_ID), 0)

    AND LOV_DISPLAY_NULL = 'Yes'

    AND LOV_DEFINITION IS NOT NULL

    -change here

    AND LOV_NULL_VALUE = '% null | '%'

    )

    LOOP

    IF V (rItem.ITEM_NAME) = "% null | '%'

    THEN

    Apex_Util.set_session_state (rItem.ITEM_NAME, NULL);

    END IF;

    END LOOP;

    END;

    Thank you very much

    Richard

    Richard,

    Perhaps this example can help you solve your problem.

    https://Apex.Oracle.com/pls/Apex/f?p=63838:2

    Jeff

  • Problems of selection list static apex

    I have a selection list (P147_EVENT_TYPE) with only two values, defined as:

    Static: Hurricane; HURRICANE, River; RIVER

    The selection list filter a report. The user selects 'River', they see all the events of the River in the report. The user selects "Hurricane", they see all the events of the River in the report.

    I wanted to make changes so that there would be a possibility to see "All events". Inside the element, so I changed:

    Display nulls-> Yes

    Null value display-> all Types of events

    Return NULL-> white left value

    The query of the report itself along the lines of:

    SELECT name, type

    Areas

    where ((P147_EVENT_TYPE = "Hurricane" or P147_EVENT_TYPE = "River")

    or P147_EVENT_TYPE is NULL)

    Normally coming to the page on the report, the selection list should display 'All Types of events' and the report is expected to be Hurricane events and river. However, when I get the report selection list (P147_EVENT_TYPE) is displayed for 'River '. It has three choices in there (River, hurricane and all Types of events), however, if I select "All Types of events" in the selection list, it is just for the river. Is it possible to change this? Can I not use a static selection list with a default value type? Any help on that would be great. Thanks in advance for your help.

    It looks like somehow the default value is used for 'River '. I'm trying my earlier suggestion and see what's the result. It must be fast to try it. You can also set up on apex.oracle.com so we can fix it.

  • No query on the selection list

    Apex 4.2

    Two Tables

    SITES

    Site_id (pk)

    Site_name

    Date

    ACTIVATION

    Activation_id (pk)

    Activation_date

    Deactivation_date

    Site_id (fk)

    * I have a report based on the table of ACTIVATION. When you click on a link change on line any report, it takes you to a form to edit the information. The form allows you to edit the Site_id. The Site_id is represented as a list of selection with the LOV query:

    SELECT SITE_NAME, SITE_ID

    SITES

    * This list of selection gives me all site_names, however, I want to filter the list of selection by only showing sites that aren't in the report. All site names are:

    Maryland

    Los Angeles

    Natchez

    Bakersfield

    Austin

    The report includes the lines:

    Activation ID Site name deactivation / Activation Date date

    1 Natchez 11/03/2013

    2 los Angeles 27/05/2020

    I would like the list to show only those who is not in the report, that is to say Austin, Bakersfield, in Maryland.

    I tried to write the NOT IN query. When I click on a link change in the report to access the form, select list the entries I want, however, the line that I clicked on displays the id of the Site name instead of the actual name. I don't know where is my mistake. I hope that all makes sense. Thank you for your help in advance. Oh, and my query I wrote is as follows:

    SELECT SITE_NAME, SITE_ID

    SITES

    WHEN SITE_ID NOT IN (SELECT SITE_ID

    ACTIVATION OF

    WHERE what =)

    The second (LOV):

    SELECT SITE_NAME, SITE_ID
    FROM SITES
    WHERE SITE_ID NOT IN (SELECT SITE_ID
    FROM ACTIVATION
    WHERE this = that)
    OR SITE_ID = :PXX_SITE_ID
    

    Thank you

    Erick

  • Select list or view Auto text

    Hi guys,.

    I'm trying to disable my tabular presentation the Application column . If the data exists, it must be blocked, but if the user clicks the Add button the selection list should appear.

    I tried with javascript is in many ways...

    $('td[headers="APPLICATION"]') .attr ("disabled", "disabled").addClass('apex_disabled');

    document.getElementById('f05_000'+i).disabled = true;

    $x('f05_000'+i).readOnly = "readonly";
    ......

    But when I click on submit button I got error of constraint because the list selection change of value null.

    now I'm doing it

    Select
    ID,
    CODE_U,
    ACCESS,
    case
    When
    v('REQUEST') = "Add" THEN
    APEX_ITEM. SELECT_LIST_FROM_LOV (5, APPLICATION, NULL, 'LOV_LISTE_APPLICATION', ' YES ', NULL,' - choose "")
    ON THE OTHER
    APEX_ITEM. TEXT_FROM_LOV (APPLICATION, 'LOV_LISTE_APPLICATION')
    COMPLETE THE APPLICATION
    of GESTION_DES_ACCES
    WHERE CODE_U =: P2_CODE_U

    But it does not work too. Can you give me some suggestions?

    I use Apex 4.1.1


    Thank you
    Eric

    After you turn off the value of the selection list, you can't get the value of the selection list. In your case, you can hide the selection list until you create a text element with the value selected in the select list, try the code below in DA

    $('select[name="f05"]').each( function(i) {
    
         var rowSelected= $(this).attr("id").substr(4);
    
            var appSelect= $('#f05_'+rowSelected).attr("id");
    
              //To change the background color for Application column
    
               $x(appSelect).style.background = "#F2F2F5";
    
              //To get the value from "Application" select list and hide it
    
              var fake = $(""+$("#f05_"+rowSelected+ " :selected").text()+"");
              $("#f05_"+rowSelected).before(fake);
              $("#f05_"+rowSelected).hide(); 
    
            }
    );
    

    Thank you
    Lacombe

  • Fill in the text field of the value of select list using javascript

    Hello

    I'm editing a form where a text field is to be filled using an On-Demand application process. The process is called with an OnChange.

    Application process:
    declare
      l_CCSS_STATUS varchar2(100);
    begin
      select CCSS_STATUS into l_CCSS_STATUS from PATIENT
        where ID = :P11_PATIENT_ID;
      htp.prn(l_CCSS_STATUS);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    l_CCSS_STATUS := 'Inactive';
      htp.prn(l_CCSS_STATUS);
    end;
    In the attributes of HTML Form selection list element:

    onChange = "javascript:f_getStatus()"; "

    It fills a text field (: P11_CCSS_STATUS) when I appreciate is selected in the select list.


    I am filling a second field (: P11_COPY) with a (share) value for the same table of PATIENTS, but don't really understand how the: P11_CCSS_STATUS field is filled in from the application process.

    If I understand the request of the share in the application process, then it is appended to the value CCSS_STATUS and appears in the: P11_CCSS_STATUS text element.

    Any help is appreciated.

    Thank you
    Matt

    Hello

    visit the similar to the below application process

    declare
      l_CCSS_STATUS varchar2(100);
      l_COPAY varchar2(100)
    begin
    
      select CCSS_STATUS , COPAY into l_CCSS_STATUS , l_COPAY from PATIENT
        where ID = :P11_PATIENT_ID;
      //notice this line.... how the response is send
      htp.prn(l_CCSS_STATUS || ',' || l_COPAY);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    l_CCSS_STATUS := 'Inactive';
      htp.prn(l_CCSS_STATUS);
    end;
    

    and javascript call you to something similar to below.

    function myAjaxCall()
    {
       var ajaxRequest = new htmldb_Get( null , &APP_ID. , 'APPLICATION_PROCESS=myAppProcess',0);
       ajaxRequest.add('P11_PATIENT_ID' , $v('P11_PATIENT_ID'))
       //notice the below line.. use of split function
        ajaxResult = ajaxRequest.get().split(',')
       $s( 'P11_CCSS_STATUS' , ajaxResult[0]);
          $s( 'P11_COPAY' , ajaxResult[1]);
    }
    

    Example: http://apex.oracle.com/pls/apex/f?p=12060:110

    Kind regards
    Shijesh

Maybe you are looking for

  • UNSYNC my photos

    I had photos on my mac that I moved to a folder on my desktop. Later, I tried to transfer these photos on my iPad in this folder. When they went on my iPad, they became unchangeable and I'm unable to remove the image. How can I remove my iPad images

  • Satellite A660 - wen of video streaming VGA driver crash

    Satellite A660 - my computer hangs and the VGA driver crashes and then recovers when I watch Youtube or any other streaming site. I think that there is a problem with VGA drivers. I have Windows 7 64 bit. Rarely, windows get completely frozen and mus

  • 4508 ENVY: ENVY 4508 firefox launched the print job hangs in the print queue

    Hello We have a desire 4508 connected via wifi to a laptop 10 (x 64) Windows. We downloaded and installed the latest drivers available on HP and printers generally LibreOffice, WordPad or Firefox (normal web pages). But there is a situation when prin

  • Bought a WNR2020 and is no longer able to play the game "LINE: Disney TsumTsum.

    I replaced my old equipment with NETGEAR N300 wireless router with antenna 5dBi external high-power (WNR2020v2) recently and now I'm not able to access the LINE: Disney TsumTsum game on any device (phone or Tablet) when it is connected to my home net

  • New to Pic Simualtions

    I am fairly new to multisim and completely new for the simulation with the PEAK of the MCU. Multisim supports the PIC16F84 with the C compiler on my machine. Everything I do in this project is to turn on the LED connected to pin RA0 on. The LED does