Can I link excel apis to build a 64-bit applicatio​n?

Hi,
I need to use excel api's to build a 64-bit application which works for 64-bit o/s.
But, when i use these excel api's to build my 64-bit application from command line, i am getting linking errors whereas i am using the same libraries to build 32-bit application and this is being built.
So, here my doubt is that will the labwindows excel apis support for 64-bit o/s?
Please do help.
Thanks in advance.
Safer

Hey menchar - 
You can use the new 64 bit intel template to create a 64 bit app.  The documentation is incorrect.  I have already filed a bug report for this.
NickB
National Instruments 

Similar Messages

  • Can I insert into a form build in FORMSCENTRAL, a Formula with the numerical data that are updated by a given formula, like in Excel?

    Can I insert into a form build in FORMSCENTRAL, a Formula with the numerical data that are updated by a given formula, like in Excel?

    Hello danna,
    please have a look there as a first step: http://helpx.adobe.com/acrobat-com/formscentral/topics.html  >>> Formula syntax for built-in functions  >>> http://helpx.adobe.com/acrobat-com/formscentral/help/formula-syntax-built-in-functions.htm l
    Hans-Günter

  • Build a blank/other type of page which can show links to other pages

    Can someone please tell me how to build a blank/other type of page which can show links to other pages? I mainly want a page to show 3 links, once someone clicks on it, then it will go to a specified page. I tried using URL, but that did not work. Any advice is greatly appreciated. Thank you very much for your help in advance.
    -Grace

    Do a region (probably a HTML-based one is fine), enter in the HTML for your links, and that should be it. What didn't work about this?
    Your links probably should appear like this in your coding (use substitution variables):
    f?p=&APP_ID.:3:&APP_SESSION.
    In the above example, "&APP_ID." will resolve dynamically to the application ID that you are in, "3" is page 3 (change this to whatever page you want the link to be), and "&APP_SESSION." is the existing session number (if you don't include this, the user will receive a new session ID if the destination page is public or will be intercepted annoyingly to log in and get a new session ID which you probably don't want).
    Do not include the full http path. Just start with f?p... and everything is assumed to be relative to Apex on the current environment.
    Those are effectively the minimum requirements for a URL in Apex to go from one page to another in an app. You can add to that the additional URL parameters for Request value, Set items with values, clear cache, reset pagination, etc. if you need to. Check the Apex online help under "understanding URL syntax" for details on these.

  • How can I link EntityClass properties to GUI compoments?

    Contact.java
    package pub.lne.entidades;
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.GenerationType;
    import javax.persistence.Id;
    import javax.persistence.Table;
    @Entity
    @Table(name = "CONTACT")
    public class Contact implements Serializable {
        private static final long serialVersionUID = 1L;
        @Id
        @GeneratedValue(strategy = GenerationType.IDENTITY)
        private Long id;
        @Column(name = "NAME")
        private String name;
        @Column(name = "PHONE")
        private String phone;
        @Column(name = "EMAIL")
        private String email;
        public Long getId() {
            return id;
        public void setId(Long id) {
            this.id = id;
        public String getName() {
            return name;
        public void setName(String name) {
            this.name = name;
        public String getPhone() {
            return phone;
        public void setPhone(String phone) {
            this.phone = phone;
        public String getEmail() {
            return email;
        public void setEmail(String email) {
            this.email = email;
    ContactView.fxml
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.util.*?>
    <?import javafx.scene.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <AnchorPane id="AnchorPane" prefHeight="308.0" prefWidth="433.0" xmlns:fx="http://javafx.com/fxml" fx:controller="pub.pre.vistas.ContactViewController">
      <children>
        <TextField fx:id="txtName" layoutX="121.0" layoutY="102.0" prefWidth="200.0" />
        <TextField fx:id="txtPhone" layoutX="121.0" layoutY="133.0" prefWidth="114.0" />
        <TextField fx:id="txtEmail" layoutX="121.0" layoutY="162.0" prefWidth="200.0" />
        <Label layoutX="69.0" layoutY="105.0" text="Name" />
        <Label layoutX="69.0" layoutY="136.0" text="Phone" />
        <Label layoutX="69.0" layoutY="168.0" text="Email" />
        <Button fx:id="btnSaveContact" layoutX="122.0" layoutY="218.0" mnemonicParsing="false" onAction="#btnSaveContactAction" text="Save Contact" />
      </children>
    </AnchorPane>
    ContactViewController
    package pub.pre.vistas;
    import java.net.URL;
    import java.util.ResourceBundle;
    import javafx.event.ActionEvent;
    import javafx.fxml.FXML;
    import javafx.fxml.Initializable;
    import javafx.scene.control.Button;
    import javafx.scene.control.TextField;
    import javax.persistence.EntityManager;
    import javax.persistence.EntityManagerFactory;
    import javax.persistence.Persistence;
    import pub.lne.entidades.Contact;
    public class ContactViewController implements Initializable {
        @FXML
        private ResourceBundle resources;
        @FXML
        private URL location;
        @FXML
        private Button btnSaveContact;
        @FXML
        private TextField txtEmail;
        @FXML
        private TextField txtName;
        @FXML
        private TextField txtPhone;
        private Contact contact;
        @FXML
        void btnSaveContactAction(ActionEvent event) {
            //setting values
            contact.setName(txtName.getText());
            contact.setPhone(txtPhone.getText());
            contact.setEmail(txtEmail.getText());
            //saving
            EntityManagerFactory emf = Persistence.createEntityManagerFactory("PersistenceUnit");
            EntityManager em = emf.createEntityManager();
            em.getTransaction().begin();
            em.persist(contact);
            em.getTransaction().commit();
        @Override
        public void initialize(URL url, ResourceBundle rb) {
            contact = new Contact();
    The Question
    How can I link the Contact.java properties to the ContactViewController.java components (In this case the textfields). In order to automatically update the Contact properties or viceversa.
    I dont want do this:
    contact.setName(txtName.getText());
    and
    txtName.setText(contact.getName());There is any way to do it automatically ?
    If yes, please correct my example in this post with the best way.
    Edited by: m_ilio on Jun 5, 2013 8:44 AM

    Have a look at all the JavaBean***Property classes.
    You have to wrap you entity class and for each usual getter/setter you will have to provide an additional property in the JavaFX style with the help of the builder class.
    http://docs.oracle.com/javafx/2/api/javafx/beans/property/adapter/JavaBeanStringPropertyBuilder.html
    Then you can do (bidirectional) binding.
    For bidirectional binding, also notice this from the docs:
    If the Java Bean property is bound (i.e. it supports PropertyChangeListeners), this JavaBeanStringProperty will be aware of changes in the Java Bean. Otherwise it can be notified about changes by calling fireValueChangedEvent().

  • How to use excel api in java?

    I need to use excel api in Java to generate data in excel format. Can any one tell any of the use ful Excel api that we can down load from net? i have read about Apache's POi-hssf-Java api. But the jar i downloaaded from Apache site is not working ? Can anybody please send me the jar for taht Api ?

    Hi,
    In fact i was not clear about whcih jar file to download from the apache site. i found one folder structure like this
    -parent
    -bin
    -src
    All these folders contained some zip files. i took the zip files and extracted them. And i set teh class path also . But when i tried to import in java programs ,these jar files are giving compilation errors

  • How to link Excel file to Access

    Hello,
    I created a barcode database using excel and labview. Now i want this data to be in access as a database and continuosly update it.
    I have a doubt also as i have created excel sheet of various product barcode and there is always a new sheet that is saved when ever working( this is a requirement)  so how can i link all the file and creat one access database.
    Thanks in advance, Need urgent help
    Regards
    Naman Vaidya

    sorry for the confusion. 
    i want labview to link my excel and acess, so that a database is created.
    second thing is i am having verious barcode data like for eg. for product X i have a particular barcode and for product Y another so my software create a new excel file whenever we change a product or a particular quantity of any product is filled. Now the question is if everytime i creat a new excel how do i creat a single database by linking all files using labview.
    Thanks for the reply.

  • Can I create a result set filter on a SSRS Report similar to what you can do in Excel?

    Asking this question in a different way...I have my SSRS Result set. Now the Business User wants to filter down a 15-page report to what they want to specifically see....Sooo my result set has a list of claims. And now the Business User just wants to see
    the list of claims by a certain Provider, which is also in the report. So I don't want to put that "filter" on the front-end...within the Stored Procedure that is producing the report because they want to see everything. Is there a way to make SSRS
    intelligent enough to parameterize the back-end result set? Or do I need to do it the old fashioned way by allowing for an optional parameter, let them run their report, define the available values by a query similar to the stored procedure filtering, and
    let them drill down that way?
    I have tried playing around with Dataset filters and a parameter using the existing result set and existing Dataset, but I just cannot seem to get this to work the way I envision. If this entails creating a Function or Procedure within the SSRS, bring it
    on...I'm willing to learn. And I do have some VBA experience...so I'm not intimidated.
    Again...I apologize for the similar type question, but I felt the need to be a little more clear.
    Thanks for your review and am hopeful for a reply.
    PSULionRP
     

    I GOT IT!!!
    Followed the following...
    Here's what I've put into my SSRS Knowledgebase...
    Filters/Parameters on the Report Result Set
    Request from the Business User to add "parameters" to the Report Result Set. Kind of like auto filtering you can do in Excel
    Within the Report Design within Microsoft Visual Studio…
    — Insert a new Dataset which is merely carving out the SQL from the working Report Stored Procedure and customizing the SQL for the DISTINCT values that you want
    — Insert a NEW Parameter based on the carved out SQL
    General → Allow blank value
                      Allow multiple values
    Available Values → Get values from a query
    Specify the previously created Dataset
    Default Values → Get values from a query
    Specify the previously created Dataset
    — Insert a Filter back on the original Dataset that is used to create the Report
    Expression → Choose the Report Detail Item column name
    Operator → In
    Value → Physically type in the Parameter Name created previously
    Works EXACTLY as I had envisioned. Prompts for the From Date and Thru Date, runs the report, dynamically builds the "optional" parameters/filters,
    and then allows the Busimess User to speify or drill down into the result set based on the dynamically built parameter drop-down list.

  • Acrobat X - Word with linked Excel-Sheets is blank

    Hello Acrobats,
    the following problem occurs using MS Office 2007 on Win XP with Acrobat X PDF-Maker:
    A MS Word document has a linked Excel-Sheet inserted.
    The PDF maker is used to create a PDF with no tags or PDF/A specification.
    With Acrobat 9 no problems occured.
    Now, with Acrobat X the following happens: The part, where the Excel sheet is positioned, only a black frame is shown with a "play"-button (as shown below).
    Does anybody know how to avoid this problem?
    Thanks in advance
    mannikaltz

    Hi ,
    This is a known issue and this will be fixed soon in the next sub-release of Acrobat X . Till then ,as a workaround , you can copy paste the contents of the 'linked' file to your word file ,instead of linking the file , this will produce an equivalent PDF .
    Thanks for your feedback .
    Thanks,
    Apoorv

  • Importing Word Files With linked Excel files

    I have a word document with linked excel files that appear as linked images in word. When these images are clicked it opens it up in Excel where I can edit them which is fine. However, I would like to import the word doc into adobe indesign with editable tables - not images. Is there a way I can do this?
    Importing, exporting, converting. Nothing seems to work besides manually bring in the separate excel doc in one by one but that will be very time consuming at my end.
    Thanks for any feedback.

    AFAIK, that won't work. InDesign doesn't support OLE.
    You may need to convert those Excel tables to Word tables before placing into ID.
    Bob

  • Opening Linked Excel OLE Objects in Forms 6i

    Hi,
    I have a linked Excel OLE object which is populating properly into an OLE container. However, I cannot open the file to save a local copy, as I would a non-linked Excel OLE object. If I right-click on the linked OLE object choose copy, I can paste the data into a spreadsheet, but it appears as an image, rather than as regular tabulated data. Is there anyway to open the file normally?
    Thanks in advance.

    Hi Shay,
    Thanks for the reply but i was unable to register to metalink. they need some support agreement code which i do not have. Can you please give me some more information on how to use that.
    waiting for an early reply.
    Warm Regards
    Vivek Bajaj

  • Can you link to text?

    Hello again...
    Okay, here's the scoop: I'm building some websites which will
    be expanding in size over the coming months and years. Right now I
    have a footer with copyright info, it's text controlled ny an
    external style sheet. Works lovely.
    So let's say that I get into these pages, oh, 50-100 or more
    pages and suddenly I realize that I have to change the text in the
    footer to read differently. Don't ask why, please.
    Can I link to a bit of text, stored elsewhere, just like a
    photo or file, that will deliver the copyright info, just one
    simple set of text that I can change once and affect a global
    change on my large websites? I'd rather do it with text as opposed
    to a graphic.
    Any takers? It's late here in Las Vegas (12:31am) and the cat
    on my lap won't tell me if he knows how to solve this issue.
    Cheers all,
    Wordman

    Now Now! credit where credits due- both books on PHP and
    dreamweaver- I
    spent my money !;-)
    Ian
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:[email protected]...
    >> Incidentaly it's not that I'm clever I stole/ robbed
    the code from an
    >> extremely usefull publication called PHP for
    Dreamweaver by someone
    >> called Powers ;-)
    >
    > At least give yourself credit for being clever enough to
    buy & read
    > David's book. :-)
    >
    > --
    >
    > Walt
    >
    >
    > "Ian Edwards"
    <[email protected]> wrote in message
    > news:[email protected]...
    >> Hi
    >>
    >> I use it all the time
    >>
    >> add a line similar to this in your footer area
    >>
    >> <?php include("copyright.php"); ?>
    >>
    >> then create a file called copyright.php with the
    following code - no
    >> other code in the file
    >>
    >> <p>&copy;
    >> <?php
    >> $startYear=2006;
    >> $thisYear = date('Y');
    >> if ($startYear == $thisYear) {echo $startYear;}
    >> else {echo "$startYear-$thisYear";} ?>
    >> Junction24 Ltd &amp; Edwards Micros All Rights
    Reserved<br />
    >> </p>
    >>
    >> If you create a template inside say a footer div you
    can then copy the
    >> footer div with the include inside it and use find
    and replace to add it
    >> to all your pages.
    >>
    >> Then if you just change the copyright.php it will be
    reflected on every
    >> page.
    >>
    >>
    >> Incidentaly it's not that I'm clever I stole/ robbed
    the code from an
    >> extremely usefull publication called PHP for
    Dreamweaver by someone
    >> called Powers ;-) Recommend it! introduced me to php
    and now I'm an
    >> Expert!!!!;-) Also qualified as a liar
    >>
    >> HTH
    >>
    >> Ian
    >>
    >> "Wordman-GL" <[email protected]>
    wrote in message
    >> news:[email protected]...
    >>> Hello again...
    >>>
    >>> Okay, here's the scoop: I'm building some
    websites which will be
    >>> expanding in
    >>> size over the coming months and years. Right now
    I have a footer with
    >>> copyright
    >>> info, it's text controlled ny an external style
    sheet. Works lovely.
    >>>
    >>> So let's say that I get into these pages, oh,
    50-100 or more pages and
    >>> suddenly I realize that I have to change the
    text in the footer to read
    >>> differently. Don't ask why, please.
    >>>
    >>> Can I link to a bit of text, stored elsewhere,
    just like a photo or
    >>> file, that
    >>> will deliver the copyright info, just one simple
    set of text that I can
    >>> change
    >>> once and affect a global change on my large
    websites? I'd rather do it
    >>> with
    >>> text as opposed to a graphic.
    >>>
    >>> Any takers? It's late here in Las Vegas
    (12:31am) and the cat on my lap
    >>> won't
    >>> tell me if he knows how to solve this issue.
    >>>
    >>> Cheers all,
    >>>
    >>> Wordman
    >>>
    >>>
    >>
    >
    >

  • SQL Server 2008 reporting services reports just went blank even though I can still download excel pdf etc....

    I'm quite stumped.  All of my reports are suddenly blank. I see the icons for the reports, and I can even download the PDF by exporting to Excel of PDF.
    Can someone help explain what may have happened to my instance and how to correct this?

    Hi JMitchell1,
    According to your description, your reports become blank when you access them on Report Manger. Right?
    In this scenario, does the exported file also show you a blank report? Since you can access the Report Manager successfully and open report means the report server is still working. It can be running out of memory. You can open the report with Report
    Builder to see if the report is damaged. Also try to restart report server and reconnect the database. If it's still not working, you may need to redeploy your reports.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou 

  • Do you know a Excel API?

    Hi everybody !!!!
    Do you know a good Excel API ? In fact I have some figures in my program Java. And I would like to transfer these figures in the Excel file, because I want to display some graphs with these data.
    Thanks !!!

    Try the tool at
    http://simtel.net/product.php[id]60701[sekid]0[SiteID]simtel.net
    With it you can use Axcel as a regular COM object.

  • Can BEA JMS C APIs be used to communicate with other JMS servers?

    Hello,
              Can BEA JMS C APIs be used to communicate with other JMS servers?
              If yes, is it enough to download, compile the JMS C APIs, and link the C applications to the libraries (shared or static) produced?
              If not, can you point me to an open source framework that can be used to enable C applications to communicate with JMS servers?
              I have HP-UX server that has both C and Java compilers (Java 1.5).

    The JMS C client is a pre-compiled library - we don't supply the source - so C applications link to it. If I recall correctly, there is an HP version. The C client library is actually thin layer that uses JNI to directly invoke a Java JMS client running in an embedded JVM.
              The library might work with other vendor's Java JMS clients, but BEA does not officially support this usage.
              Tom

  • Can i use Adobe Muse to build blogger (blogspot) templates?

    Can i use Adobe Muse to build blogger (blogspot) templates?

    People have reported success doing that, take a look at this thread - http://forums.adobe.com/message/5652769#5652769.
    You may also be interested in watching the following Jam sessions if you are looking for integrating a Blog into your Muse website.
    - Embedding and Styling a Tumblr Blog - https://my.adobeconnect.com/p3nvze5zz31
    - Integrating Blogs, Social Content and More In  Muse - https://my.adobeconnect.com/p14sg16wtlw
    We also have a video for Advanced CMS Integration that may be helpful - http://tv.adobe.com/watch/muse-feature-tour/muse-advanced-cms-integration/.
    Many more links to such recordings of interesting events can be found here - http://muse.adobe.com/events.html.
    Thanks,
    Vinayak

Maybe you are looking for