Dynamic list of unique values

I II

A

A
A B
B C
B
C
C

I wish I had a way to calculate the values in the column II of the values in the column I. I has many duplicates, and two column he only unique values. What is the best way to achieve this?

Here's a method:

Column B, the column in the Index, can be hidden.

Formulas:

in B2 and filled until the end of the column B:

IF (COUNTIF(A$2:A2,A2) = 1, MAX(B$1:B1) + 1"," ")

It counts the number of times the value of 'this line' column that has occurred in cells A2 to 'this line '. If the number is 1, the formula returns an index number one greater than the largest number already in the column in the index.

In C2 and filled until the end of the column C:

IF (LINE (−1) > MAX (B),"", LOOKUP (ROW () −1, B, A) ")

The first part of this is a switch that prevents the SEARCH part to act if all the distinct values have been retrieved. If thye have not, SEARCH returns the value to the column of the row whose column B contains a number one at least the number of line of 'the line '.

Kind regards

Barry

Tags: iWork

Similar Questions

  • creating a dynamic list of values

    Hello

    While I am trying to create a dynamic list of values on a table (table1) with h_id columns, the head_foot and the header. I gave the query to create the dynamic values as list

    Select d, r header header
    of g.fw_header_footer
    order by 1

    where d is the display value and r is the return value to get the error message

    "1 error has occurred."

    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. »


    Can someone please suggest me if am wrong.


    Thanks in advance

    Hello

    I suggest that you check the permissions of your application of the analysis of schema has on your g.fw_header_footer table.

    It is a mistake to mislead, but I've just reproduced the same problem trying to select from a table that I didn't have SELECT permission.

    Scott

  • Join the query in a dynamic list of values query

    I have a join query in a dynamic list of values query. The value does not return a value of text, but rather the value of the ID.

    Is it possible to use a join query in a dynamic list of values query?

    For example... in the query below, I expect to see ename in the drop-down list, but I see class_emp_id.

    Select b.ename d, a.class_emp_id r
    of class_emp a, b of the emp
    where a.class_cat_id =: CURR_CLASS_CAT_ID
    and a.emp_id = b.emp_id
    order by 1

    Thank you
    Reid

    Hey Reid,

    The structure of the pairings/value of the item is incorrect - it should be: item1, item2, etc.: value1, value2, etc, so:

    ' f ? p = & APP_ID.: 50: & SESSION. ": P50_LP_ID, P50_LP_NAME, CURR_CLASS_CAT_ID: #LP_ID #, #LP_NAME #, #CLASS_CAT_ID #"

    I guess that CURR_CLASS_CAT_ID does not use the prefix P50_?

    Andy

  • dynamic action sets the value of the element, but not save to DB on submit

    I'm working on a page where the value of several to show only the page elements are defined using a dynamic Action.  They are set when the user selects a value in a list of selection (and is based on the value of the selection list).  Dynamic action is triggered on a list selection change event and then runs the real action "set the value.  The selection list displays the names of sales representative.  The three fields dynamically filled are the org structure (that is, their chain management).

    For the action to set the value, I use a defined Type of SQL statement:

    Select VP, DIR, MGR

    of SALES_ORG where SSR =: P20_SSR

    In the affected elements, I have fixed Type of selection to the 'item (s)"and the value of the Item (s) for 'P20_GVP, P20_DIR, P20_MGR.

    Dynamic action works fine for the display of the page (that is, when I select a sales representative in the selection list dynamic action properly updated only display value fields three).  This page is a form in which the user submits information relating to the rep.  When the page is sent, all fields are filled in a new record of DB with the exception of three that were populated dynamically above.  These fields get the values NULL.

    When the dynamic action updates the values in the three fields is - it does not set the value of session?  Why these fields don't are not taken into account in the submit other ideas > process Page?

    I use 5 APEX with Chrome on Mac (Yosemite).

    Thanks for the note.  I didn't only display the items could not be used in this way.  I think I'll take a different approach with the design; given that the org structure is in another table that I can simply refer to that by rep when necessary rather than saving the information uploaded to the page of the form.  The reason why I have not fill the screen only the points of loading the page is because I don't know what the values should be until the user selects a sales representative in the selection list.

    I'll change the design to one of the following:

    1) change the display only items of standard text field.  NOTE: if I make the text read-only field that causes other problems when loading (I get the message "violation of protection Session state").

    OR

    2) do not include org structure in the download folder and just refer to table org Rep when necessary.

    Thank you!

    Steve

  • Using #WORKSPACE_IMAGES # with the names of dynamic list of Image, not to hardcode

    I hope someone can help me with this request.

    I am developing an Apex application but I am learning as I go along by examples of Google search and read the tutorials, etc.  I am trying to create a slideshow based on a dynamic list of Image names. First, I created an apex_collection in a header containing the names of the image process, I need (view/column APEX_COLLECTIONS. C001) I then created a Page called P81_IMAGE_NAME element. I'm trying to loop through the collection and display the pictures in a slide show.   I have a HTML Page with the following code in the Source of the region (found the code in an example online)... Please can someone tell me where I can add the following PL/SQL code so that #WORKSPACE_IMAGES # nom_image may contain the names of images dynamically recoveries rather then hard-coded image names as in the < div Section of the Source region - Code I want to add somewhere, don't know where it add or even if it will work

    Declare cursor c1 is

    Select c001

    of apex_collections

    where collection_name = "CO_IMAGES";

    Start

    A1 to c1 loop

    : P81_IMAGE_NAME: = c1. C001;

    < img src = "#WORKSPACE_IMAGES & P81_IMAGE_NAME" alt = "Slideshow Image" / >

    end loop;

    end;

    -End

    -The code which displays images, I found (Harcoded in the < div section)

    < script type = "text/javascript" >

    function slideSwitch() {}

    var $active = $("#slideshow IMG.active");

    If ($active.length == 0) $active = $("#slideshow IMG:last");

    This allows to take images in their order of appearance in the tag

    var $next = $active.next () .length? $active.next)

    : $('#slideshow IMG:first');

    Uncomment the 3 lines below to shoot images in random order

    var $sibs = $active.siblings ();

    var rndNum = Math.floor (Math.random () * $sibs.length);

    var $next = $($sibs [rndNum]);

    $active.addClass('last-active');

    $next.css ({opacity: 0.0})

    .addClass ('active')

    . Animate ({opacity: 1.0}, 3000, function() {})

    $active.removeClass ('active last active');

    });

    }

    {$(function()}

    setInterval ('slideSwitch()', 3000);

    });

    < /script >

    < style type = "text/css" >

    / * the value width and height to match your images * /.

    {#slideshow}

    position: relative;

    height: 400px;

    }

    #slideshow IMG {}

    position: absolute;

    top: 0;

    Left: 0;

    z index: 8;

    opacity: 0.0;

    }

    {IMG.active #slideshow

    z-index: 10;

    opacity: 1.0;

    }

    {IMG.last - active #slideshow

    z index: 9;

    }

    < / style >

    < div id = "slideshow" >

    < img src = "" #WORKSPACE_IMAGES #Logo.png "alt =" slideshow Image 2 "/ >" "

    < img src = "" #WORKSPACE_IMAGES #Logo1.png "alt =" slideshow Image 1 "/ >" "

    < img src = "' #WORKSPACE_IMAGES #2_Burg - 1.png" alt = "Slideshow Image 2" / > "

    < img src = "" #WORKSPACE_IMAGES #Car11.jpg "alt =" slideshow Image 3 "/ >" "

    < img src = "" #WORKSPACE_IMAGES #Screen1.png "alt =" slideshow Image 4 "/ >" "

    < / div >

    < / div >

    user8016921 wrote:

    Please update your profile of the forum with a recognizable user name: Video tutorial how to change username available

    Always include the information described in these guidelines when you post a question: How to get the answers from the forum

    I am developing an Apex application but I am learning as I go along by examples of Google search and read the tutorials, etc.  I am trying to create a slideshow based on a dynamic list of Image names. First, I created an apex_collection in a header containing the names of the image process, I need (view/column APEX_COLLECTIONS. C001) I then created a Page called P81_IMAGE_NAME element. I'm trying to loop through the collection and display the pictures in a slide show.  I have a HTML Page with the following code in the Source of the region (found the code in an example online)... Please can someone tell me where I can add the following PL/SQL code so that #WORKSPACE_IMAGES # nom_image may contain the names of images dynamically recoveries rather then hard-coded image names as in the

    Depends on the number of images. How are they involved?

    With a small number (e.g. 10-20), you can simply use a page element to register the handset img reference items and she as a substitution string in the region existing HTML. For more information, it would be preferable to use a report.

    On the approach of page element:

    1. create the point P81_IMAGES of the page as an element of the display only. The value of the Condition Never element so it is not included in the rendered page and the security attribute point escape special characters No.

    2. create a page process before header (sequenced to run once the collection created if that is done at this point in the process):

    begin
    
      :p81_images := null;
    
      for img in (
        select c001 src
        from apex_collections
        where collection_name = 'CO_IMAGES')
      loop
        :p81_images := :p81_images || 'Slideshow Image '
      end loop;
    
    end;
    

    3 refer to the value of the element in the HTML source of the region

    
    
    
    
    
    &P81_IMAGES.
  • Group voting dynamic list

    Can we have a vote of group based on a dynamic list which is the output of the previous human task? Please suggest

    Thank you

    Try switching to a comma-separated string that contains the list of Userid you captured in the previous human task in this human task.

    As you set to hear it at the same time, you want to generate the list of participants using the names and expressions. Specify that you want what he defined by user and by name and use the string separated by commas as the value.

    Dan

  • Dynamic list - is current issue

    I created a dynamic list. This works except for the IS_CURRENT parameter.
    List : dyn wizard page 11
    Template:      Wizard Progress List, Horizontal Train
    
    Query Source Type: Function Returning SQL Query
    
    Query
    
    case
    when :APP_PAGE_ID = '11' THEN
      RETURN 
      'SELECT null, progress_name label, '||
      'case WHEN NVL(:APPL_TAB_NAME,''PROJECT'')=CURRENT_TAB_NAME THEN ''Y'' else ''N'' end 
     is_current_list_entry,'||
      'null,null,id ' ||
      'FROM csrsr_req_wizard_nav '||
      'WHERE form_number_id = 3 ORDER BY 6';
    when :APP_PAGE_ID = '8' THEN
      RETURN 
      'SELECT null, current_tab_name label '||
      'FROM csrsr_req_wizard_nav '||
      'WHERE form_number_id = 1 ORDER BY 1';
    when :APP_PAGE_ID = '10' THEN
      RETURN 
      'SELECT null, current_tab_name label '||
      'FROM csrsr_req_wizard_nav '||
      'WHERE form_number_id = 2 ORDER BY 1';
    else
      RETURN 
      'SELECT null, current_tab_name label '||
      'FROM csrsr_req_wizard_nav '||
      'WHERE form_number_id = 4 ORDER BY 1';
    END CASE;
    The page I access the dynamic list is on Page 11.

    Can someone please?

    Robert
    http://apexjscss.blogspot.com

    Applications of dynamic list you generate missing a column. Your questions have 6 columns:

    SELECT
        null
      , progress_name label
      , case
          WHEN NVL(:APPL_TAB_NAME,'PROJECT') = CURRENT_TAB_NAME THEN 'YES'
          else 'NO'
        end is_current
      ,null
      ,null
      ,id
    FROM
        csrsr_req_wizard_nav
    WHERE
        form_number_id = 3
    ORDER BY
        6
    

    The examples in the list wizard have 7:

    SELECT null,
           ENAME label,
           null target,
           'YES' is_current,
           '#APP_IMAGES#del.gif' image,
           'width="20" height="20"' image_attrib,
           ENAME image_alt
    FROM  emp
    ORDER BY ename
    

    Although the target column is not used in a list of courses standard Wizard because it is not clickable, the column must always be included or the values of the column will be compensated. APEX sees your is_current as the target value column and your null image is_currentcolumn. It is advisable to include all columns and alias them:

    select
        null level
      , progress_name label
      , null target
      , case
          nvl(:appl_tab_name, 'PROJECT') = current_tab_name then 'YES'
          else 'NO'
        end is_current
      , null image
      , null image_attrib
      , null image_alt
    from
        csrsr_req_wizard_nav
    where
        form_number_id = 3
    order by
        6
    

    Also note that there are no application APPL_TAB_NAME element in this application, which will have an impact on the results of this query: nvl (: appl_tab_name, 'PROJECT') assess so always at the "PROJECT".

  • Unique value as Checbox or RadioButton that submits the page

    I need a page element with a unique value which submits back to page, so that I can view conditionally other page elements.
    I know a traditional "button would work, but the checkbox or Radiobutton would be my preference.
    Here's where I'm stuck.
    BOX - I used dynamic events to hide/show page elements, but in this case I need a QUOTE.
    RADIO BUTTON - this works very well with the option redirect or submit, but I only have 1 value, so I act as a power button, when if he is selected and the user clicks top again, he turns not selected... I don't know how to do this.

    Ideas in both cases?

    On the box, can you just add a dynamic action such that when it changed and in an activated State (usually a non-null value), run Javascript. Have the Javascript apex.submit ('GO').

    (Instead of 'GO' using the value of your own desired request, or none at all if you don't want or need an application of value.)

  • Attribute substitution does not not in the models of dynamic lists

    Hi all
    Dynamic lists were introduced at the APEX 4.1 and they can be used for drop-down menus. I try to use attribute substitution #A01 #... #A10 # in models without success.

    Here's a select sample

    < pre >
    SELECT the level,
    short_title label,
    ' f ? p = myapp:1:0:MYAPP_ID :'|| target ID,
    'NO' is_current
    NO picture,
    'm'|| Attribute1 to_char (ID)
    FROM MyTable
    START WITH parent_id =: MYAPP_ROOT_ID
    CONNECT BY PRIOR ID = parent_id
    Brothers and SŒURS of ORDER BY seq_in_parent
    < / pre >

    and here is a snippet of the model

    Model list associated

    & lt; class li = & quot; dhtmlMenuItem & quot; & gt; & lt; an id = & quot; #A01 #& quot; href = & quot; #LINK #& quot; & gt; # TEXT #& lt; /a & gt; & lt; /Li & gt;

    The substitution is not made. It looks like a bug, but maybe I'm missing something.

    Any help would be greatly appreciated.

    Regards Garry

    Hi Garry,

    Given the query you provided, it looks like you're missing two parameters in your query (marked as missing below):

     SELECT level,
            short_title label,
            'f?p=myapp:1:0::::MYAPP_ID:'||id target,
            'NO' is_current,
            NULL image,
            NULL image_attribute,                                 <----------- MISSING
            NULL image_alt_attribute,                             <----------- MISSING
            'm'||TO_CHAR(id) attribute1
       FROM mytable
      START WITH parent_id = :MYAPP_ROOT_ID
    CONNECT BY PRIOR id = parent_id
      ORDER SIBLINGS BY seq_in_parent
    

    Once you update your application, then if all goes well, you should see the correct replacement of the occurrences of #A01 # in the model of your list with the value returned by the query to youe.

    Kind regards
    Hilary

  • Several homes of dynamic list

    Based on a previous topic, I was able to view all the selected items in a dynamic list. I developed the following code to insert each of these selections in a table:

    $insertSQL = sprintf ("VALUES INSERT IN PEEROWNSTEEN (PEEREDU_ID, TEEN_ID, ASOF_DATE) (%s, %s, %s)',
    GetSQLValueString ($_SESSION ['MM_UserGroup'], "int").
    GetSQLValueString ($teenid, "int"),
    GetSQLValueString (insertpeerownsteen.asofdate, 'date'));

    and

    <? PHP foreach ($_POST ['teenselect'] as $teenid)
    {
    echo "< p > Teen:". "." $teenid. "< /p > ';
    @mysql_select_db ($database_cnPeer_Outreach, $cnPeer_Outreach);
    $Result1 = mysql_query ($insertSQL, $cnPeer_Outreach) or die (mysql_error ());
    }
    ? >

    When I run this code, I get a null value for $teenid. How to refer to this field in the insert statement?

    TIA
    No,

    I solved this problem myself. I had to leave the GetSQLValueString evaluated for each iteration.

  • Dynamic list of formatting

    I have a list of dates about 1800 (some are duplicates) stored in an access query. I want to include them in a dynamic list in date order in the format day month year. -' 17/01/2000' without duplicates - where the SEPARATE in the recordset below:

    < %
    var recordset2_cmd = Server.CreateObject ("ADODB.Command");
    recordset2_cmd. ActiveConnection = MM_SEEALL_STRING;
    recordset2_cmd.CommandText = "SELECT DISTINCT photodate photodate Dates ORDER BY DESC";
    recordset2_cmd. Prepared = true;

    var recordset2 is recordset2_cmd. Execute();
    var recordset2_numRows = 0;
    % >
    With the code following selection:

    < select name = "select" size = "20" title = "< % = DoDateTime ((recordset2." Fields.Item ("photodate"). (Value), 2, 2057) % > ">"
    < %
    While (! recordset2.) EOF) {}
    % > < option value = "< % = (recordset2." Fields.Item ("photodate"). (% De la valeur) > "< %=((recordset2.) Fields.Item ("photodate"). Value is (recordset2. Fields.Item ("photodate"). Value))? "Selected=\"selected\"":"")% > > < % = (recordset2. Fields.Item ("photodate"). % Value) > < / option >
    < %
    Recordset2. MoveNext();
    }
    If (recordset2. CursorType > 0) {}
    If (! recordset2.) Recordset2 BOF). MoveFirst();
    } else {}
    Recordset2. Requery();
    }
    % >
    < / select >
    Operating (on my test server) (properly ordered and distinct) dates are all displayed in the form "17/01/2000" instead of 17/01/2000.

    Can someone tell me why?

    Howard Walker

    March 19, 2007, in macromedia.dreamweaver.appdev, whatalotofrubbish
    wrote:

    > When executed (on my test server) dates (properly ordered and)
    (> separate) are all displayed in the form "17/01/2000" instead of
    > 17/01/2000.
    >
    > Can someone tell me why?

    Because the products of Microsoft, by default, assume that you are in the United States?

    You must set a location ID (LCID) (2057 for the United Kingdom, which should give you
    the date formatting you want):

    <% @LANGUAGE=VBSCRIPT %>
    <% Session.LCID = 2057 %>

    --
    Joe Makowiec
    http://Makowiec.NET/
    E-mail: http://makowiec.net/email.php

  • XML - a list of possible values for filtering

    Hello world

    I have a bunch of data from AMFPHP to be edited by flex. The data is a combination of data is is attached to various SQL tables. The format is similar to:

    < date = October 10, 2008 ">"
    ... < grade_number rank = "1" >
    ... < name of the subject 'English' = >
    ... < name type = 'homework' >
    ... < input id = "1" >
    ... < entry_e > create new homework < / entry_e >
    ... < date > 10/10/2008 < / date >
    ... < object > 10/10/2008 < / topic >
    ... < Adder > 1 < / Adder >
    ... < / Entry >
    ...

    I used to send these data on an object, and then use a collection of grouping and a filter function to extract relevant data when an opportunity chose the date, subject, category, type. This barely worked and given with the binding problems. I feel, the best solution is to use an EX4 object instead. To do this, however, I need the following information:
    -A list of all possible values for each grade, subject, date and type. These values would then fill controls to choose fields to filter data to allow the user to drill down to the entry they wish to change.

    I'm on the right track with this idea? How do you get a single list of all possible values, you can filter the dataset? It is d ' assign focus in the books about how to filter data with an e4x expression, but little discussion of how to get all possiblve values so that the filter (for example to fill a combo box that lists the possible values)

    In addition, when the data is returned via an e4x expression, is a copy or a pointer to the source data? IE, if I change the data returned, does it also change it in the source data?

    Thank you

    Stone

    I don't know how your application is designed, but does a good job up front in the design data exchange will save you tons of time/bandwidth later.

    In my application, there are semi-static data, driven by the table (for example, tables search db). These data do not change frequently (for example, possible to assign grades a student 'A, B, C, D, F').

    Then, the user starts the questioning of the system (for example, the list of students in a course). In the query result, the information may be changed (for example, assign a student a grade from the menu drop-down). Once all changes have been made, a 'Save' may be issued. A 'Cancel' might pull down new data (i.e., re-run the last query) and reset the visible screen to a non-altered state.

    Quote:
    So from what I understand you query the PB often enough?

    Not really. The initial list of data loading can be slow... but we did things like caching server-side to speed up a bit. This initial list of data is retrieved only ONCE per logon session.

    Queries are short and return summary of results. The entire record of the data extraction is fast enough because things are indexed on the back-end.

    Quote:
    I tried to limit the bandwidth by downloading a copy of the week and then classes allowing the user to "save changes". I'm not too worried about getting a data collision since the classes are unique to each connection.

    Looks like your application protocol design is simple. The user logs and data are extracted by user id. The user updates the data and record visits. Fact.

    In this scenario, if I'm right about your application, I would always break cela in two different HttpService calls to get a sort of simultaneous treatment. A HttpService would be responsible for downloading the data to fill in the boxes on the menu drop down. The other to download the classes for that day there.

    In fact, this raises the question; the user can update the other than just the current day? If so, looks like you will need to allow the user to choose a day, extract the data for this date, allow updates/save, then choose another day to update.

    In this scenario, the separation of the HttpServices is paying off, since the query to extract semi-static data to fill drop-down list boxes is done only once when the user connects to the departure.

    Again, I'm not sure the design of your application, so I talk only through different scenarios.

    Quote:
    Therefore, there is no way to obtain the unique values of the dataset object directly?

    I'm not sure that understand this issue. You would get the values to fill your combo boxes through a HttpService (for semi-static data). It can then return something like:


    ....
    ........ English Spanish Spanglish
    ....

    ....
    ........
    ....

    Then you might have something like:

    I hope this helps.

  • kindly tell how to use the unique value of a table with the index 0

    kindly tell how to use the unique value of a table with the index 0

    Hi
     
    Yep, use Index Array as Gerd says. Also, using the context help ( + h) and looking through the array palette will help you get an understanding of what each VI does.
     
    This is fundamental LabVIEW stuff, perhaps you'd be better spending some time going through the basics.
     
    -CC
  • creating a dynamic list within a static list

    Hello

    I use 5 APEX with universal theme and so I have the static navigation on the left side menu.

    I have the following in the list:

    Orders

    Admin

    View profile

    It is a static so each link to a page of the list.

    However I want to have it so that when I click on the controls bind it then displays a dynamic list of the commands in the menu, then it should look like this,

    Orders

    Order 1

    Order 2

    Order 3

    Admin

    View profile

    So I have a dynamic list that creates the list commands. How can I "attach" it in the static so that the parent is the link of orders in the static list?

    Thanks for your help.

    Jeremy

    Jezzer says:

    I use 5 APEX with universal theme and so I have the static navigation on the left side menu.

    I have the following in the list:

    Orders

    Admin

    View profile

    It is a static so each link to a page of the list.

    However I want to have it so that when I click on the controls bind it then displays a dynamic list of the commands in the menu, then it should look like this,

    Orders

    Order 1

    Order 2

    Order 3

    Admin

    View profile

    So I have a dynamic list that creates the list commands. How can I "attach" it in the static so that the parent is the link of orders in the static list?

    If none of the entries in the list are dynamic, then the entire list must be dynamic. See using lists/Navigation Menu to universal theme APEX5 for a similar scenario.

  • insertion of unique values as well as the value of the sequence

    Hello gurus,

    I need to copy values from table A to table B as well as the value of the sequence.

    Please find the scripts below.

    -Table A and insert

    create a (varchar2 (40) of ename, space job_id varchar2 (40));

    insert into a values ('Suri', 'THIS');

    insert into a values ('Suri', 'THIS');

    insert into a values ('ABC', 'Admin');

    -Creation of table B

    create table B (number empno, ename varchar2 (40), job_id varchar2 (40));

    -sequence to fill data in table B empno

    create sequences b_empno_seq.

    Requirement is that we need fill out the unique values in table A in table B as well as the sequence (for the empno column) value

    Please find below the insert and update statements I tried below.

    Please let me know if we have a better approach

    INSERT INTO B (ename, job_id)

    SELECT DISTINCT ename, job_id

    A.;

    UPDATE b b1

    SET empno = b_empno_seq. NEXTVAL

    WHERE ename in (SELECT ename b B2 WHERE b2.ename = b1.ename);

    -Suri ;-)

    INSERT INTO B

    () AS T

    SELECT DISTINCT ename,

    job_id

    A

    )

    SELECT b_empno_seq.nextval,

    Ename,

    job_id

    T

    /

    SY.

  • Maybe you are looking for

    • iPhoto no longer works

      iPhoto worked 2 weeks ago and now when I go to open it it crashes immediately.  Sometimes he tells me to repair the database, but as soon as it starts, it crashes again.  I am running OSX 10.8.5 my husband took my laptop to the Genius Bar, who preten

    • Equium A60-692: how to increase performance?

      My laptop is slow loading upward, with Internet taking 5-6mins, it has never been very fast when I bought a year ago. Is there something that can be done to speed things up.thanks

    • path of excel file

      Hello world I am writing and reading data to an Excel (see code) file and it works but I need to specify the path of the script, and if I want to change the file I need to change the path of the code. I would like to create a window that appears and

    • How can I make the XNET references between steps

      Hello Maybe it's more a question of Labview to an a Teststand. I need help passing a reference XNET to a VI Teststand. The VI uses the XNET CAN "Create Session" VI, which, in turn, accepts an entry called "Framework" or "Database". I have no problem

    • Pandora freezes with Windows 7.

      How can I prevent Pandora from freezing?  Is it some sort of link I'm missing?