How to highlight a specific element of an array

I'm having some trouble selecting which element in an array has key focus. I want to be able to selectively highlight individual elements in an array of strings and set the key focus so that the user can immediately enter the text into that specific element.
I have been able to get "selection.start" and "selection.end" to work, but when I get a reference to "array element" it always returns a reference to the last element manually clicked. This way, I can only programatically highlight different elements by manually clicking on them, which somewhat defeats the purpose.
Does anyone know if this is possible, or if I need to move to tables or something else in order to give me this functionality?
I'm using LV 6.1
on W2k.
Thanks
Shane.
Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

I had the problem that I would like to highlight more than one cell in a 2d array.
multicolumn listbox is very slow working with large data volumes so I had to use a 2d array instead, but then I lose the possibility to highlight.
The solution I used was to bundle a LAD and control an put this in the array, takes a bit more coding but works fine. 
Attachments:
2d array with marker.vi ‏23 KB

Similar Messages

  • Can I Bind a Front Panel LED to a specific element in an array of booleans?

    In LabVIEW 2010 I have a string of LEDs. I have and array of boolean values that contain the values that the LEDs should indicate.
    What is the best way to connect the LEDs to elements in the array of booleans?
    Can I Bind a Front Panel LED to a specific element in an array of booleans?
    How is this done?
    Can anyone show sample code?
    Solved!
    Go to Solution.

    Imagine that you have an I/O card that provides 128, 256 or 1024 digital inputs and the requirement is to have an LED on the front panel to represent the state of each digital input. This frequently occurs.
    Wiring that many digital inputs individually is a royal pain and then some !
    It would make sense to have one shared variable as an array of Booleans that represents the status of all inputs and then use data binding instead of wiring each individually. The individually wiring would violate all recommendations on diagram size and fan out.
    Frequently scanned For loops to update all of the LEDS would take alot of CPU time.
    Wouldn't it be MUCH better if PSP could be used to update the LEDs whenever the data changed (as it is supposed to do) ?
    In my case I have a LabVIEW Yaskawa servo driver that provides me information about 16 servo drives that may be connected. I have LEDs on the front panel to represent some of that status for each individual drive. But Yaskawa provides the information on the drives as an array of clusters of information for each drive, which I perform some business logic on and turn into shared array of Booleans to feed the LEDs (and some banks of switches as well).
    Unfortunately LabVIEW does not seem to have any way to bind the LEDs (and Switches) to individual elements in the shared array of Booleans. It is just not that smart. Even with only several banks of 16 LEDs and Switches, wiring them individually using Decimate Array of Index Array functions is a royal pain and makes the block diagrams very large. It would be much worse and almost unreasonable to do if the size of the information was much larger.

  • How to goTo a specific element in the sap.m.list

    Hi everyone,
    I have a long list of elements in the sap.m.list.
    I wish to allow the users to get to a specific element of the list without the users having to scroll the long list.
    Is that an api to allow the list to automatically "scroll to" a specific element?
    Regards,
    Chris

    Hi Chris,
    may be you can provide SearchField to go to specific element. have a look at JS Bin - Collaborative JavaScript Debugging</title> <link rel="icon" href="http://static.jsbin.… I have not implemented search function but this will give you an idea what I am trying to convey.
    Regards,
    Chandra

  • How to pass a single element in an array to XSL from BPEL

    In a bpel (2.0) process I have a for-each loop iterating through a list in the original input document.  Within that loop I need to construct an  input document  for a call to a web service based on data in the current node of the list objects I am looping through.
    Constructing the input document via BPEL assign activity copies within the for-each loop is an option but due to the complexity of that document I would prefer to use XSL.  But I don't know how to pass the index information (ie. the for-each counter) into XSL and use it there (and I would prefer not to have to do so, since that will prevent use of the XSL GUI in jdev), so I would prefer to send  the current node of the list as input to XSL instead.
    Is it possible to pass a sub-section of an XML document (e.g. one node in the array) as input into XSL rather than the whole document?  In other words, I would like to send the current array element from the original input document rather than the entire original input document because I will be using the data within that array element to create the web service input document.
    Example:
    <forEach parallel="no" counterName="i"
                         name="ForEachEntry">
                  <startCounterValue>1</startCounterValue>
                  <finalCounterValue>$numTimeEntries</finalCounterValue>
    If I used the BPEL assign activity to populate the input document I would need lots of copies similar to this:
                  <copy>
                      <from>$inputVariable.OteStgTimecardCollection/ns3:OteStgTimecard[1]/ns3:oteStgTimecardDetailCollection/ns3:OteStgTimecardDetail[$i]/ns3:origtransactionreference</from>
                      <to>$InvokeOteDetailAbsenceErrorStatusService_OteAbsenceDetailFailureService_InputVariable.OteAbsenceDetailFailureServiceInput_msg/ns19:OrigTransactionReference</to>
                  </copy>
    I would prefer to send the current list object as an input variable into an XSL transform: 
         $inputVariable.OteStgTimecardCollection/ns3:OteStgTimecard[1]/ns3:oteStgTimecardDetailCollection/ns3:OteStgTimecardDetail[$i]
    Is there syntax in bpel that would do that?
    Thanks

    You need use While Element and use Array like Element[number]
    With While element you iterate <employee> node
    and with Element[number] you can extract information from that node.
    I wrote a BPEL that scan a XML file, the input is:
    <cliente>
            <codigo>01</codigo>
            <nombre>Deiby Mauricio Gomez</nombre>
                    <productos>
                            <producto>
                                    <nombre>Camisa Polo</nombre>
                                    <precio>50</precio>
                            </producto>
                            <producto>
                                    <nombre>Pantalon Lona</nombre>
                                    <precio>100</precio>
                            </producto>
                    </productos>
            </cliente>
            <cliente>
            <codigo>02</codigo>
            <nombre>Julio Cesar Ayapan</nombre>
                    <productos>
                            <producto>
                                    <nombre>Camisa Polo</nombre>
                                    <precio>50</precio>
                            </producto>
                    </productos>
            </cliente>
    In my BPEL I added up all article prices and after that I write to txt file the client and the Total.
    Example:
    Deiby Gomez, 150
    Cesar Ayapan, 50
    My while element is this (Please pay attention in bold words):
      <while name="While1"
               condition="bpws:getVariableData('variable1')&lt;=count(bpws:getVariableData('Receive1_input_files','body','/ns4:clientes/ns4:cliente'))">
          <sequence>
            <assign name="Assign1">
              <copy>
                <from expression="sum(bpws:getVariableData('Receive1_input_files','body','/ns4:clientes/ns4:cliente[number(bpws:getVariableData(&quot;variable1&quot;))]/ns4:productos/ns4:producto/ns4:precio'))"/>
                <to variable="Invoke1_process_InputVariable" part="payload"
                    query="/ns5:process/ns5:cantidad"/>
              </copy>
              <copy>
                <from variable="Receive1_input_files" part="body"
                      query='/ns4:clientes/ns4:cliente[number(bpws:getVariableData("variable1"))]/ns4:codigo'/>
                <to variable="Invoke1_process_InputVariable" part="payload"
                    query="/ns5:process/ns5:id"/>
              </copy>
            </assign>
            <invoke name="Invoke1" inputVariable="Invoke1_process_InputVariable"
                    outputVariable="Invoke1_process_OutputVariable"
                    partnerLink="ValidacionBancos2WS" portType="ns5:BPELProcess1"
                    operation="process" bpelx:invokeAsDetail="no"/>
            <switch name="Switch1">
              <case condition="bpws:getVariableData('Invoke1_process_OutputVariable','payload','/ns5:processResponse/ns5:resultado')='true'">
                <bpelx:annotation>
                  <bpelx:pattern>Si el cliente es aprobado</bpelx:pattern>
                  <bpelx:general>
                    <bpelx:property name="userLabel">Si Aprobado</bpelx:property>
                  </bpelx:general>
                </bpelx:annotation>
                <sequence>
                  <assign name="Assign4">
                    <copy>
                      <from variable="Receive1_input_files" part="body"
                            query='/ns4:clientes/ns4:cliente[number(bpws:getVariableData("variable1"))]/ns4:codigo'/>
                      <to variable="Approved_Write_input" part="body"
                          query="/ns7:clientes/ns7:cliente/ns7:id"/>
                    </copy>
                    <copy>
                      <from variable="Receive1_input_files" part="body"
                            query="/ns4:clientes/ns4:cliente[number(bpws:getVariableData(&quot;variable1&quot;))]/ns4:nombre"/>
                      <to variable="Approved_Write_input" part="body"
                          query="/ns7:clientes/ns7:cliente/ns7:nombre"/>
                    </copy>
                    <copy>
                      <from expression="sum(bpws:getVariableData('Receive1_input_files','body','/ns4:clientes/ns4:cliente[number(bpws:getVariableData(&quot;variable1&quot;))]/ns4:productos/ns4:producto/ns4:precio'))"/>
                      <to variable="Approved_Write_input" part="body"
                          query="/ns7:clientes/ns7:cliente/ns7:total"/>
                    </copy>
                  </assign>
                  <invoke name="Invoke2" inputVariable="Approved_Write_input"
                          partnerLink="fileAdapterWriteApproved"
                          portType="ns6:Write_ptt" operation="Write"
                          bpelx:invokeAsDetail="no"/>
                </sequence>
              </case>
              <otherwise>
                <sequence name="Sequence1">
                  <assign name="Assign5">
                    <copy>
                      <from variable="Receive1_input_files" part="body"
                            query='/ns4:clientes/ns4:cliente[number(bpws:getVariableData("variable1"))]/ns4:codigo'/>
                      <to variable="Rechazados_Write_input" part="body"
                          query="/ns9:clientes/ns9:cliente/ns9:id"/>
                    </copy>
                    <copy>
                      <from variable="Receive1_input_files" part="body"
                            query="/ns4:clientes/ns4:cliente[number(bpws:getVariableData(&quot;variable1&quot;))]/ns4:nombre"/>
                      <to variable="Rechazados_Write_input" part="body"
                          query="/ns9:clientes/ns9:cliente/ns9:nombre"/>
                    </copy>
                    <copy>
                      <from expression="sum(bpws:getVariableData('Receive1_input_files','body','/ns4:clientes/ns4:cliente[number(bpws:getVariableData(&quot;variable1&quot;))]/ns4:productos/ns4:producto/ns4:precio'))"/>
                      <to variable="Rechazados_Write_input" part="body"
                          query="/ns9:clientes/ns9:cliente/ns9:total"/>
                    </copy>
                  </assign>
                  <invoke name="Invoke3"
                          inputVariable="Rechazados_Write_input"
                          partnerLink="fileAdapterWriteRechazados"
                          portType="ns8:Write_ptt" operation="Write"
                          bpelx:invokeAsDetail="no"/>
                </sequence>
              </otherwise>
            </switch>
            <assign name="Assign2">
              <copy>
                <from expression="''"/>
                <to variable="Invoke1_process_InputVariable" part="payload"
                    query="/ns5:process/ns5:id"/>
              </copy>
              <copy>
                <from expression="bpws:getVariableData('variable1')+1"/>
                <to variable="variable1"/>
              </copy>
              <copy>
                <from expression="''"/>
                <to variable="Invoke1_process_InputVariable" part="payload"
                    query="/ns5:process/ns5:cantidad"/>
              </copy>
            </assign>
          </sequence>
        </while>

  • How do I determine what element in an array was right clicked on?

    I have an array set up on my front panel. When the user right clicks on an element in that array, I would like them to be able select from 3 different options. I have the shortcut menu working, but I need to know which element in the array the user right clicked on to determine what values to change. How can I get the index of the element?
    Thanks for any help!
    Solved!
    Go to Solution.

    Couldn't you get index values from the array property node?
    Also this doesn't account for if scrollbars are seen or not.  And I usually like to know if my range is valid, because again I could be clicking on a scrollbar, or label and still get the Mouse Down event.
    Here is one I posted a while ago.
    http://forums.ni.com/t5/LabVIEW/Interesting-way-to-detect-array-index-from-mouse-position/m-p/286841...
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • How can I offset all elements of an array by the same number

    I'd like to know the quickest way to add a number to all elements of an array. In other word, offset the whole array by a number.

    You just use the normal add function. Wire the array to one input and the constant to the other input. After wiring the array, do not click on the other terminal and select Create>Constant because by default it will create an array. Just select a Numeric Constant from the Numeric palette or wire it to a control.
    Attachments:
    add_constant_to_array.jpg ‏3 KB

  • How to change a specific element in array

    hi 
    i have an 1d intialized array
    i want to take the existed array and for example add +1 for the 5th element
    how can it be done?
    thanks
    Solved!
    Go to Solution.

    In a typical application you would want to repeat that operation to form a simple histogram. This is most easily achieved by keeping the array in a shift register and repeating the operation in a FOR loop until all data is processed.
    My very simple example from a few years ago can be found here. In this case we are counting the number of occurences of small integers in a 1D array. Modify as needed.
    LabVIEW Champion . Do more with less code and in less time .

  • How to highlight a specific row in a datagridview

    I am building a form with a datagridview and a button to add items to the datagrid view.  I would like to highlight (and optionally center and not select) the row of the just added item to verify for the user what has changed.  I can't seem to
    get it working:
     $dataGridView1.datasource = [System.Collections.ArrayList]@($list)
     foreach ($Row in $dataGridView1.Rows) {
           if ($Row.Name -eq $newitem.name) {
               dataGridView1.Rows[$Row.Index].DefaultCellStyle.BackColor = Yellow
           } else {
               dataGridView1.Rows[$Row.Index].DefaultCellStyle.BackColor = white;
    gives me no change.  I suspect the problem is my attempt to reference properties of the Row (e.g. $Row.name), but I don't know.
    I would really love a little assistance if anyone is willing.
    Thanks.

    Hello cascomp,
    Currently, I agree with Justin. You can change the cell background color when you add a item.
    I tried to accomplish your goal by myself, here is the result. I hope it can give you some ideas about your problem.
    If you have any suggestions or ideas, please feel free to tell me.
    Best Regards,
    Greg Gu
    Code:
    #Generated Form Function
    function GenerateForm {
    # Code Generated By: SAPIEN Technologies PrimalForms (Community Edition) v1.0.10.0
    # Generated On: 12/23/2011 9:44 AM
    #region Import the Assemblies
    [reflection.assembly]::loadwithpartialname("System.Windows.Forms") | Out-Null
    [reflection.assembly]::loadwithpartialname("System.Drawing") | Out-Null
    #endregion
    #region Generated Form Objects
    $form1 = New-Object System.Windows.Forms.Form
    $textBox1 = New-Object System.Windows.Forms.TextBox
    $button1 = New-Object System.Windows.Forms.Button
    $dataGridView1 = New-Object System.Windows.Forms.DataGridView
    $InitialFormWindowState = New-Object System.Windows.Forms.FormWindowState
    #endregion Generated Form Objects
    #Generated Event Script Blocks
    #Provide Custom Code for events specified in PrimalForms.
    $button1_OnClick=
    $newData = $textBox1.Text
    $rowIndex = $dataGridView1.Rows.Add($newData)
    $dataGridView1.Rows.Item($rowIndex - 1).DefaultCellStyle.BackColor = "White"
    $dataGridView1.Rows.Item($rowIndex).DefaultCellStyle.BackColor = "LightGreen"
    $dataGridView1.FirstDisplayedScrollingRowIndex = $rowIndex
    $handler_textBox1_TextChanged=
    #TODO: Place custom script here
    $handler_form1_Load=
    $data = "blahblahblah"
    $dataGridView1.Columns.Add("ColumnA","Column A")
    $dataGridView1.Columns.Add("ColumnB","Column B")
    $dataGridView1.ReadOnly = $true
    $dataGridView1.MultiSelect = $false
    $dataGridView1.Rows.Add($data)
    $dataGridView1.Rows.Item(0).Selected = $false
    $OnLoadForm_StateCorrection=
    {#Correct the initial state of the form to prevent the .Net maximized form issue
    $form1.WindowState = $InitialFormWindowState
    #region Generated Form Code
    $System_Drawing_Size = New-Object System.Drawing.Size
    $System_Drawing_Size.Height = 262
    $System_Drawing_Size.Width = 284
    $form1.ClientSize = $System_Drawing_Size
    $form1.DataBindings.DefaultDataSourceUpdateMode = 0
    $form1.Name = "form1"
    $form1.Text = "Primal Form"
    $form1.add_Load($handler_form1_Load)
    $textBox1.DataBindings.DefaultDataSourceUpdateMode = 0
    $System_Drawing_Point = New-Object System.Drawing.Point
    $System_Drawing_Point.X = 13
    $System_Drawing_Point.Y = 198
    $textBox1.Location = $System_Drawing_Point
    $textBox1.Name = "textBox1"
    $System_Drawing_Size = New-Object System.Drawing.Size
    $System_Drawing_Size.Height = 20
    $System_Drawing_Size.Width = 259
    $textBox1.Size = $System_Drawing_Size
    $textBox1.TabIndex = 2
    $textBox1.add_TextChanged($handler_textBox1_TextChanged)
    $form1.Controls.Add($textBox1)
    $button1.DataBindings.DefaultDataSourceUpdateMode = 0
    $System_Drawing_Point = New-Object System.Drawing.Point
    $System_Drawing_Point.X = 13
    $System_Drawing_Point.Y = 227
    $button1.Location = $System_Drawing_Point
    $button1.Name = "button1"
    $System_Drawing_Size = New-Object System.Drawing.Size
    $System_Drawing_Size.Height = 23
    $System_Drawing_Size.Width = 259
    $button1.Size = $System_Drawing_Size
    $button1.TabIndex = 1
    $button1.Text = "Add"
    $button1.UseVisualStyleBackColor = $True
    $button1.add_Click($button1_OnClick)
    $form1.Controls.Add($button1)
    $dataGridView1.DataBindings.DefaultDataSourceUpdateMode = 0
    $System_Drawing_Point = New-Object System.Drawing.Point
    $System_Drawing_Point.X = 12
    $System_Drawing_Point.Y = 12
    $dataGridView1.Location = $System_Drawing_Point
    $dataGridView1.Name = "dataGridView1"
    $System_Drawing_Size = New-Object System.Drawing.Size
    $System_Drawing_Size.Height = 170
    $System_Drawing_Size.Width = 260
    $dataGridView1.Size = $System_Drawing_Size
    $dataGridView1.TabIndex = 0
    $form1.Controls.Add($dataGridView1)
    #endregion Generated Form Code
    #Save the initial state of the form
    $InitialFormWindowState = $form1.WindowState
    #Init the OnLoad event to correct the initial state of the form
    $form1.add_Load($OnLoadForm_StateCorrection)
    #Show the Form
    $form1.ShowDialog()| Out-Null
    } #End Function
    #Call the Function
    GenerateForm
    Test result:
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to disable the specific elements in the enumerator by other enumerator functions

    Hi,
    I have three enumerator functions.
    If I select the 1st enumerator first element then 2nd enumerator function top two elements should disable.
    If I select the 1st enumerator second element then 2nd enumerator function 3rd and 4th elements should disable.
    If I select the 1st enumerator third element then 3rd enumerator function top two elements should disable.
    thanks.
    with regards and warm welcome,
    Ramamoorthy S

    Hi
    i attached a sample vi that shows the concept. you can develop it into the actual logic that you want, with Enum 1, 2 and 3.
    post your code if need more help.
    Attachments:
    enum elements disable.vi ‏11 KB

  • How to search for specific match from an array?

    Hi Mike,
    Thanks for the reply.
    I am reading a position of switches whether ON/OFF. It is nothing but the digital inputs status from the field. I am Indexing that array, and connect it to the LED indicators to show the relevant status. Also I want to raise an alarm  once, for the ON switches.  By using Search 1D array, I got the first TRUE match index from the array. But if I want to know all the occurrences of ON condition (TRUE from an array of booleans) from an array of switches. How to do that?
    Hope this clarifies.
    Thanks
    Kousy

    I almost missed this message because you started a new thread.
    In any case, the code altenbach posted will give you an array of the indexes that are set to true. So it sounds like that is at least part of what you want. The alarm you mention, is that one "master" alarm if any of them are true, or is it a separate alarm for each bit?
    If it is one "master" alarm for all of them the logic menu has a function for ORing all the elements in a boolean array. Also when you say "alarm" what is the nature of this alarm? A dialog box? a flashing light (real or on the applications's front panel)? message in a status display?
    The attached code shows one possible direction by adding onto altenbachs code the ability to accumulate a single error message based on the states of individual bits. (BTW: The other alternative that you might see would be to pass the array into a loop and use a case to append a message of the bit is true. The advantage of the one in the combined VI is that the loop only iterates for the number of true bits +1. Where as the other approach would have to look at all the bits one at a time.)
    In a sense this is why I asked for clarification because there are a lot of things you can do when parsing an array like this.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    TRUEadditions.vi ‏31 KB

  • How can I change two elements in an array from double to integer.

    I have my program working just fine until it comes to saving the file. I have a 2 dimensional array that has data at 0,0 0,1 and 0,2. It is being displayed perfectly the way I have it set up. The problem is where it comes to saving the file. I want elements 0,0 and 0,1 to be an integer and 0,3 to be a fractional number. I can only save it as one or the other. I am sending the data to a write to text file VI which only allows one or the other. Does anyone have any ideas of how to over come this? I know from probing that the data is getting to the write to text file VI in the format that I want it to.
    Thanks,
    Troy

    Sure.. (LabVIEW 7.0)
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    VariableFormat.vi ‏20 KB

  • How do I put each element of an array of 30 elements to each slot in a cluster?

    There are 30 columns in a table in an access db file.
    Currently, I have an array of 30 floating point numbers.
    I want to know how to put each of array elements in each slot in a cluster of 30 slots with DB Tools Insert Data VI.

    You can use the array to cluster primitive
    Rodéric L
    Certified LabVIEW Architect

  • How to blink a single element in an array of string

    Hi,
    I am working on array blinking option in an array of string. I wanted to blink each element of array in different instances.
    Ex: I have array as MyArray [5] = { "aaaa", "bbbb", "cccc", "dddd", "eeee"}. Question is i want to blink one by one, first 0th row, next 1st row and so on.
    Could any one please help on this.
    Many Thanks
    Hanee..

    Ian,
    i cannot tell you what's happening here. Fact is, that this is not the way to go. See attached example.
    If you run it and click into one of the string fields (mouse up event!) you will see, that "Cell" Value changes. If you look into the code, you see that i read the string form the String refnum, so it seems to handle the "Active Cell". But writing to it (Set Color) will reveal, that the whole array will change its background color. This matches my statement.
    I really fo not understand, why reading from the same string refnum yields different results ("Active Cell"???!), but regarding blinking: setting this for a single "Cell" will set it for all "Cells", but due to graphical updates (same as buttons&event structures), it is only visible in the "Active Cell". Rest asured, that the property value "blinking" is true for all "Cells" then (even thought not graphically visible).
    hope this helps,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.
    Attachments:
    ArrayReference.vi ‏14 KB

  • How can I order the elements in an array from the smallest element to the biggest?

    For example: I want to convert a 1D array like [4,1,2,3] to a 1D array like [1,2,3,4]. How can I do that?
    Sorry for the question but I am a beginner.
    Thanks for the answers.
    Solved!
    Go to Solution.

    Go to the array palette; there is a Sort function node.
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • How can I convert four elements of an array of I8 to an I32?

    I am new to LabView I am trying to index through an array of bytes and pull out either 2 or 4 bytes and store the values in either words or longs. Is there any easy way to do this?
    Thanks
    David

    Hi,
    there is function Advansed\Data Manipulation\Join numbers.
    It get 2 numbers of 8\16 bits and join them to one 16\32 bits number.
    In your case you need to take 2 MSB 8-bits numbers and join to 16-bits number. Same thing do for 2 LSB numbers.
    After this join to 16-bits numbers to one 32-bits.
    I hope that help you.

Maybe you are looking for

  • Removing access to "PC Settings" Modern UI app (but allow Control Panel access)

    Hi all, I have just deployed Windows 8.1 Pro to a  number of machines and am having an issue with the "PC Settings" Modern UI app - this allows users to modify local users (i.e. create new local users, modify existing local users) and play with setti

  • Problem with get pernr

    in my requirement i take the perner from one program  to ldb program and i want the ldb to run for my pernr value from other program...its working  in dubbing  mode .. now the prob is i m not able to come out of the loop between get pernr and end of

  • Corrupt dmg upgrading Lion 10.7.4

    I have two notebooks with same problem: everytime I run OS X upgrade dmg is corrupted in Both an 2009 MBP and a 2011 MBA 11". Somwhere I have read about MTU size but I have tried that with no result.

  • Gallery showing all images

    I am having a problem where the Gallery application on my new N73 is showing _all_ the images on my phone, regardless of their name or format. For example I have 5 images belonging to an application installed on the memory card that are named either

  • No FaceTime nor iMessage.

    Neither FaceTime nor iMessage works on my iPad. Keeps saying something like "cannot connect to network. Check your connection and try again." Both apps work from my iPod Touch on the same network. I've tried disabling all Time Capsule security, and R