Labview form inside HIQ

I know I can use HIQ from inside Labview, but , can I use Labview or more
specifically some VI from inside HiQ, in the sense
HiQ->VI (Labview)->HiQ

Thanks Jean,
that is exactly what I was looking for...
The trees didn´t allow me to see the forest
SC
Jean-Pierre Drolet escribió en el mensaje de
noticias [email protected]..
> you open an interface with a VI in labview like this
>
> lv = CreateInterface("labview.application")
> viref = lv.GetVIReference("")
>
> use the View/Active X Object Browser to see methods and properties that
are
> available.
>
> __________________________
>
> Jean-Pierre Drolet
>
>

Similar Messages

  • How to open labview program with Quit Labview function inside?

    Hi Any idea how to open labview program with  Quit Labview function inside?
    I forgot to add and set the condition of the type for this program.
    If the program is an application, it would close straight away.
    If it is still labview work, it will go straight to editing program without closing.
    So I need to recover, open it and make some changes.
    Clement
    Solved!
    Go to Solution.

    Put the VI in a project and open it from there, then it shouldn't autorun. You can use App.kind property of application to decide whether to close or not.
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • Form Inside InDesign

    We have manuals for tools we sale, and I put them together with InDesign. These manuals are interactive PDF's. I am wanting to add a Quality Assurance form inside the manuals. So if customer has a problem with a product or service they can fill in this form and click the email button to send this form information to us.
    I use Livecycle Designer ES4 to build all forms we use inhouse and to send out to customers. I have also used Acrobat & Indesign for build forms.
    The problem I'm having is with Indeisgn when you place a interactive PDF into Indesign (be it from Livecycle or Acrobat) you lose all info for that form. And making a form inside the document using InDesign and adding a email button. When the email button is used to email the form you don't just get that one page you get the complete manual.
    I would think there may be a script you can use to have it email just the one page this form is on. I know some javascript and have wrote some scripts, but I'm still new to the script world.
    Is there a way to embed this form so that it will work the way I'm needing?
    Thanks
                HHud5757

    Thanks!
    I inserted the form but the form I am using is an XML form and Acrobat will not let you insert an XML form. You can add it as an attachment.
    The only problem with the attachment is, if you don't have something that info's you that there is an attachment present it could be missed.
    I made a quick form from InDesign and exported it to an interactive PDF. Then went and inserted this PDF form into the PDF manual and it worked like I am needing. The only problem is when you click the email button it still emails the complete manual. I have to now figure out how to be able to email only the one page.
    I thought I may have to add a link that takes you to this form on our website so it could be completed and sent from there.
    Thank you both for the help!

  • Can I have a form inside another form?

    Hi!
    Is it possible to have a form inside another form?
    Regards,
    Filipa

    I think I'm messing up everything and i'm confused with how jsf works.
    I've noticed now that my problem doen't have todo with if i'm usin one form or nested forms :(
    The problem is (as i understood) that if the backing bean that I'm using for the chart part is a request chart, every time i submit the form a new instance of the bean is created and so the initialization of the selected checkboxes is redone.
    How can I avoid this? I would like to have only the choosen checkboxes selected.
    Here is the jsp code I'm using:
    <h:form>
    <h:panelGrid id="selectMenus" columns="2" style="margin-bottom:10px">
         <h:panelGroup style="margin-right:5px">
              <h:selectOneMenu id="projectSelectBox"
                   value="#{chartTypesBean.selectedProject}" onchange="submit()">
                   <f:selectItems value="#{chartTypesBean.projects}" />
              </h:selectOneMenu>
         </h:panelGroup>
         <h:panelGroup>
              <h:selectOneMenu id="chartSelectBox"
                   value="#{chartTypesBean.selectedProjectChart}" onchange="submit()">
                   <f:selectItems value="#{chartTypesBean.projectCharts}" />
              </h:selectOneMenu>
         </h:panelGroup>
    </h:panelGrid>
    <h:panelGrid id="calcByDay_grid" columns="2"
         rendered="#{chartTypesBean.lineRendered}">
         <h:panelGroup>
              <jd:barChart3d dataset="#{lineChartBean.lineDataset}" width="400"
                   height="400" fileExt="png" chartTitle="Calc by Day"
                   includeLegend="true" formatter="#{lineChartBean.formatter}"
                   type="Line" plotColor="#D8D8D8" binding="#{lineChartBean.lineChart}" />
         </h:panelGroup>
         <h:panelGroup>
              <h:selectManyCheckbox id="lineSeries" layout="pageDirection"
                   immediate="true" value="#{lineChartBean.lineSelectedSeries}">
                   <f:selectItems value="#{lineChartBean.lineSeries}" />
              </h:selectManyCheckbox>
              <h:commandButton id="lineSubmit" value="Submit"
                   action="submit()" />
         </h:panelGroup>
    </h:panelGrid>
    ... (other charts) ...
    </h:form>
    here is the line chart backing bean code:
    public class LineChartBean {
         private Logger logger = Logger.getLogger(LineChartBean.class
                   .getSimpleName());
         private boolean firstTime = true;
         private final String[] lineCategories = { "27/07/05", "28/07/05",
                   "29/07/05", "30/07/05", "31/07/05", "01/08/05", "02/08/05",
                   "03/08/05", "04/08/05", "05/08/05", "06/08/05", "07/08/05",
                   "08/08/05", "09/08/05", "10/08/05", "11/08/05", "12/08/05",
                   "13/08/05", "14/08/05", "15/08/05", "16/08/05", "17/08/05",
                   "18/08/05", "19/08/05", "20/08/05", "21/08/05", "22/08/05",
                   "23/08/05", "24/08/05", "25/08/05", "26/08/05" };
         private final SelectItem[] lineSeries = { new SelectItem("Open", "Open"),
                   new SelectItem("P1(Open)", "P1(Open)"),
                   new SelectItem("P2(Open)", "P2(Open)"),
                   new SelectItem("Active", "Active"), new SelectItem("Test", "Test"),
                   new SelectItem("Evol", "Evol") };
         private final double[][] lineValues = { { 8, 1, 4, 6, 7, 11.60483871 },
                   { 11, 1, 4, 7, 5, 11.62903226 }, { 11, 1, 4, 7, 5, 11.65322581 },
                   { 11, 1, 4, 7, 5, 11.67741935 }, { 11, 1, 4, 7, 5, 11.7016129 },
                   { 13, 2, 5, 7, 5, 11.72580645 }, { 14, 2, 5, 7, 5, 11.75 },
                   { 12, 3, 4, 9, 5, 11.77419355 }, { 12, 3, 4, 9, 5, 11.7983871 },
                   { 12, 3, 4, 9, 5, 11.82258065 }, { 12, 3, 4, 9, 5, 11.84677419 },
                   { 12, 3, 4, 9, 5, 11.87096774 }, { 14, 3, 5, 10, 4, 11.89516129 },
                   { 13, 2, 6, 12, 4, 11.91935484 }, { 13, 2, 6, 12, 4, 11.94354839 },
                   { 13, 2, 6, 12, 4, 11.96774194 }, { 12, 2, 5, 4, 13, 11.99193548 },
                   { 12, 2, 5, 4, 13, 12.01612903 }, { 12, 2, 5, 4, 13, 12.04032258 },
                   { 12, 2, 5, 4, 13, 12.06451613 }, { 12, 2, 4, 4, 11, 12.08870968 },
                   { 12, 2, 4, 3, 9, 12.11290323 }, { 14, 3, 5, 2, 4, 12.13709677 },
                   { 11, 0, 5, 3, 5, 12.16129032 }, { 11, 0, 5, 3, 5, 12.18548387 },
                   { 11, 0, 5, 3, 5, 12.20967742 }, { 12, 0, 6, 2, 5, 12.23387097 },
                   { 12, 0, 6, 2, 4, 12.25806452 }, { 12, 0, 6, 2, 4, 12.28225806 },
                   { 12, 0, 6, 2, 4, 12.30645161 }, { 12, 0, 6, 2, 4, 12.33064516 } };
         private DefaultCategoryDataset lineDataset;
         private String[] lineSelectedSeries;
         private NumberFormat formatter = new DecimalFormat("#,###.##");
         public CategoryDataset getLineDataset() {
              if(firstTime) {
                   lineSelectedSeries = new String[lineSeries.length];
                   for (int i = 0; i < lineSeries.length; i++) {
                        lineSelectedSeries[i] = (String) lineSeries.getValue();
                   firstTime = false;
              lineDataset = new DefaultCategoryDataset();
              for (int serie = 0; serie < lineSeries.length; serie++) {
                   String serieName = (String) lineSeries[serie].getValue();
                   boolean isSelected = false;
                   for (String selectedSerie : lineSelectedSeries) {
                        if (lineSeries[serie].getValue().equals(selectedSerie)) {
                             isSelected = true;
                             break;
                   if (!isSelected) {
                        continue;
                   } else {
                        for (int category = 0; category < lineCategories.length; category++) {
                             double y = lineValues[category][serie];
                             lineDataset
                                       .addValue(y, serieName, lineCategories[category]);
              return lineDataset;
         public NumberFormat getFormatter() {
              return formatter;
         * @return Returns the lineSelectedSeries.
         public String[] getLineSelectedSeries() {
              return lineSelectedSeries;
         * @return Returns the lineSeries.
         public SelectItem[] getLineSeries() {
              return lineSeries;
         * @param lineSelectedSeries
         * The lineSelectedSeries to set.
         public void setLineSelectedSeries(String[] lineSelectedSeries) {
              this.lineSelectedSeries = lineSelectedSeries;

  • Can we have form inside a form?

    Hi All,
    Can we have form inside a form?
    Thanks
    kiran

    Can we have form inside a form? Yes. However you could find out that , regardless of which form gets submitted, all input fields of both forms would get submitted anyway.
    That would render nested forms quite useless.
    But as it has been said, why don't you try it and see for yourself?
    Keep in mind that, you may think you need nested forms, but you really do not need that, and there is a problem with your design.

  • Form inside user exit

    Is it possible to define a form (subprocedure) inside a user exit?  When I try it complains that I'm trying to define a form inside of a function.  Of course I have no choice because the whole user exit is a function.  What's the best way to work around this?

    i came to know from one of the posts here in SDN, the options are,
    1) create a custom function module and call it
    2) write ur subroutine in a report prog. and call that subroutine of that report prog.
    3) develop a INCLUDE and add it in MAIN prog.
    for more info. pls. search in SDN
    thanq

  • Form inside Form

    Hi everybody,
    How can I view a form inside a form?
    i.e. To have the upper part of the form to display another form as a header.
    Thanks in advance ;)

    If you want to open another form from inside a form, you can use these built-ins. The help document describe the differences between each.
    call_form
    open_form
    new_form
    But when you open a form, it will have its own window. If you don't want that, then use a stacked canvas.

  • Form inside muse

    how I can put a form inside muse?
    contact.html -> form
    send.php -> answer
    very thanks

    http://forums.adobe.com/message/4397959#4397959

  • Multiple forms inside a tabset

    I have a tabset inside a main form. Is it possible to have another forn inside individual tabs?
    When I put another form inside a tab, tabset gets stuck on single tab and you unable to click through the tabs.
    Thanks in advance for your help.

    Hi,
    I tried adding a form component to the tab set. The form component appears as a new form node for the page. The IDE creates a form for you when it creates a new page, so you are not required to add this component to a page created by the IDE. If you need a form within a form, you must create a virtual form instead. You can right-click a component and choose Configure Virtual Forms to create a new virtual form or to add the component to an existing virtual form.
    If you do add a form component to a page, you see the form appear as a selected box and a new form node for your page appears in the Outline window. You can select the form in the Outline window, and then you can drag components onto the form.
    Perhaps the following on virtual forms might help :
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/virtual_form.html

  • Adobe Form inside a Tabstrip

    Hello,
    I'm using a Tabstrip but when I put inside a tab an adobe form it doesn't shows anything. I'm not sure if this object (TabStrip) support an adobe form inside.
    Please anyone knows?
    Thanks
    Regards
    SU

    sorry, i found out the reason.
    the fm can not test direct in se37, it should be wrapped by a program.
    br.
    zj

  • Form inside lightbox cursor problem in Adobe Muse

    So. When I put form inside lightbox and trying to clicking on the fields - they doesn't work, cursor doesn't appears. But works when click on label. See pictures below. Any advices?

    Please provide the page url where we can check the form.
    Thanks,
    Sanjit

  • Can I insert/embed an Adobe FormCentral form inside an Adobe Muse widget?

    Embeding a form to the main page is easy but I can't seem to insert the HTML or copy and paste the form INSIDE a widget such as the acordian or tabled form?
    Any sugestions or links to help videos?
    Thanks.

    Hi again Sachin,
    The form isn't a Muse widget form, it's an 'Adobe FormsCentral' form that you can enbed into any wedsite. I still haven't been able to inset it inside a widget (any of the widgets) by following your instructions?
    This the code...
    <script type="text/javascript" src="https://formscentral.acrobat.com/Clients/Current/FormsCentral/htmlClient/scripts/adobe.for m.embed.min.js"></script>
    <script type="text/javascript">;ADOBEFORMS.EmbedForm({formId:"*2aRdzmo4Uxfn3br-8rcsw"});</script>
    Does that help? If you could figure out a way to do this it would make my wedsite 100% better!
    Thanks again.

  • Can I insert/embed a form inside an Adobe Muse widget?

    Embeding a form to the main page is easy but I can't seem to insert the HTML or copy and paste the form INSIDE a widget such as a Muse acordian or tabled form?
    Any sugestions or links to help videos?
    Thanks.

    Hi,
      Please check this post and the links noted there
    http://forums.adobe.com/message/5455917
    Hope this helps,
    Thanks,
    Lucia

  • Calling Forms inside a browser

    Can any one help me, how to call forms 5 or forms6 or forms4.5
    inside a Browser. I have used Jinitiator and sucessfully called
    forms through the browser but it opens up a seperate window
    instead of openeing in the same window.
    Has any one done that if yes can u help me.
    mobeen
    null

    Ihtesham Uddin (guest) wrote:
    : Hi Mobeen,
    : As of Dev/2000 Server Rel 2.1, OWAS 3.0 there is no mechanism
    to
    : call the form in the same browser window. The form applet will
    : always be opened in a new applet Window. May be in future
    : releases of D2K Server and OWAS, it might be possible.
    : Ihtesham uddin
    : Mobeen (guest) wrote:
    : : Can any one help me, how to call forms 5 or forms6 or
    forms4.5
    : : inside a Browser. I have used Jinitiator and sucessfully
    : called
    : : forms through the browser but it opens up a seperate window
    : : instead of openeing in the same window.
    : : Has any one done that if yes can u help me.
    : : mobeen
    Interestingly the behaviour you want is the default if using
    Developer 6 and OAS 4. There you have a menu toolbar and the
    form inside the browser window (I'm using JInitiator).
    Frank
    null

  • How to align three forms inside single panelGroupLayout side by side.

    Hi,
    I am using Jdev 11.1.1.7.0.
    Requirement is, I need to show three form inside one panel group layout side by side. I could not use panelSplitter since it is diving into only two. How to achieve the requirement.
    Thanks in advance.
    Dileep.

    Hi,
    Set as layout="horizontal"
    check
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_panelGroupLayout.html
    <af:panelGroupLayout layout="horizontal" id="pgl1">
      <af:goLink text="oracle1" destination="http://www.oracle.com" id="gl1"/>
      <af:goLink text="oracle2" destination="http://www.oracle.com" id="gl2"/>
      <af:goLink text="oracle3" destination="http://www.oracle.com" id="gl3"/>
    </af:panelGroupLayout>

Maybe you are looking for

  • How can I clean out my ipod before I sell it?

    I have a GEN 3 ipod nano that I want to clean out before I sell it. My question is : How can I rid the ipod of all the stuff that I have put into it?

  • Loosing internet when using 11n

    Hello I own a MacBook Pro (Late 2008), and just bought a Airport Extreme. I found in Network utility that I always connected to the b/g network and never to the n. I then manually changed the AP Extreme to divide it into two separate channels (airpor

  • BPM starting question

    Hi all, I have developed a BPM which basically reads 2 files (INVOICES and BILLING) makes some transformation and send it to a SAP R/3 system. Both files have a data field which it is used to correlate them. So when sender system send INVOICES file o

  • How do you change Keyboard Increments to mm?

    Hi - I have upgraded to CC but am having difficulty altering the Keyboard Increments for Baseline Shift and Size/Leading to mm. I type in a mm value but Indesign automatically converts it to pt. Any help?

  • ANN: dotJ

    dotJ Software is pleased to announce its new dotJ Custom Tag Library! dotJ contains a powerful set of tags that will help you greatly reduce your JSP development efforts. This feature rich library attempts to trivialize the most common idioms web dev