Dynamic display and interaction with UI components...Need help!!

hi
I want to create forms which asks users to enter data in some fields/GUI components. If i call these field one "group" then i have to display this group of components as many times as may be required (based on some other calculation). How can i do this.. and even if i do this how would i write the code for interaction.. Can i do this??
plz reply
thanks

hi
I want to create forms which asks users to enter data in some fields/GUI components. If i call these field one "group" then i have to display this group of components as many times as may be required (based on some other calculation). How can i do this.. and even if i do this how would i write the code for interaction.. Can i do this??
plz reply
thanks

Similar Messages

  • Display and interact with a vi front panel on remote C++ app

    Hello:
    I am new to LV and need a little advice.  I need to display a LabVIEW VI front panel in my C++ .Net application that users can interact with to view real-time spectrum data.  The C++ app (client) must reside on a separate computer(s) from the VI so that the client can connect from anywhere around the world and interact with the VI. 
    I am not sure about the basic architecture that should accompany a good solution.  We want to use TCP/IP but not DataSocket.  I do not have access to Measurement Studio but I do have access to LabVIEW Professional Development System v 8.2.  Can anyone provide suggestions on what I need to do in order to
    1.  Connect to my TCP server using my C++ client app - I have already written TCP client and server code which communicate but now I need to integrate LV
    2.  Get access to the VI sitting on that server
    3.  Send the VI front panel to the client for display
    4.  Allow the user to modify parameters on the front panel displayed on the C++ client, send those changes back to the server, and refresh the front panel displayed in the C++ client given the new parameters (I would like a real-time display of the spectrum to always be available)
    Is this possible?  Has anyone done this using C++ .NET in VS2005?  Are there examples I can mimic or references that will help direct me?  I have searched and searched through NI's help and found a lot of good stuff but I'm still feeling confused about the best way to utilize LV.
    Thank you in advance!

    One more question ... what if I could use Measurement Studio?  The documentation seems to indicate that it's easy to create network applications and therefore it would be easy for me to re-create our VI's front panel using Measurement Studio components in my C++ app and then simply connect those components to the networked hardware (TCP/IP or DataSocket) that could be located anywhere in the world.
    Depending on what components you are using in your LabVIEW panel, it is probably pretty easy to build a Measurment Studio application to look like a LV panel.
    Given that, you could use network shared variables to move data across the network, no TCP programming necessary -- I think that this is pretty easy to do, but I don't know the specifics about variable programming in that environment.  Also, you will probably need to add some smarts to the server side to make sure that it is reading to and writing from variables in an appropriate manner.
    Question: why can't you just use LabVIEW for the client application also?

  • Best way to display and interact with a tree

    I am trying to create an interface that is similar to the interface on this website for the skill tree:http://www.pathofexile.com/passive-skill-tree. What is the best way to go about doing this and have the same or similar user interaction. ie. you click on a node and it activate or deactivates it. The movement of the tree and zooming on it would be nice as well. I am somewhat new to this and am not familiar with all of the libraries that the SDK has to offer if anyone could give me pointers on where to look that would be great. I would like to try to stay away from webView as I am thinking about features I want to add. Thanks in advance just want to see what a good way to do this is.

    One more question ... what if I could use Measurement Studio?  The documentation seems to indicate that it's easy to create network applications and therefore it would be easy for me to re-create our VI's front panel using Measurement Studio components in my C++ app and then simply connect those components to the networked hardware (TCP/IP or DataSocket) that could be located anywhere in the world.
    Depending on what components you are using in your LabVIEW panel, it is probably pretty easy to build a Measurment Studio application to look like a LV panel.
    Given that, you could use network shared variables to move data across the network, no TCP programming necessary -- I think that this is pretty easy to do, but I don't know the specifics about variable programming in that environment.  Also, you will probably need to add some smarts to the server side to make sure that it is reading to and writing from variables in an appropriate manner.
    Question: why can't you just use LabVIEW for the client application also?

  • Select List with Submit : a display and a return value are needed...error

    Hi,
    Why the next SELECT returns error in Select list with submit ?
    List of values definition:
    SELECT b.nom nom_bannniere,
    b.no_banniere no_bann
    FROM banniere@my_source b
    WHERE b.statut = 0
    ORDER BY nom_bannniere;
    1 error has occurred
    * LOV query is invalid, a display and a return value are needed, the column names need to be different. If your query contains an in-line query, the first FROM clause in the SQL statement must not belong to the in-line query.

    gfrancoeur,
    Try this SQL:
    SELECT b.nom d,
    b.no_banniere r
    FROM banniere@my_source b
    WHERE b.statut = 0
    ORDER BY 1Thanks,
    - Scott -

  • How can we get Dynamic columns and data with RTF Templates in BI Publisher

    How can we get Dynamic columns and data with RTf Templates.
    My requirement is :
    create table xxinv_item_pei_taginfo(item_id number,
    Organization_id number,
    item varchar2(4000),
    record_type varchar2(4000),
    record_value CLOB,
    State varchar2(4000));
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'USES','fever','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'HOW TO USE','one tablet daily','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'SIDE EFFECTS','XYZ','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'DRUG INTERACTION','ABC','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'OVERDOSE','Go and see doctor','TX');
    insert into xxinv_item_pei_taginfo values( 493991 ,224, '1265-D30', 'NOTES','Take after meal','TX');
    select * from xxinv_item_pei_taginfo;
    Item id Org Id Item Record_type Record_value State
    493991     224     1265-D30     USES     fever     TX
    493991     224     1265-D30     HOW TO USE     one tablet daily     TX
    493991     224     1265-D30     SIDE EFFECTS     XYZ     TX
    493991     224     1265-D30     DRUG INTERACTION     ABC     TX
    493991     224     1265-D30     OVERDOSE      Go and see doctor     TX
    493991     224     1265-D30     NOTES     Take after meal     TX
    Above is my data
    I have to fetch the record_type from a lookup where I can have any of the record type, sometime USES, HOW TO USE, SIDE EFFECTS and sometimes some other set of record types
    In my report I have to get these record typpes as field name dynamically whichever is available in that lookup and record values against them.
    its a BI Publisher report.
    please suggest

    if you have data in db then you can create xml with needed structure
    and so you can create bip report
    do you have errors or .... ?

  • Share Cinema Display and peripherals with MBP and PC

    Share Cinema Display and peripherals with MBP and PC
    I am about to be forced to use a business network connected PC in my office, but I will continue to bring my personal MacBook Pro to work for my personal e-mail, calendar, internet, etc. (it will be connected to a seperate open DSL network). I am thinking about getting an Apple Cinema display and trying to use this one display for both computers. I would like a way to "switch back and forth" between the two systems, all the while using the same mouse, keyboard, printer and Cinema display.
    Does anyone have any experience setting up what I am wanting to do?
    Also, how does connecting an external display effect a MBP? Can you close the screen on the MBP, turning off the MBP's display but keeping the computer running? I'd like to be able to tuck the MBP out of the way to save deskspace but still be using it via the Cinema display and peripherals...
    Thanks so much!

    You can use synergy (link: http://synergy2.sourceforge.net/) to link the mouse and keyboard across the two platforms.
    If you want to use only one display, you'll need a KVM switch.
    You can run the MBP either with it's own screen open, or shut it and use only the external screen.
    Hopefully this helps a little...

  • Is it possible to connect an iPad to a SmartBoard and interact with the iPad on the SmartBoard, like you do on a computer with the Smart-software Notebook on it?

    Is it possible to connect an iPad to a SmartBoard and interact with the iPad on the SmartBoard, like you do on a computer with the Smart-software Notebook on it?

    You can purchase an adapter from apple that uses the monitor cable from the projector, its the same one that is probably connecting either your laptop or school workstation. On the projector control you might need to refresh the source.

  • View/table v_fagl_activec can only be displayed and maintained with restric

    Hi,
    When i required to activate a New G.L in ecc.6.0.I am getting following error while activating.
    view/table v_fagl_activec can only be displayed and maintained with restrictions.
    Please guide me
    Thanks and Regards
      RAVi

    From se11's Delivery and Maintenance tab check out Data Browser/Table View Maint property. Make it without any restrictions.

  • LOV query is invalid, a display and a return value are needed

    hello - i am having this issue and can't get around this when creating a popup LOV based on sql.
    below is LOV query. as you see the view has only two columns. I tried various ways by giving alias to columns in query but nothing works. What did I miss here?
    select description,inventory_item_id from xx_apex_inv_v
    1 error has occurred
    LOV query is invalid, a display and a return value are needed, the column names need to be different. If your query contains an in-line query, the first FROM clause in the SQL statement must not belong to the in-line query.

    Did you try it like this?
    select description d, inventory_item_id v from xx_apex_inv_v

  • Hi,View/table J_1IEWTECESS can only be displayed and maintained with restri

    hi,
    View/table J_1IEWTECESS can only be displayed and maintained with restrictions. i changed package j1in.but when i maintained in sm30.it will display this error. plz help me .
    error.View/table J_1IEWTECESS can only be displayed and maintained with restrictions.
    Murali.

    Hi,
    The view is already maintained by SAP , why do u want to change that? it is SAP standard view right???I'm able to add entries without any problem.
    regards,
    madhu

  • View/table V_T682 can only be displayed and maintained with restrictions

    Hi friends,
    When I want to displaying for V_T682 table  from  SM30 tr.code , it gives me about error "  View/table V_T682 can only be displayed and maintained with restrictions". I think ,this table's maintenance status is  marked as  display/maintenance allowed with restrictions on SE11. So, how I can display the this table from sm30 tr.code.(Note: I have only displaying authorization)

    Hi Lakshmipathi
    I already knowing to execute the tables from se16 tr.code,  My aim is to displaying the customizing view.(Note: I have no authorization for SM34 tr.code.)
    Edited by: kaiz34 on Sep 20, 2010 4:51 PM
    Edited by: kaiz34 on Sep 20, 2010 4:52 PM

  • View/table Ztable can only be displayed and maintained with restrictio

    Team,
    I am getting this error when I enter my table in SM30 and click on either -No Restrictions; -Enter conditions. (I already created Table Maint. for it.)
    Error:
    "View/table ZTABLE can only be displayed and maintained with restrictions"
    I deleted and recreated but the error is still there. What could be the reason for the above error.
    Thanks

    Hi,
    Try this..
    Goto SE11 give the table name goto change mode
    then click on DELIVERY MAINTANCE TAB
    then select option data browser/table maintance allowed as 'DISPLAY?MAINTAINCE ALLOWED.
    this will work
    Thanks,
    Naren

  • Blue boxes with question marks, Need help

    In safari i am constantly getting blue boxes with question marks in them, replacing images.
    These boxes are showing up on tumblr, forums, facebook and other places.
    I need help fixing it please.

    Thoseboxes mens it can't decipher the format, might try
    Perian...
    http://perian.org/
    Perian enables QuickTime application support for additional media:
              •          File formats: AVI, DIVX, FLV, MKV, GVI, VP6, and VFW
              •          Video types: MS-MPEG4 v1 & v2, DivX, 3ivx, H.264, Sorenson H.263, FLV/Sorenson Spark, FSV1, VP6, H263i, VP3, HuffYUV, FFVHuff, MPEG1 & MPEG2 Video, Fraps, Snow, NuppelVideo, Techsmith Screen Capture, DosBox Capture
              •          Audio types: Windows Media Audio v1 & v2, Flash ADPCM, Xiph Vorbis (in Matroska), and MPEG Layer I & II Audio, True Audio, DTS Coherent Acoustics, Nellymoser ASAO
              •          AVI support for AAC, AC3 Audio, H.264, MPEG4, VBR MP3 and more
              •          Subtitle support for SSA/***, SRT, SAMI
    Never heard of those sites though, so no idea what they use.

  • TS1717 This article is vague and unhelpful. My iTunes needs help from a pro. I have over 120,000 songs -- NO movies, TV, radio, or books... I have other programs which efficiently run things which are not audio-based. So why can I not get iTunes working w

    This article is vague and unhelpful. My iTunes needs help from a pro.
    I have over 120,000 songs -- NO movies, TV, radio, or books...
    I have other programs which efficiently run things which are not audio-based.
    So why can I not get iTunes working well?? It now takes at least 10 secs for any operation to be completed!
    That is just plain evil. But I am sure I could do something to help.
    All the music is on an 2T external drive.

    TS1717 as noted in the thread title...
    Brigancook, is the library database on the external or just the media? iTunes reevaluates smart playlists and rewrites its database after every action on the library. I've found this can make a library half that size, with a lot of smart playlists, quite sluggish. That said I'm aware part of my problem is aging hardware. Having the database on the internal drive may improve performance if it is currently on the external.
    I'd expect to see an exponential relationship between size and response time which may explain what you see. Cutting down on the number of smart playlists might help. If we're really lucky the long awaited iTunes 11 might have streamlined some of the background processes as well as cleaning up the front end.
    tt2

  • HT4623 i have just loaded the latest update on my iphne now the phone is asking to connect to itunes and phone is locked, frozen and can't open up need help now desperatly

    i have just loaded the latest update on my iphne now the phone is asking to connect to itunes and phone is locked, frozen and can't open up need help now desperatly

    Same problem with the update, and iTunes can't find my device.  I've spent the last two hours researching this and trying everyone's ideas to no avail. I hope someone comes through.  Super frustrating :////

Maybe you are looking for

  • How to notify user about concurrent Program Status

    Hi,   I'm calling Concurrent Program in Oracle Apps Adapter from BPEL 11g . I have to pass the mail id as one of the input parameters to concurrent program. I have to notify the status of the concurrent program to that mail id  if it is Success or fa

  • Reg Organisational Structure Creation

    Hi, When Iam trying to  create root Org Unit  in Org Mgmnt Module it is giving the error as "No valid interval found (internal number assignment)". I also tried to maintain the number ranges entries( internal) in spro . I guess I might not be maintai

  • Creating attachments in CRM complaint documents

    Dear experts, CRM 5.0, We are using a complaints process which makes use of action profiles to send notifications. Is it possible to create pdf attachments for the notifications being sent out from the complaint document and attach them to the compla

  • Troubleshooting RAM .... need New Year's Eve Help ...

    I want to start out tby telling you just how cool I am.   It's 11:05 on New Year's Eve and I have been trouble shooting the RAM of my early 2008 Mac Pro for 3 hours.   Yep, real cool. I have tried multiple configuration of memory cards - 4 in the top

  • Urgent! Multiple JAAS login call in one JVM

    I am using Weblogic 6.0+sp1 and JAAS login. My use case requires multiple connection to the weblogic server with different user credential for each connection. Is it possible to have JAAS login called multiple times in one JVM, each call has differen