Jump to content

Vivek Bhojan

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by Vivek Bhojan

  1. I think you can read the Y Scales Positions, sort through them to find where they start and where they end and then set the property "Plot Area Size" and "Plot Area Position" to reduce/move it so that it doesn't overlap with the scales, I haven't tried though.

    Good luck.

    LabVIEW Ver 7.1 does not have the option of Plot Area Position.

  2. Hello Friends,

    I am using Waveform Chart with multiple Y axis scales. Currently 6 Scales are used and made visible programatically. The Default No of scale is 6.

    Now the question is, sometimes when I change the No of scales from minimum to maximum, the scales are overlapped on the plot area. Please see to the attachment.

    How to solve this issue.

    Thanks

    post-18674-0-34800800-1295517384_thumb.j

  3. with a little bit of imagination ;)

    tree.vi

    Hello Mr.Antoine Chalon. Thanks for your vi.. I am facing a little problem with the vi.

    Please see to the attached image of what exactly is required.

    Please help me in order to get the Preferred Output in the Image

    post-18674-0-87383000-1294748586_thumb.j

  4. Hello Friends,

    I want to implement a Tree Control with for loop (N=3),

    In my first iteration the tree control should be updated with Tag "Demo"

    Second Iteration: "Demo/Measurement"

    Third Iteration: "Demo/Measurement/Converter"

    Thank you

  5. In the mode of "teaching a man to fish..."

    When I was taught LV Basic I and II, I was instructed by Rich Brueggman (the first non-NI person to be certified as an CPI) taught me a lot of subtle point about LV, but the one thing that he said that would have helped you help yourself was...

    "When in dout, right-click"

    That would have helped you. BTW: It is a good idea to start right-clicking on obects after new LV releases. I have found mant gems under a right-click.

    THe other early leason came from my next G-Daddy, Jay Grasel, now a VP with NI) who told me...

    "If you don't know how an operator works, do a ctrl-c followed by a ctrl-n."

    Ctrl-n is the short-cut for new VI where I drop the opertor and start experimenting.

    Like I said, have fun!

    Ben

    That was an wonderful saying... Thanks a lot Mr. Ben. Cheers...

  6. The size of the elements in the cluster can be resized. Pop-up on the cluster n the array adn create property node .... When you resize on cluster the other will do the same.

    have fun!

    Ben

    Now I think I can proceed further.

    Thanks Ben and Shaun for your valuable suggestions

  7. Array of clusters it is then rolleyes.gif

    Array of clusters is what I am using currently with 2D Array of 4 Rows and 4 Columns fixed. This holds good for 16 Channels.

    Suppose if I want to change the no of channels to say 8, then the array should resize to 2 rows 4 Columns (This is possible).

    For example: 4 Rows x 4 Cols will be my default array size, when it is changed to 2 Rows x 4 Columns, the size of the array element should increase to accommodate to 4 Rows x 4 Cols Size.....

  8. What about 2 arrays One with the headers (channel names) and one with your data. Then you can set the fonts different for each array.

    < some time later after copious amount of caffeine >

    try this wink.gif

    But my requirement is, in a single cell, I should have two lines. Line 1 = Channel Name - Medium Font, Line 2= Data-Bigger Font

  9. ... and if you don't like the 2d array of clusters idea you could crate an cluster of 96 elements and hid all o the un-used... but then scrolling would require more work.

    Ben

    Creating 96 Clusters will make my block Diagram occupying more space..

    Is it possible to use Table instead of 2D Array or Clusters. But the difficulty I felt was the font Size. I used the Multiline Input option in Table Enabled. But I am not able to adjust the Font Size for each Line...

  10. Hello Friends,

    For one of my project I have to use a Front Panel Control which displays Channel Name and Acquired Data. The control should able to display twenty Channels details, with Channel Name in First Line with medium Font size and Data in the Second Line with Bigger Font Size Twenty channels as mentioned above is not fixed... It can be varied run time, aything from 4 Channels to 96 Channels.

    Please suggest suitable control to be used which will satisfy the requirements.

    Using LabVIEW Version 7.1

    Attaching an example image for reference

  11. The IEC61850_Associate_Req function has a callback fuction Confirmation as one of its parameters. How do I implement the callback using the Call Library Function node

    int_stdcall Confirmation(LPCTSTR Msg)

    {

    printf("\n***Confirmation (callback)***\n%s\n", Msg);

    return 0;

    }

    result= IEC61850_Associate_Req(request.c_str(), Confirmation, response, 1024);

    if(result)

    {

    return result;

    }

    In the above program, request and response is an xml based strings.

    I am stuck in this logic for past one week.

×
×
  • Create New...

Important Information

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