Check if the collection contains an item

What is the best way to build a collection and check if it contains specific objects? For example,.

DECLARE
Dnames_tab. ARRAY TYPE IS VARCHAR2 (30);
dept_names dnames_tab;
BEGIN

dept_names: = dnames_tab ('Shipping', 'Sales', 'Finance', 'Payroll');

END;
/

How can I check if dept_names contains a specific Department? Is the only way to do a loop?

MEMBER of operator use:

DECLARE
    TYPE dnames_tab IS TABLE OF VARCHAR2(30);
    dept_names dnames_tab;
BEGIN
    dept_names := dnames_tab('Shipping','Sales','Finance','Payroll');
    if 'Finance' member of dept_names
      then
        dbms_output.put_line('Found Finance');
      else
        dbms_output.put_line('Did not find Finance');
    end if;
    if 'nickw2' member of dept_names
      then
        dbms_output.put_line('Found nickw2');
      else
        dbms_output.put_line('Did not find nickw2');
    end if;
END;
/
Found Finance
Did not find nickw2

PL/SQL procedure successfully completed.

SQL> 

SY.

Tags: Database

Similar Questions

  • [JS] [ID5] Check if the cell contains fixed graphic

    Hello

    I have the following script:

    var myDoc = app.activeDocument;
    var myImages = myDoc.allGraphics;
    
    var myTables = myDoc.stories.everyItem().tables.everyItem().getElements();
    
    for (i=0; i<myImages.length; i++)
    {  
    for (j=0;j<myTables.length;j++) {
    
    var myActiveTable = myTables[j];
    
    if (myActiveTable.rows.everyItem().cells.everyItem().texts[0].contents == myImages[i]) 
    

    I want to check if a table cell contains a graphic online, but don't know how to do it!

    Best regards, Sjoerd

    The 'content' of a text element contains the unformatted text, so it's curious, why you thought it works somehow...

    Try http://jongware.mit.edu/idcs6js/pc_Text.html#allGraphics ("lists all of the illustrations contained by text.)

    In this case, "allGraphics" is also available for the cell (if you do not have to use ' texts [0]'), rank (so it does not use "rows.everyItem") and even to the Table... There is no need to drill down to the individual texts in the cells and to gather together using everyItem - just use

    If (myActiveTable.allGraphics.length > 0)

    It contains an inline chart.

    Loop through all the images and all the tables does not seem necessary, as an image inside a table "is" a link directly to the object, and in the opposite direction, each inline image knows where he is. Here again, it depends on what information you need to be able to recommend what angle you should address the issue.

    I recommend not to use my online version of the reference DOM but download the CHM searchable and indexed instead. Choose the one you need for your release to ID of http://www.jongware.com/idjshelp.html. If you use Windows, you can use it immediately; for Mac, you must find a suitable CHM Viewer.

    All I had to do was search "allGraphics" in the index to get an immediate list of objects taken supported this property; Then, it is just a matter of point-and-click down the hierarchy of objects to git for as long as you want to get.

  • Liquid: How to check if a collection contains elements of web application and display the custom message

    It's my code, but it does not work:


    {module_webapps id = "28860" filter = 'all' resultsPerPage = '20' hideEmptyMessage = 'false' template = "" collection = "seeWinners" "}

    {% for article on seeWinners.items-%}

    {% If items.seeWinners ==""-%}

    < p > winning number yet, come back again < /p >

    {endif %}

    {% endfor}

    Please can someone tell me what is the problem?

    Thank you.

    No need for the loop.

    Just get the length of the array.

    {module_webapps id = "28860" filter = 'all' resultsPerPage = '20' hideEmptyMessage = 'false' template = "" collection = "seeWinners" "}

    {% If seeWinners.items | size == 0-%}

    No winners yet, check again

    {endif %}

    Later edit: and if you are already in the loop, you have the length of the array loop with: {{forloop.length}}

  • Check if the table contains a value

    Hi all

    I have a table in TestStand that contains numbers. Numbers are generated by a VI and are ranked randomly.

    (1) how can I check to see if the number "6481" is in this table using a step of TestStand?

    (2) is it possible to put this empty table in TestStand, and then complete the table to the size needed when the VI move back the numbers. (i.e. do the table to the size that the VI generates during execution)?

    See you soon,.

    Chase

    I think you will be interested in this Jürgen!

    I managed to do it in 'one step', using a loop.

  • Confusion in the Collection

    Hi gurus

    I was reading a collection of topic of the doc oracle PL/SQL Collections and records and Steven Feuerstein and according to my understanding, there are 3 types of collections in oracle, associative, Nested table and Varray.

    Collection types

    1. associative array

    It is one of oracle collection type and they are unlimited, dimensional and sparse collections unique homogeneous elements... These types of collection are only available in PL/SQL, and we cannot create through SQL. We can use multigames operator in this collection
    Items in this collection type is in order.

    We cannot be initialized

    Nested table 2

    It is one of the oracle collection type and here are single dimensional, without limit and the collection of homogeneous items. This type of collection is available in PL/SQL and SQL and we can also create it through SQL.
    They are initially dense but can be scarce later through deletion. There is no order of the elements in the nested table.

    We use multigames operator in this collection.

    We have initialized.

    3 - Varray
    It is one of the oracle collection type and here are single dimensional, bounded and the collection of homogeneous items. This type of collection is available in PL/SQL and SQL and we can also create it through SQL.
    They are always dense. Whenever you define this type of collection you mention always the maximum no of items. Items in this collection type is in order.

    We cannot use multigames operator in this collection

    My question is that when we use these types of collections? I know only Varray collection, we can use it when we know the upper limit of the elements, but I confuse myself in Nested table and associative. It seems that the two are the same except that we can create Nested table via database level, but in the case of an associative array, we cannot create it.

    More we can perform the string indexing on the location of items in an associative array using the index clause, but in the case of nested by default on PLS_integer indexing table and we can perform localization of indexing on the strings.

    I appreciate if someone tell me when the associative array is used and when we use the nested table. Thanks in advance

    Concerning

    Muzz

    table.

    Muzz says:

    Thanks for the responses,

    @Billy, thanks for the nice collection, but still confusing explanation as to where we need to use the standard collection and where we need to use the associative collection?...

    A table has cells or elements. It also has a way for you to refer to the cell in the table.

    A normal array uses a sequential numbering of addressing or SEO, the cells in the table. In many languages the numbering starts at 0, in PL/SQL it starts at 1.

    A table will look so conceptually as follows (index = item)

    1 = John

    2 = Jack

    3 = Scott

    So in PL/SQL, the following can be used to refer to the first question/cell in the table:

    dbms_output.put_line( '1st item='|| array(1) );
    

    Or we can add a new item in the table as follows:

    array.Extend(1);    -- add a new iterm, e.g. item 2
    array( array.Count ) := 'foo'; -- array.Count is now 2 so we are using array(2) as reference
    

    Referring to a standard table is so easy - usually all that is needed to browse a table:

    for i in 1 .. array.Count loop
      -- do something with array item array(i)
    end loop;
    

    An associative array is a name-value pair. Here is an example of name-values (from list of symbols for the NYSE [NYSE]):

    AAC = Aac Holdings Inc.

    AAN is Inc.. Aaron

    ABR = Arbor Realty Trust

    To refer to an element in the table, we need to use the name for this value. For example

    dbms_output.put_line( 'AAC='|| array('AAC') );
    

    To add or update a name value:

    array('AAT') := 'American Assets Trust';
    

    If there is no name (reference) for the "AAT" string, a new name-value is added in the table. If there is already such a reference, its value is updated.

    There almost never associative tables in PL/SQL. 99% of the code that I see with the help of associative arrays is bad, because it is used a standard table with sequential numbering as reference of array index.

    Associative arrays are useful when receive and process the application name values. An example would be dealing with an allowed web PL/SQL and creating an associative array for the State and the CGI (Common Gateway Interface) variables for the current run.

  • whenever I open a page, a security box appears telling me the page contains elements safe and secure, that I want to display the non secure items?

    original title: problem pop up safety box

    A couple of months, my daughter opened a video on utube.  The screen on my laptop turned blue with white writing and the volume went crazy.  Had to hold the close button.  Since then, whenever I open a page, a security box appears telling me the page contains elements safe and secure, that I want to display the non secure items?  I used for the display of this box on occasion, now it is on each page.  I ran windows security and norton scans and both find nothing.  Anyone have any ideas on how to solve this problem, because it drives me crazy.  Thanks in advance

    Hello Michelle,.

    You have a virus, here's what you need to do. Download and install malwarebytes of: http://malwarebytes.org/products/malwarebytes_free, be sure to update before running a full scan. If you cannot run the program at all, you will need to download a few programs of this site: http://www.bleepingcomputer.com/combofix/how-to-use-combofix it, you should get back on track.

    Also, you may have a browser redirection problem. Go to your IE tools--> internet options--> Connections tab, then click lan setting and make sure that the only box to checked in it is automatically detect settings.

    Let me know if it works,

    Jim

  • How to check whether or not the value is already in the collection

    Hello

    I'm in the analysis of a donkey of xml file assigning values to the collection.
    For each new record, that I am available for capture of xml, I need to check if this value already exists in the collection or not, and then only I must add this value to the collection.
    How we do that. I am not able to check whether or not it is already present in the collection. Help, please.

    Here is my code


    TYPE tab_A_type_rec IS RECORD)
    Name Varchar2 (50);
    );

    TYPE tab_A_type IS TABLE OF THE tab_A_type_rec;

    pkv_A_tab tab_A_type: = tab_A_type ();


    l_nl: = dbms_xslprocessor.selectnodes (dbms_xmldom.makeNode (l_doc), ' / / List "");
    for cur_rec in 0... dbms_xmldom.GetLength (l_nl)-1 LOOP
    l_n: = dbms_xmldom.item (l_nl, cur_rec);

    pkv_A_tab.extend; -----
    pkv_A_tab (pkv_A_tab. (Last). Name: = dbms_xslprocessor.valueOf (l_n,'Name / text () '); -I have to do these two steps only after checking whther that value is already present in the collection pkv_A_tab or not... What will be the stated case.

    end loop;


    Thank you
    Pramod

    Peter Gjelstrup wrote:

    Then in the final use TOGETHER to eliminate duplicates.

    The only problem - cannot use SET operator nested table records ;) or even on a table nested objects, unless the object type has map/delivery orders. Now if in real life, record type has only one attribute - NAME OP can just create type of TABLE OF VARCHAR2 (50). Then:

    SQL> declare
      2      type tab_A_type is table of varchar2(50);
      3      pkv_A_tab tab_A_type := tab_A_type('A','B','C','A','B','C','D');
      4  begin
      5  if 'B' member of pkv_A_tab
      6    then
      7      dbms_output.put_line('Found B.');
      8  end if;
      9  pkv_A_tab := set(pkv_A_tab);
     10  dbms_output.put_line('List of distinct elements:');
     11  for i in 1..pkv_A_tab.count loop
     12    dbms_output.put_line(pkv_A_tab(i));
     13  end loop;
     14  end;
     15  /
    Found B.
    List of distinct elements:
    A
    B
    C
    D
    
    PL/SQL procedure successfully completed.
    
    SQL>   
    

    SY.

  • Anyone has an idea how to manually remove items that do not appear in the Collection, but take place on the device. Specifically, an audio book downloaded via Overdrive?

    Anyone has an idea how to manually remove items that do not appear in the Collection, but take place on the device.  Specifically, an audio book downloaded via Overdrive?

    Hello

    1. what type of files are in the audio book? Could you provide me with the file extensions?
     
    If you delete the information or files audio books could not show some information. I wouldn't recommend allows you to delete the files. If you want to remove them, you can contact overdrive support.

    Hope this information helps.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Information system may not collect information. Unable to connect to this computer. Check that the Winmgmt service is running.

    Information system may not collect information.

    Unable to connect to this computer. Check that the Winmgmt service is running.

    My problem has been set by following the steps:

    1. click on start-> type CMD-> right click on CMD of the result-> click on run as administrator
    2. type the command net stop winmgmt and press enter
    3. Open command prompt and click on start and type system32-> open the folder system32 in the result pane.
    4. in the system32 folder open Wbem and locate the repository folder
    5. right click on the repository, then click Rename
    6. change the name of the drop to Repository.old folder
    7. switch back to the command prompt and type net start winmgmt and press ENTER to run command
    8. close all windows and restart the computer and try to Msinfor32.
  • A conditional branch Oracle OSB: check if the input message contains a string

    I get an XML message with 4 different message structures. I'm trying to read the message and then apply specific actions according to the type of message. So let's say that I get a 'get' conform to the"Schema" and 'MessageB' meets 'plan B '.

    In my proxy that reads the message, so I added in a conditional branch. In the branch, I select:

    Variable: body

    Selected XPath: fn:contains(.,_'MessageA>')

    The foregoing is not validated. Then I noticed that there may be that one condition of branch so it would not work. As I want to do something like:

    If fn:contains($body,_'MessageA>') then do Action

    if FN: Contains($Body, 'MessageB>') then do Action B

    Then I wanted to confirm if an IF statement inside a stadium is the only way to go or is it possible to make this conditional branching?

    Hi nrayan,.

    You can use fn:boolean to check if the node exists, for example fn:boolean($body/MessageA), it returns true if get is not a $body node, and false if...

    Kind regards

    Rui Lopes

  • help on the use of dynamic action to update the items in a table (more precisely, the radio button) based on the collection

    Hi everyone, I posted this question in the past and made huge strides with the help of Denes Kubicek: https://apex.oracle.com/pls/apex/f?p=31517:294:115851992029365: based on my previous question posted: https://forums.oracle.com/forums/thread.jspa?threadID=2537494

    I'm fighting with a single element in my tabular presentation.  There is a radio button.  The choices all seem correctly, but the value is not saved in the collection (and therefore not recorded in the table).  All the other elements in the form of tables to record properly.

    Here's what I have for the query.   This is element c024 (which maps to;) ("F03'), which is defined as a radio based on an existing LOV LOV.

    Currently I have:

    2 items on the page:

    P110_ID

    P110_VALUE

    Dynamic action called COLUMN of CHANGE:

    event: CHANGE

    selection type: jQUERY Selector

    jQuery:

    Select jQuery = input [name = "f03"], select [name "f08"], select [name = "f09"], input [name = 'f10'], input [name = 'f11'], input [name = 'f12'], select [name = "f40"], input [name = "f21"], input [name = 'f22'], input [name = "f23"], input [name = 'f50']

    scope of the event: Dynamics

    real action #1: set the P110_ID javascript expression this.triggeringElement.id

    real action #2: set the P110_VALUE javascript expression this.triggeringElement.value

    action 3: run pl/sql code

    declare
      v_member number;
      v_seq number;
    begin 
      v_member := TO_NUMBER (SUBSTR (:p110_id, 2, 2));
      select ltrim(substr(:p110_ID,5,4),'0') into v_seq from dual;
      safis_collections.update_column(v_seq,
                                    v_member,
                                    :p110_value);
    
    
    

    refreshment area true creation #4: LANDINGS_COLLECTION

    the tabular presentation is based on the query:

    SELECT
    apex_item.text(1,seq_id,'','','id="f01_'||seq_id,'','') "DeleteRow",
    seq_id,
    seq_id display_seq_id,
    apex_item.text_from_LOV(c004,'SPECIES')||'-'||apex_item.text_from_LOV(c005,'GRADE')||'-'||apex_item.text_from_LOV(c006,'MARKETCODE')||'-'||apex_item.text_from_LOV_query(c007,'select unit_of_measure d, unit_of_measure r from species_qc') unit,
    apex_item.select_list_from_LOV(8,c008,'DISPOSITIONS','onchange="getAllDisposition('||seq_id||')"','YES','0','  -- Select Favorite --  ','f08_'||seq_id,'') Disposition,
    apex_item.select_list_from_LOV(9,c009,'GEARS','style="background-color:#FBEC5D; "onFocus="checkGearPreviousFocus('||seq_id||');"onchange="getAllGears('||seq_id||')"','YES','3333','-- Select Favorite --','f09_'||seq_id,'') Gear,
    apex_item.text(10,TO_NUMBER(c010),5,null, 'onchange="setTotal('||seq_id||')"','f10_'||seq_id,'') Quantity,
    apex_item.text(11,TO_NUMBER(c011),5,null,'onchange="getPriceBoundaries('||seq_id||')"','f11_'||seq_id,'') Price,
    
    apex_item.text(12, TO_NUMBER(c012),5,null, 'onchange="changePrice
    ('||seq_id||')" onKeyDown="selectDollarsFocus('||seq_id||',event);"','f12_'||seq_id,'') Dollars,
    decode(c013,'Y',apex_item.text(14, c014,30,null,'style="background-color:#FBEC5D;" onClick="onFocusAreaFished('||seq_id||');"','f14_'||seq_id,''),'N','N/A') Area_Fished,
    decode(c017,'Y',apex_item.text(18, c018,4,null,'style="background-color:#FBEC5D; "onBlur="setUnitQuantity('||seq_id||')"','f18_'||seq_id,''),'N','N/A') UNIT_QUANTITY,
    decode(c017,'Y',apex_item.text(19,'CN',3,null,'readOnly=readOnly;','f19_'||seq_id,''),'N','N/A') UNIT_COUNT,
    c024 hms_flag,
    decode(c050,'Y',apex_item.checkbox(21,'Y','id="f21_'||seq_id||'" style="background-color:#FBEC5D; " onClick="alterYes('||seq_id||');" onKeyPress="alterYes('||seq_id||');"',c021),'N','N/A') FinsAttached,
    decode(c050,'Y',apex_item.checkbox(22,'N','id="f22_'||seq_id||'" style="background-color:#FBEC5D;" onClick="alterNo('||seq_id||');" onKeyPress="alterNo('||seq_id||');"',c022),'N','N/A') FinsNotAttached,
    decode(c050,'Y',apex_item.checkbox(23,'U','id="f23_'||seq_id||'" style="background-color:#FBEC5D;" onClick="alterUnk('||seq_id||');" onKeyPress="alterUnk('||seq_id||');"',c023),'N','N/A') FinsUnknown,
    decode(c050,'Y',apex_item.textarea(28,c028,3,null,null,'f28_'||seq_id,''),'N','N/A') Explanation,
    decode(c024,'N',apex_item.select_list_from_LOV(29,c029,'HMSNATURE','onchange="saveNature('||seq_id||')"','YES','A','-- Select Nature of Sale --','f29_'||seq_id,''),'U',apex_item.select_list_from_LOV(29,c029,'HMSNATURE','onchange="saveNature('||seq_id||')"','YES','A','-- Select Nature of Sale --','f29_'||seq_id,''),'Y','N/A') Nature_Of_Sale,
    decode(c020,'Y',
    apex_item.select_list_from_LOV(40,c040,'HMS_AREA_CODE','style="background-color:#FBEC5D;"',null,null,null,'f40_'||seq_id,''),
    'N','N/A') HMS_AREA_CODE,
    c020,c050,
    decode(c020,'Y',
    apex_item.text(41,TO_NUMBER(c041),5,null,null,'f41_'||seq_id,''),
    'N','N/A') Sale_Price
    from apex_collections
     where collection_name = 'SPECIES_COLLECTION' order by seq_id
    
    
    
    
    
    

    I noticed the following:

    When I change the column C011 (price) the following values are defined in dynamic action:

    P110_ID = f11_1

    P110_VALUE is everything that I change the price.

    When I change the column C024 (hms_flag), the following values are defined:

    P110_ID = f03_0001

    P110_VALUE = change everything what I hms_flag to.

    the region is updated in my dynamic action, and change of hms_flag does not take.  I tested the SQL query that generates the value of v_SEQ in the dynamic action.   Both a change of price and HMS_FLAG, it seems valid

    Select ltrim (substr(:p110_ID,5,4),'0 ') in the double v_seq;

    If f11_1, v_seq: = 1

    If f03_0001, v_seq: = 1

    Thank you!

    solved.  sort of.

    domain c024 references f03.

    dynamic ACtion, step 4 calculated v_member as a substring of P110_ID... and in all other areas, the column and the field (fxx) displayed the same value... otherwise c024.

    I'm not exactly sure how solve it, but see the problem.

  • How to check that the variable 'does not contain' value?

    Hello

    I use CP 7.0.1.237.

    We want to use the widget text box for a custom quiz and verify a response. While we understood how to check the existence of certain key words, we are not able to find a way to check that the content does NOT contain certain keywords. For example, we want to ensure that the text entered in this widget does not contain a "Transformation" and "Non-compliant.

    Is this possible at all?

    Thank you

    Anthony

    Anthony, it works perfectly. Created this conditional action with 4 decisions. I used the interaction of training text scrolling in CP8 (because now you can control the variable - which means I might have a Reset button):

    First decision:

    Second decision (the third is similar to the following)

    Fourth and final decision

    I put the variable words (v_first... v_fifth), it's a reflex I use since I shared actions that much. The variable associated to the ETB (you can now reset an empty var in CP8) is v_TextArea and the Boolean value that will decide if positive feedback (StarOK) should be shown is v_TA_OK. If you want to display a negative feedback, put this in the ELSE part of the final decision.

    FYI: it took 15 minutes, including the creation of assets and the variables and tests. Personally I would have needed more time to do it in JS, but that's just me.

    Lieve

  • Transfer to new PC: the project could not be loaded, it can be damaged or contain obsolete items

    The problem

    I transferred a large and operation project Premiere Pro for a more powerful PC, but I am unable to execute it, stopped by the error message "the project could not be loaded, it may be damaged or contain obsolete items.

    Facts

    The new PC has a 6-Core and a different hard disk configuration, but both the operating system is Windows 7 and the two hosts to update Premiere Pro CS6 (as part of Adobe Production Premium). PCs are networked and Premiere Pro on the old PC can properly load and run the project file located on the new PC, proving that the transferred file is not damaged. In addition, previous versions of the same project produces the same error message when it is run on the new PC except, very oddly, for earlier versions recorded the or before June 28, 2011, as the project was only a fifth of its current size. These versions are loading correctly. The contemporaneous notes show that the editing that day was simple timeline editing, IE not after effects, etc. (that came later), and the project has worked well then and since.

    I is not a damaged project file and I don't know what "to the outdated elements.

    Help

    Any help to solve this problem would be appreciated.

    Hi lemoncart,

    The AE in first pro comps are connected by a dynamic link. So, it can happen if you take the project in another machine that the link is broken and Premiere pro was not able to communicate through these AE compositions.

    Kind regards

    Vinay

  • How to check the column contain alphanumeric or numeric value

    Dear Guru,

    I have a table Data_Table with content below
    Name varchar2 (30)
    content varchar2 (100)

    Content column can contain alphanumeric and digital data with separated by commas.
    I want to check if the column gave completely digital or alphanumeric.

    example of
    (a) 1223,2313,312,12313 (since it is purely digital data with commas so you can say that these are purely numeric data)
    (b) ABC, ABC_VAL, XYZ (since it's purely alphanumeric data with separated by commas)
    If one) is of digital type
    case b) is alpha-numeric

    Any body can help me to know if the content is digital or non-digital

    thanking in advance
    Sanjeev

    Hello

    Here's one way:

    SELECT     txt
    ,     CASE
             WHEN  REGEXP_LIKE ( REPLACE (txt, ',')
                         , '^[[:digit:]]+$'
                         )               THEN  'All digits'
             WHEN  REGEXP_LIKE ( REPLACE (txt, ',')
                         , '^[[:alnum:]_]+$'
                         )               THEN 'All alphanumeric or _'
         END     AS txt_type
    FROM     table_x
    ;
    

    I used

    REPLACE (txt, ',')
    

    instead of just txt so that a string consisting of all commas (such as ",") would not be counted as either all figures or all alphanumeric characters.

  • editing an item in the collection specific arraycollection

    What is the best way to update a specific item in the collection ArrayCollection. The only way I've been able to do is using the table-style syntax, but it will not ship the events needed to synchronize a DataGrid and I must 'refresh()' ArrayCollection collection. Y at - it somehting miss me in the ArrayCollection collection API?

    Thaks for the help!

    Carlos

    Try to use getItemAt() instead of using the syntax of support.

    Tracy

Maybe you are looking for

  • ITunes is will work with the CDs/files not ripped/uploaded via iTunes?

    Does anyone know if iTunes game work with CD/files not ripped/uploaded via iTunes? My main purpose for the purchase of the service would be to get versions without loss of quality to everything that I ripped as MP3 back in the day, rather than having

  • Trying to remove movies to mac/itunes/i don't know.

    Trying to remove movies to mac/itunes/i don't know. Im trying to get free space on my hard drive so I was removing the movies that I bought on iTunes. Ive tried to go the iTunes account > bought > by clicking on the top left corner x. Ive tried enter

  • Installation of Vista x 64 on Satellite A210 - 11 p

    I have been happily using an A210 - 11 p of November 07 until this month, when I upgraded to an HP Pavilion DV9820EA... My A210 - 11 p went to a friend, who came to visit today to get Vista x 64 reinstalled and help & support for everything that coul

  • need to load the software for hp photosmart7260

    I lost my software disk to load my printer hp photosmart7260 photo. Ive been on hp site and my printer is it said to click on that and it will download. but it doesn't work. any help would be appreciated.  Thanks Isabelle

  • Requiring a sync, but I'm not a user of Rhapsody

    I have a clip and try to listen to my audio books.  I read references to "a lot of problems with the audio books" but have not seen anything specific beyond the length of the audio becomes cumbersome to navigate.  The question I have is that files ar