Jump to content

g_sures

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by g_sures

  1. Hi All,

    I used Ramp by Samples VI in 8.6. I Found that the VI is updated in 2010 as polymorphic with Ramp by Pattern(Samples/Delta). When I upgraded the vi to 2010, it shows that the VI is deprecated. I deleted the vi and Replaced the vi from C:\Program Files\National Instruments\LabVIEW 2010\vi.lib\Analysis\1siggen.llb\Ramp Pattern.vi. But the VI is still Deprecated.

    Can anyone provide me a solution for this so that the VI is not deprecated.

    Eg VI Attached.

    Thanks,

    Suresh

  2. Hi all,

    I have VI Analyzer Plugins that are in not added to the LabVIEW Default Directory. Is it Possible to use those Plugins in VI analyzer without Copying the llb's to the Default Data Directory?

    Thanks & Regards,

    Suresh Kumar.G

  3. Hi All,

    When I edit the Limits of a numeric Limit Step Programatically, the value got Updated in Step Variables.

    But in Limit Tab, it is not getting Updated at that time. When I click other step and Come Back to the Same, it is getting updated.

    Can you suggest me a solution to Overcome this(i.e to update whenever the value is modified using Property)?

    Thanks in Advance,

    Suresh Kumar.G

    How do I Force TestStand to Update the Values Displayed in the Sequence Editor for a Step?

    Primary Software:

    Primary Software Version: 2.0.1

    Primary Software Fixed Version: N/A

    Secondary Software: N/A

    invis.gif

    Problem:

    I have written a custom step type for my test and can configure limits and operations using the edit dialog box. These values are also part of my step's description string. I notice that after making my changes with the dialog box, the step doesn't update its description string to reflect the new values until after I view the properties. My new values are there, but how do I make the window update to display them?

    Solution:

    Whenever you make editing changes to a sequence file programmatically, you need to increment the sequence file change count by calling the SequenceFile.IncChangeCount()method. This method indicates to the sequence editor or operator interface that changes have been made; thus, the Sequence File window should refresh reflecting the new values.

    To increment the change count from within TestStand, you can have a step using the ActiveX Automation Adapter configured as follows:

    • ActiveX Reference: RunState.SequenceFile
    • Object Class: SequenceFile
    • Method: IncChangeCount

    When inside LabWindows/CVI or another programming environment, first retrieve a handle to your current sequence file, and then call the same API method. For example the last three lines of code at the end of your custom Edit dialog box could be the following:

    //Use the TestStand SequenceContext reference to obtain the current sequence file object

    TS_SeqContextGetProperty (seqContext, NULL, TS_SeqContextSequenceFile, CAVT_OBJHANDLE, &myseqfile);

    //Increment the Sequence File change count

    TS_SeqFileIncChangeCount (myseqfile, NULL);

    //Release the ActiveX reference to the sequence file object

    CA_DiscardObjHandle (myseqfile);

    Thanks,

    Suresh Kumar.G

  4. Hi All,

    When I edit the Limits of a numeric Limit Step Programatically, the value got Updated in Step Variables.

    But in Limit Tab, it is not getting Updated at that time. When I click other step and Come Back to the Same, it is getting updated.

    Can you suggest me a solution to Overcome this(i.e to update whenever the value is modified using Property)?

    Thanks in Advance,

    Suresh Kumar.G

  5. I assume you are talking about a *.rsl file that you save after running a VI Analyzser test in LabVIEW 2010.

    I have not actually tried this but as the 2010 VI Analyzser has new extra tests in it that the 8.6 Analyzser will know nothing about I would not expect it to be backwards compatable.

    What are you actually aiming to do here, it will be easier to offer help / suggestions

    Hi,

    I already have the code in 8.6 and like to maintain in the same. I need to fix the issues from the rsl file got from VI Analyzer 2010. No need for 8.6-2010-8.6 conversion.

    Is it possible if we use same tests in both 2010 and 8.6?

    Thanks,

    Suresh

  6. Hi all,

    Is it possible to use result file from VI Analyzer 2010 in VI Analyzer for LabVIEW 8.6?

    I tried but the failure node was not opened respective to the occurrence selection. it throws error message when clicked. But works fine with 2010.

    Is there any format to use in 8.6 or any conversion methods?

    Suggestions welcome.

    Thanks,

    Suresh Kumar.G

  7. Hi all,

    Where can I find the internet tool kit for LabVIEW 8.6(Internet toolkit 6.0.2)? I searched in NI site. But I cannot able to find it? Could you please help me for finding this?

    I have 2010 toolkit. But no 6.0.2 for 8.6 version of LabVIEW

    Thanks in advance,

    Suresh Kumar.G

  8. Hi all,

    I am using LV 8.6. I have some VI's in 8.2 and also in previous versions.

    When I open the reference of those VI's in 8.6 and close, it pop up for Save. Is there any possibility to handle it during Run time?

    I want to do it during Run time..

    Thanks in advance,.

    Suresh Kumar

  9. Try this. It copies a control's picture into the clipboard. Then you can paste from the clipboard into Excel.

    Let me know if you are missing some VIs. I think some of the subVIs use OpenG VIs, so I hope you have that installed.

    Is it possible to send the graph from LabVIEW 8.6 to Excel directly?

    Thanjks,

    Suresh

  10. This seems like overkill. What you are trying to do while not impossible is not how the Excel Active X interface was meant to be used. Rather than trying to find out how this would have to be worked out and then maybe the more complicated thing to try to explain it I would rather suggest to send the data to Excel instead and then start a macro in the Excel Spreadsheet that takes those data and creates an Excel Graph from it. While this may sound work intense I'm sure trying to get a LabVIEW graph properly into Excel as bitmap will be at least as hard and that would assume you know how to build a device independant bitmap in memory and transfer its handle across process bounderies.

    Rolf Kalbermatter

    Where can I get the VI for copying Bmp or Jpeg from Labview to Excel?

    Help me out Please.

    Thanks,

    Suresh

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.