How can I get a value on a XY Chart

Hey there,

I'm pretty new to LabView and I hope you can help out me.

I had 2 bays both of them got 3 values and I managed to put them in a XY Chart.

Here's my problem, I want a value y for the correspondent x.

Is it possible to get to these chart data?

Thanks in advance for your efforts.

Unless your DAQ data are quantified three possible X values, you need to interpolate. You already have a linear adjustment, so all you have to do is feed the new value "assessment" linear x and get the value of y corresponding. Of course, you could also just use e.g. a quadratic polynomial. (For higher orders, you need more points).

Tags: NI Software

Similar Questions

  • ICF custom connector; How can I get the values of the parameters of the recon calendar task?

    I'm trying to create a custom connector icf with progressive reconciliation. My recon schedule a task, I have the settings "attribute of Date additional Recon ' and 'last token" that should be used for gradual reconciliation.

    How can I get the values of the parameters ' attribute of Date additional Recon ' and 'last token "?

    ICF should handle this for you.

    The value of "attribute of Date additional Recon ' must be filled in the OperationOption (e.g. executeQuery() and PROCESSES of FilterTranslator has this as a method parameter).

    For the "last counter", you need to implement ' createGreaterThanExpression (GreaterThanFilter, filter, is not Boolean) ' in your filter translator class. You can get the attribute of the filter object. Look for a description here: http://docs.oracle.com/cd/E37472_01/apirefs.1112/e28159/oracle/iam/connectors/icfcommon/recon/SearchReconTask.html

  • How can I get the value of the element with the namespace?

    I tried to get an element of value in xml a namespace, but I can't.
    I removed the namespace, I get a value of the element.

    How can I get a value of the element with the namespace?

    -1. Error ----------- xml ------------------------------
    <? XML version = "1.0" encoding = "UTF-8"? >

    * < TaxInvoice xmlns = "" urn: kr: or: kec:standard:Tax:ReusableAggregateBusinessInformation:1:0 "xmlns: xsi ="http://www.w3.org/2001/XMLSchema-instance"xsi: schemaLocation =" urn: kr: or: kec:standard:Tax:ReusableAggregateBusinessInformation:1:0 http://www.kec.or.kr/standard/Tax/TaxInvoiceSchemaModule_1.0.xsd "> *"
    < ExchangedDocument >
    < IssueDateTime > 20110810133213 < / IssueDateTime >
    < ReferencedDocument >
    < ID > 318701 - 0002 / < ID >
    < / ReferencedDocument >
    < / ExchangedDocument >
    < TaxInvoiceDocument >
    < IssueID > 201106294100 < / IssueID >
    < > 0101 TypeCode < / TypeCode >
    < IssueDateTime > 20110810 < / IssueDateTime >
    < PurposeCode > 02 < / PurposeCode >
    < / TaxInvoiceDocument >
    < TaxInvoiceTradeLineItem >
    < SequenceNumeric > 1 < / SequenceNumeric >
    < > 200000000 InvoiceAmount < / InvoiceAmount >
    < TotalTax >
    < CalculatedAmount > 20000000 < / CalculatedAmount >
    < / TotalTax >
    < / TaxInvoiceTradeLineItem >
    < / TaxInvoice >


    -2. success - xml - remove namespace.
    <? XML version = "1.0" encoding = "UTF-8"? >
    < TaxInvoice >
    < ExchangedDocument >
    < IssueDateTime > 20110810133213 < / IssueDateTime >
    < ReferencedDocument >
    < ID > 318701 - 0002 / < ID >
    < / ReferencedDocument >
    < / ExchangedDocument >
    < TaxInvoiceDocument >
    < IssueID > 201106294100 < / IssueID >
    < > 0101 TypeCode < / TypeCode >
    < IssueDateTime > 20110810 < / IssueDateTime >
    < PurposeCode > 02 < / PurposeCode >
    < / TaxInvoiceDocument >
    < TaxInvoiceTradeLineItem >
    < SequenceNumeric > 1 < / SequenceNumeric >
    < > 200000000 InvoiceAmount < / InvoiceAmount >
    < TotalTax >
    < CalculatedAmount > 20000000 < / CalculatedAmount >
    < / TotalTax >
    < / TaxInvoiceTradeLineItem >
    < / TaxInvoice >




    -program-
    procedure insert_table
    (
    l_clob clob,
    OK, Boolean.
    Error out varchar2
    )
    is
    l_parser dbms_xmlparser. Analyzer;
    xmlDoc xmldom.domdocument;

    l_doc dbms_xmldom. DOMDocument;
    l_nl dbms_xmldom. DOMNodeList;
    l_n dbms_xmldom. DOMNode;
    l_root DBMS_XMLDOM.domelement;
    l_node DBMS_XMLDOM.domnode;
    l_node2 DBMS_XMLDOM.domnode;
    l_text DBMS_XMLDOM. DOMTEXT;

    buf VARCHAR2 (30000);

    XMLParseError exception;

    TYPE tab_type is Table of xml_upload % ROWTYPE;
    t_tab tab_type: = tab_type();
    pragma exception_init (xmlparseerror,-20100);
    l_node_name varchar2 (300);

    Start
    l_parser: = dbms_xmlparser.newParser;
    l_doc: = DBMS_XMLDOM.newdomdocument;
    dbms_xmlparser.parseClob (l_parser, l_clob);
    l_doc: = dbms_xmlparser.getDocument (l_parser);
    l_n: = dbms_xmldom.makeNode (l_doc);

    l_nl: = dbms_xslprocessor.selectNodes (l_n, ' / TaxInvoice/TaxInvoiceDocument ');

    FOR cur_tax in 0.dbms_xmldom.getLength (l_nl) - 1 LOOP
    l_n: = dbms_xmldom.item (l_nl, cur_tax);

    t_tab.extend;

    t_tab (t_tab.last) .ed_id: = '5000000';

    dbms_xslprocessor.valueOf (l_n, ' IssueID / text () ', t_tab (t_tab.last) .tid_issue_id);
    dbms_xslprocessor.valueOf (l_n, ' TypeCode / text () ', t_tab (t_tab.last) .tid_type_code);

    END LOOP;

    FORALL i IN t_tab.first... t_tab. Last
    INSERT INTO xml_upload VALUES t_tab (i);

    COMMIT;

    dbms_xmldom.freeDocument (l_doc);
    correct: = true;

    exception
    When xmlparseerror then
    -xmlparser.freeparser (l_parser);
    correct: = false;
    error: = sqlerrm;

    end insert_table;
    l_nl := dbms_xslprocessor.selectNodes(l_n, '/TaxInvoice/TaxInvoiceDocument');
    

    try to change as follows

    l_nl := dbms_xslprocessor.selectnodes(l_n,'/TaxInvoice/TaxInvoiceDocument','xmlns="urn:kr:or:kec:standard:Tax:ReusableAggregateBusinessInformation:1:0"');
    

    Published by: Alexandr on August 17, 2011 12:36 AM

  • How can I get a value from a function from pl/sql by OADBTransaction

    Hi all
    Hope you will be fine.
    as we know, we can get a sequence by this code value:
    Super.Create (AttributeList);
    Transaction OADBTransaction = getOADBTransaction();

    Vendor ID is obtained from the table sequence
    Number supplierId = transaction.getSequenceValue ("FWK_TBX_SUPPLIERS_S");

    My question is how can I get a value in a variable to a pl/sql function:
    the function is defined as follows:
    ******
    create or replace function getNextTrans return varchar2
    is
    Team varchar2 (20);
    Start
    SELECT "CASH". TO_CHAR (SYSDATE, 'DDMMYYYY') | GP_CASH_TRX_SEQ. NEXTVAL FROM DUAL;
    return team;
    end;
    /

    Hey Dina,

    Reference http://www.oraclearea51.com/oracle-technical-articles/oa-framework/229-calling-database-procedures-and-function-from-oaf.html

    Kind regards
    GYAN

  • How can I get the value of the element checked a box to tick LOV?

    Hi all

    I need to insert rows into a table when a checkbox element is checked.
    The checkbox element is a LOV in a form.
    -----------------------
    Select the DESCRIPCIÓN display_value, ID_DOCUMENTO return_value
    of DOCUMENT
    order by 1
    ------------------------------

    Source
    ------------------------------
    DECLARE
    CURSOR C_REG_DOC IS SELECT ID_DOCUMENTO FROM REGISTRO_DOCUMENTO WHERE ID_REGISTRO =: P6_ID_REGISTRO;
    v_id_documento documento.id_documento%TYPE;
    v_results VARCHAR2 (50);
    Boolean v_first_loop: = true;
    BEGIN
    for this loop C_REG_DOC
    If v_first_loop then
    v_results: = it.ID_DOCUMENTO;
    v_first_loop: = false;
    on the other
    v_results: = v_results |': ' | it.ID_DOCUMENTO;
    end if;
    end loop;
    Return v_results;
    END;
    --------------------------

    I need to create a process to insert rows in a relational table, but I do not know how...
    ------------------
    FOR *? *
    LOOP
    INSERT INTO registro_documento (id_reg_documento, id_registro, id_documento)
    VALUES(null,:P4_ID_REGISTRO,???);
    END LOOP;
    ---------------

    How can I get the value of the active element (id_documento) to insert it?

    Thank you!

    Alex

    Hello:

    You can use the apex_util.string_to_table function to retrieve the values of the LOV as shown in the example

    declare
    arr wwv_flow_global.vc_arr2;
    begin
    arr:= apex_util.string_to_table(:P_CHECKBOX_LOV_ITEM)
    for x in arr.first..arr.last loop
    // insert statement
    iNSERT INTO registro_documento( arr(i) ,.........id_reg_documento,id_registro,id_documento)
    end loop;
    end;
    

    CITY

  • Hi, I have a PDF form that has multiple check boxes. Some boxes have values (off, yes) that others have just (Yes). How can I get the value of "Off" to all of the other boxes as well. Any help is greatly appreciated.

    Hi, I have a PDF form that has multiple check boxes. Some boxes have values (off, yes) that others have just (Yes). How can I get the 'Off' the value assigned to all the other boxes as well. Any help is greatly appreciated.

    'Off' is the default value of any box when it is not checked. It can not

    be changed.

  • How can I get min value?

    Hi all, as follows, Array, how can I get the min value? It seems that Math.min () can only count two.
    I'll appreciate to meet you.

    var myNum:Array = new Array();
    myNum [0] = 0;
    myNum [1] = 1;
    myNum [2] = 2;
    myNum [3] = 3;
    myNum [5] = 20
    myNum [6] = 10
    ...
    myNum [n] = num

    Sorry - in my first answer, html was not kind to my code... here it's all nice and tidy.

  • How can I get the value of the attribute LogFileSize of C application

    Hi all!
    Now I have implemented monitoring of enforcement. I want to calculate the diff between the replication LSN and current LSN. For this calculation, I need to know LogFileSize attribute of sys.odbc.ini. How can I get a real value inside the C application? Now I analyze output form of connection string SQLDriverConnect, but this not very good method.

    Discover the "ttConfiguration", built in the procedure described in the reference Guide TimesTen. This should give you what you want.

    Chris

  • How can I get color values premultiplied by one pixel?

    When you use BitmapData.getpixel32 (), find multiplied RGB color so if red, green or blue have been 0, you will get a value of 0 or if you have two colors with competing values for red and green, you will get the same value, there is a lot of information loss and I need to some how get it all.

    Can you think of something?

    Hello

    as I undestand the solution is written in docs:

    var bmd:BitmapData = new BitmapData(80, 40, true, 0xFF44AACC);
    
    var pixelValue:uint = bmd.getPixel32(0, 0);
    var alphaValue:uint = pixelValue >> 24 & 0xFF;
    var red:uint = pixelValue >> 16 & 0xFF;
    var green:uint = pixelValue >> 8 & 0xFF;
    var blue:uint = pixelValue & 0xFF;
    
  • How can I get my values digital XML appears when loading in flash?

    Hello

    I created an AS2 3D carousel, it loads the text values in the section "content" of the code below - including numbers and special characters in the .swf but...

    What I can't understand, is how get so that the 'Tooltip' loads the text into the movieclip, but may also have digital and special characters in it.

    For example, I need the title of one of the icons on this carousel to be "3D Images", but that the Images "D" appears in the XML text for the ToolTip.  The content when the user clicks on the icon can include numbers, just not the titles for some reason any.

    http://iongeo.com/collaboration_test_dev/video_arctic_imaging.html

    I think it has something to do with the way that my text is loaded from the XML specifically for the ToolTip and tipText for the clip.  Numeric values can be loaded into a clip in AS2?  Help, please!

    Import mx.utils.Delegate;
    Import mx.transitions.Tween;
    Import mx.transitions.easing. *;

    var numOfItems:Number;
    var radiusX:Number = 300;
    rayonY var: number = 75;
    var centerX:Number = Stage.width / 2;
    var centerY: Number = Stage.height / 2;
    var speed: Number = 0.05;
    perspective of the var: number = 130;
    var host: MovieClip = this;
    theText._alpha = 0;
    theHeader._alpha = 0;

    var tooltip:MovieClip = this.attachMovie("tooltip","tooltip",10000);
    ToolTip._alpha = 0;

    var xml = new XML();
    xml.ignoreWhite = true;

    xml.onLoad = function()
    {
    var nodes = this.firstChild.childNodes;
    numOfItems = nodes.length;
    for (var i = 0; i < numOfItems; i ++)
    {
    var t is home.attachMovie("item","item"+i,i+1);.
    t.angle = i * ((Math.PI*2) /numOfItems);
    t.onEnterFrame = mover;
    t.toolText = nodes [i].attributes.tooltip;
    t.Content = nodes [i].attributes.content;
    t.Header = nodes [i].attributes.header;
    t.icon.inner.loadMovie (nodes [i].attributes.image);
    t.r.inner.loadMovie (nodes [i].attributes.image);
    t.icon.onRollOver = more;
    t.icon.onRollOut =;
    t.icon.onRelease = freed;
    }
    }

    function over()
    {
    BONUS section
    home.tooltip.tipText.text = this._parent.toolText;
    Home.ToolTip._x is this ._parent ._x;.
    Home.ToolTip._y = this ._parent ._y - this._parent._height/2;
    home.tooltip.onEnterFrame = Delegate.create (this, moveTip);
    Home.ToolTip._alpha = 100;
    }

    function out()
    {
    delete home.tooltip.onEnterFrame;
    Home.ToolTip._alpha = 0;
    }

    function released()
    {
    BONUS section
    Home.ToolTip._alpha = 100;
    for (var i = 0; i < numOfItems; i ++)
    {
    var t:MovieClip = host ["item" + i];
    t.xPos = t._x;
    t.yPos = t._y;
    t.theScale = t._xscale;
    delete t.icon.onRollOver;
    delete t.icon.onRollOut;
    delete t.icon.onRelease;
    delete t.onEnterFrame;
    If (t! = this ._parent)
    {
    var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,t._xscale,0,1,true);
    var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,t._yscale,0,1,true);
    var tw3:Tween = new Tween(t,"_alpha",Strong.easeOut,100,0,1,true);
    }
    on the other
    {
    var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,t._xscale,100,1,true);
    var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,t._yscale,100,1,true);
    var tw3:Tween = new Tween(t,"_x",Strong.easeOut,t._x,150,1,true);
    var tw4:Tween = new Tween(t,"_y",Strong.easeOut,t._y,250,1,true);
    var tw5:Tween = new Tween(theText,"_alpha",Strong.easeOut,0,100,1,true);
    var tw5:Tween = new Tween(theHeader,"_alpha",Strong.easeOut,0,100,1,true);
    theText.text = t.content;
    theHeader.header = t.header;
    var s:Object =;
    tw.onMotionStopped = function()
    {
    = new s.onRelease;
    }
    }
    }
    }

    function unReleased()
    {
    BONUS section
    var penny: Sound = new Sound();
    sou.attachSound ("sdown");
    Penny. Start();

    delete this.onRelease;
    var tw:Tween = new Tween(theText,"_alpha",Strong.easeOut,100,0,0.5,true);
    var tw:Tween = new Tween(theHeader,"_alpha",Strong.easeOut,100,0,0.5,true);
    for (var i = 0; i < numOfItems; i ++)
    {
    var t:MovieClip = host ["item" + i];
    If (t! = this ._parent)
    {
    var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,0,t.theScale,1,true);
    var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,0,t.theScale,1,true);
    var tw3:Tween = new Tween(t,"_alpha",Strong.easeOut,0,100,1,true);
    }
    on the other
    {
    var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,100,t.theScale,1,true);
    var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,100,t.theScale,1,true);
    var tw3:Tween = new Tween(t,"_x",Strong.easeOut,t._x,t.xPos,1,true);
    var tw4:Tween = new Tween(t,"_y",Strong.easeOut,t._y,t.yPos,1,true);
    tw.onMotionStopped = function()
    {
    for (var i = 0; i < numOfItems; i ++)
    {
    var t:MovieClip = host ["item" + i];
    t.icon.onRollOver = Delegate.create (t.icon, over);
    t.icon.onRollOut = Delegate.create (t.icon, out);
    t.icon.onRelease = Delegate.create (t.icon, released);
    t.onEnterFrame = mover;
    }
    }
    }
    }
    }


    function moveTip()
    {
    Home.ToolTip._x is this ._parent ._x;.
    Home.ToolTip._y = this ._parent ._y - this._parent._height/2;
    }

    XML. Load ("icons.xml");

    function mover()
    {
    This ._x = Math.cos (this.angle) * radiusX + centerX;
    This ._y = Math.sin (this.angle) * rayonY + centerY;
    var s = (this ._y - perspective) / (centerY + rayonY-perspective);
    This ._xscale is this ._yscale = s * 100;.
    This.angle += this._parent.speed;
    this.swapDepths (Math.round (this._xscale) + 100);
    }

    this.onMouseMove = function()
    {
    Speed = (this ._xmouse-centerX) / 8000;
    }

    your textfield must incorporate numbers, in addition to uppercase and lowercase letters.

  • How can I get the value of a comboBox element in a grid?

    Hi all

    I have a DataGrid with some comboBoxes in two of its columns.

    What I need to do, is get these boxes of bombo values when a user highlights the line of the grid NOT when user use the comboBox control. I understand how to extract the values once the change handler is called on the drop-down list, but I don't see a way to get to the comboBoxes that belong to the gridRow highlighted.

    I'm sure it's really simple, but I'm not able to find a reference on how it's done. Any help much appreciated.

    Copy the following code shows how you can do it if you know the dataProvider for ComboBox data fields.

    If this post has answered your question or helped, please mark it as such.


    http://www.Adobe.com/2006/mxml '.
    Initialize = "initData ()" > "
      
       Import mx.events.ListEvent;
    Import mx.collections. *;
    private var DGArray:Array =]
    {Artist: 'Pavement', Album: 'Slanted and Enchanted' price: 11.99, combo1: [1,2,3], combo2: [100,200,300]},
    [{Artist: 'Pavement', Album: 'Brighten the corners', price: 11.99, combo1: [2,4,6] combo2: [200,400,600]}] ;
            
    [Bindable] public var initDG:ArrayCollection;
    public function initData (): void {}
    initDG = new ArrayCollection (DGArray);
    }
         
    private void dgChangeHandler(event:ListEvent):void {}
    var ac:ArrayCollection = event.currentTarget.dataProvider;
    txt. Text = "";
    txt. Text += ac.getItemAt (event.rowIndex) .combo1 + "\n";
    txt. Text += ac.getItemAt (event.rowIndex) .combo2;
    }
    ]]>
      


    dataProvider = "{initDG}" change = "dgChangeHandler (event); » >
         
            
            
            
            
             
              
               
                
               

              

             

            

            
             
              
               
                
               

              

             

            

         

      
      

  • parameter $ v see - how can I get these values for both instances on the db?

    I have a procedure which empty the content of all the parameters from the parameter system view v$ for the audit of needs, so that we know if a parameter has changed from month to month, but we have 2 instances running. How to make sure and save the settings for the two instances? So far the procedure saves the settings for the instance happened to run on (this is random).

    However, when I use the TOAD, I can access parameters for the two instances in the database/administer/Oracle settings.

    Thank you!

    Instead of V$ PARAMETER use GV$ PARAMETER so that you can get the id of the instance

    SQL> describe gv$parameter
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     INST_ID                                            NUMBER
     NUM                                                NUMBER
     NAME                                               VARCHAR2(80)
     TYPE                                               NUMBER
     VALUE                                              VARCHAR2(4000)
     DISPLAY_VALUE                                      VARCHAR2(4000)
     ISDEFAULT                                          VARCHAR2(9)
     ISSES_MODIFIABLE                                   VARCHAR2(5)
     ISSYS_MODIFIABLE                                   VARCHAR2(9)
     ISINSTANCE_MODIFIABLE                              VARCHAR2(5)
     ISMODIFIED                                         VARCHAR2(10)
     ISADJUSTED                                         VARCHAR2(5)
     ISDEPRECATED                                       VARCHAR2(5)
     ISBASIC                                            VARCHAR2(5)
     DESCRIPTION                                        VARCHAR2(255)
     UPDATE_COMMENT                                     VARCHAR2(255)
     HASH                                               NUMBER
    
    SQL>
    
  • How can I get the value of list of multiple selection in javascript?

    Hello

    If I want to show the list of colon delimited in an alert box JS what I'd do?
    or if not, how do you show it?

    There are several SelectedIndexes?

    Type = select-multiple

    Bill

    Bill,

    Watch more closely the example I've provided earlierly:

    http://Apex.Oracle.com/pls/OTN/f?p=31517:166

    I use this code:

    for (i = 0; i < $x (pShuttle2) .length; i ++)
    {
    If (p_array == ")
    {
    p_array is $x (pShuttle2).value;.
    }
    on the other
    {
    p_array = p_array + ":" + $x (pShuttle2) [i] .value;
    }
    }

    Get.Add ('SHUTTLE_ITEM_VALUE', p_array);

    to concatenate the values in the table in a colon delimited string by some. It is later used to define the session state of the element of the shuttle to this value.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • How can I get a value of an element to the variable?

    I have a simple page with name and address on a form text fields.

    First name: (txtLastName)

    First name: (txtFirstName)

    Address: (txtAddress1)

    etc...

    Once the user enters information, what is the syntax for this information in a form variable?  I want the variables available on the next page.

    $varLastName = ["txtLastName"];  ?

    Thank you.

    PS I am obviously a newby and am very frustrated.  I would appreciate your help!

    What I read, it seems that I should use Session variables to store data from one page to another, but I don't know how to do this.

    Google can help you here.  It's pretty simple.

    Can I publish data without that happening in a database?

    Of course - when you submit a form, it is displayed to the next page in the header, so that it is not visible by the user.

    If you want to have several forms on the page, each page can submit each page, where the data from the previous page is loaded in hidden fields.  In this way, each page shows the cumulative set of data.  Who is?

  • How can I get the string value displayed on a digital control defined for the relative time.

    I have a digital potentiometer to display relative time in increments of 30 minutes.

    I want to record the value displayed on the control string.  Unfortunately, when I use the "convert to decimal string.vi" number, the resulting string is just the value in seconds.

    How can I get the value as a string? (for example 01:30 for an hour and thirty minutes)

    Thank you

    Sean

    Hi Sean.C!

    M_Peeker's suggestion is a good thing.  A stage that could clarify things is that you must set the % t <%H:%M> format string entry.

    < br / > Kristen:.

Maybe you are looking for

  • Firefox isn't regonise it's own update

    As shown in the attached screenshot, being on any page of Mozilla, or things like google Maps always say that I am not under the most recent version. For the moment, I am, however, under version 42.0 (which shows the screenshot). When checking for up

  • Use Garage band to send the midi for keyboard signal

    Hi people Im trying to use Garage band to send a midi signal to my keyboard (a Roland FP4) - via USB - so that I can then record the audio using another machine. But I can't seem to find a way to do it.  I record midi from the keyboard of the machine

  • Officejet 4500 scanning settings

    Windows 7, Officejet 4500, HP TouchSmart I'm confused on the scanning settings that show in the window menu / machine.  I tried to change by using the software and then get questioned about the naming and registration of shortcuts.  Where will I see

  • Trying to play my xbox 360 using my PC HP Touchsmart 520 as a monitor

    I try to use my HP touchsmart PC 520 as a monitor for my xbox 360. I recently bought a usb cable to hdmi but I don't know how to operate it. Anyone know how I can do this?

  • Anonymous logon suspicious in Event Viewer

    I see a couple of these safety Event Viewer logs in my computer connected to the domain: Log name: security Source: Microsoft-Windows-security-auditing Date: 08/11/2014 06:54:52 Event ID: 4624 Task category: logon Level: Information Keywords: Audit s