Is there a problem with tdms and 64bit vista?

I have an executable developed on a vista ultimate 32bit platform and am trying to run it on a 64bit vista home edition.
the program writes and reads .ini files with no problem but it will not create and write to a TDMS file on the 64bit version
it works fine on vista 32bit
any thoughts?
- James
Using LV 2012 on Windows 7 64 bit

LabVIEW generates an error on the (open create) function  ( i cann't recall what the actual error is)
I also tried running the .exe in 32bit compatibility mode and no luck
I will see if the TDMS component exists
- James
Using LV 2012 on Windows 7 64 bit

Similar Messages

  • Is there a problem with IM and FaceTime as it won't recognise my Apple ID

    is there a problem with IM and FaceTime as it won't recognise my Apple ID?

    There are reports that iMessage and FaceTime are down.

  • I purchased 2 weeks before i phone 5 but there is problem with sleep and wake up button its not responding can anyone help me in this issue.

    i purchased 2 weeks before i phone 5 but there is problem with sleep and wake up button its not responding can anyone help me in this issue.

    You have a one-year hardware warranty & 90 days of free phone support. Take advantage of it, make an appointment at an Apple store or call AppleCare.

  • Is there a problem with FaceTime ,and if so when will it be rectified?

    Hi can you tell me if there is a problem with Face Time and if so when will it be rectified?

    There has been a problem with FaceTime for the last two days. Unfortunately we don't know when it will be fixed.

  • Are there any problems with Lion and Adobe CS5 ?

    I am wanting to upgrade to Lion but don't want to have the hassle of trying to fix any problems as I have heard some people had problems with earlier versions of Adobe Creative Suit and Lion and having recently moved I have no clue where my CS5 keys are so before doing so I want to know there will be no errors.
       Peoples experiences would be appreciated and many thanks.

    I have upgraded two Mac mini's which both have the Adobe Creative Suit Cs5 Acrobat, Illustrator, InDesign and Photoshop. I have had no issues regrding the upgrade, they just work.
    However I do have two user interface issues. InDesign the keyboard page up, page down keys no longer work as expected, they simply jump to the next screen, the workaround is to use a trackpad for the left hand and use two finger scrolling.
    The other is the arrow buttons in the vertical scroll bar no longer exist, so again the trackpad comes in for scrolling.
    This applies for almost all software and the finder.

  • Is there a problem with JMS and Weblogic?

              Hi,
              I am using JMS and Weblogic (Not Message Driven bean).
              My problem is that after some time my listeners disappears.
              I am sending them a message and instead of 6 listeners
              I get only 4 messages.
              So, My question is: Is there any problem working with JMS
              and Weblogic???
              Thanks,
              Tal.
              

    Too little information and a very vague question. Need more info.
              "Tal" <[email protected]> wrote in message
              news:[email protected]..
              >
              > Hi,
              > I am using JMS and Weblogic (Not Message Driven bean).
              > My problem is that after some time my listeners disappears.
              > I am sending them a message and instead of 6 listeners
              > I get only 4 messages.
              > So, My question is: Is there any problem working with JMS
              > and Weblogic???
              > Thanks,
              > Tal.
              

  • Is there a problem with JFrame and window listeners?

    As the subject implies, i'm having a problem with my JFrame window and the window listeners. I believe i have implemented it properly (i copied it from another class that works). Anyway, none of the events are caught and i'm not sure why. Here's the code
    package gcas.gui.plan;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.util.Hashtable;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import gcas.plandata.TaskData;
    import gcas.util.GCASProperties;
    import gcas.gui.planlist.MainPanel;
    * MainFrame extends JPanel and is the main class for the plan details window
    public class MainFrame extends JFrame implements WindowListener
         * the container for this window
        private Container contentPane;
         * a string value containing the name of the plan being viewed
        private String labelText;
         * a string value containing the name of the window (GCAS - plan list)
        private static String title;
         * an instance of JDialog class
        private static MainFrame dialog;
         * hashTable that correlates the task name to its id as found in the
         * plan
        private Hashtable taskNameToId = new Hashtable();
         * an instance of taskSetPane.  This is the current instance of taskSetPane
         * being viewed
        private PlanTaskSet currentPane;
         * instance of TaskData class.  Each instance will hold information on
         * an individual task
        private TaskData taskData;
         * hashTable containing instances of the taskSetPane class
        private Hashtable taskSetPanes = new Hashtable();
         * an instance of the OuterPanel class
        OuterPanel mainPanel;
         * an instance of the ButtonPanel class
        ButtonPanel buttonsPanel;
         * an instance of the LeftPanel class
        LeftPanel leftPanel;
         * an instance of the the GCASProperties class
        GCASProperties gcasProps;
        private static MainFrame thisPlanMain = null;
        private MainPanel planListMain;
         * constructor for MainFrame
         * @param frame the parent frame calling this class
         * @param locationComp the location of the component that initiated the opening of the dialog
         * @param labelText the name of the plan that is being viewed
         * @param title title of window
        private MainFrame(JFrame frame, Component locationComp, String labelText,
                String title)
            super(title);
            gcasProps = GCASProperties.getInstance();
            mainPanel = new OuterPanel(labelText, currentPane,
                    taskNameToId, taskSetPanes);
            leftPanel = mainPanel.getLeftPanel();
            System.out.println("LABLE: " + labelText);
            leftPanel.setMainPanelContents();
            buttonsPanel = new ButtonPanel(labelText, taskSetPanes,
                    taskNameToId, leftPanel);
            contentPane = getContentPane();
            contentPane.add(mainPanel, BorderLayout.CENTER);
            contentPane.add(buttonsPanel, BorderLayout.PAGE_END);
            this.addWindowListener(this);
            this.labelText = labelText;
            pack();
            setLocationRelativeTo(locationComp);
            this.setVisible(true);
            planListMain = MainPanel.getInstance();
            planListMain.setVisible(false);
        public static MainFrame getInstance(JFrame frame, Component locationComp, String labelText,
                String title)
            if (thisPlanMain == null)
                thisPlanMain = new MainFrame(frame, locationComp, labelText,
                        title);
            return thisPlanMain;
        public static MainFrame getDialogObject()
        {   //from the location this is called (ButtonPanel), this will never
            //be null
            return thisPlanMain;
        public static void setABMDDialogNull()
            thisPlanMain = null;
         * returns an instance of MainFrame
         * @return MainFrame instance
        public static MainFrame getDialog()
            return dialog;
         * setter for MainFrame
         * @param aDialog a MainFrame instance
        public static void setDialog(MainFrame aDialog)
            dialog = aDialog;
         * window opened event
         * @param windowEvent the window event passed to this method
        public void windowOpened(WindowEvent windowEvent)
         * The window event when a window is closing
         * @param windowEvent the window event passed to this method
        public void windowClosing(WindowEvent windowEvent)
            gcasProps.storeProperties("PlanList");
            MainPanel abmd = MainPanel.getInstance();
    //        planMain = this.getDialogObject();
    //        if(planMain != null)
    //            planMain.setVisible(false);
    //            abmd.setVisible(true);
    //            planMain.setABMDDialogNull();
            if(this.getDialogObject()!= null)
                abmd.setVisible(true);
                setVisible(false);
                setABMDDialogNull(); 
         * Invoked when the Window is set to be the active Window
         * @param windowEvent the window event passed to this method
        public void windowActivated(WindowEvent windowEvent)
         * Invoked when a window has been closed as the result of calling dispose on the window
         * @param windowEvent the window event passed to this method
        public void windowClosed(WindowEvent windowEvent)
         * Invoked when a Window is no longer the active Window
         * @param windowEvent the window event passed to this method
        public void windowDeactivated(WindowEvent windowEvent)
            System.out.println("HI");
         * Invoked when a window is changed from a minimized to a normal state
         * @param windowEvent the window event passed to this method
        public  void windowDeiconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
           System.out.println("Invoked when a window is changed from a minimized to a normal state.");
         * Invoked when a window is changed from a normal to a minimized state
         * @param windowEvent the window event passed to this method
        public  void windowIconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
    //        System.out.println("Invoked when a window is changed from a normal to a minimized state.");
    }anyone know whats wrong?

    It turned out that my ide was running the old jar and not updating it, so no matter what code i added, it wasn't being seen. Everything should be fine now.

  • Is there a problem with IOS7 and AT&T Nav.

    My At&amp;T Navigation does not load after I downloaded IOS7.

    There are reports that iMessage and FaceTime are down.

  • Is Verizon going to acknowlege the problems with FIOS and Windows Vista

    For months now, I have been reading the numerous problems Fios internet customers are having with Fios internet/Actiontech Router and Windows Vista and there has been no acknowledgement by Verizon of this current major issue.
    I have also experienced the exact same issue for months now since I switched to Verizon FIOS internet. Previously I had Comcast HSI using my Windows Vista laptop.  I had their service for over a year and I NEVER has a problem with the Windows Vista globe icon disappearing and loosing internet connection. The Globe always stayed on and never went away and I never lost connection when I had Comcast
    I had Verizon FIOS installed last September with my Windows Vista computer and my wireless internet connection started to drop from day 1 and it has been a daily occurrence for over 5 months now.  It has gotten so bad, I have had to hardwire my laptop to to be able to use the internet uninterrupted.
    This is what daily scenario is:
    When I turn on my laptop(with Windows Vista, I can initially get full internet access(with the globe on and it says "Local and internet). After about 10 minutes or less, the globe switches to "local only" and I can still get  internet access.  After another 5 or so minutes, a large X covers the globe and I lose internet connection entirely. The actiontech router wireless signal is no longer listed as one of the wireless networks.  The only way for me to regain internet access is either to restart my laptop or reboot the actiontech router.
    Numeorus posts here, over by DSL forums(Broadband Reports),Microsoft's website and a few othere websites detail this issue.
    I am extremely shocked and surprised that Verizon has not tried to fix this issue by working with both the makers of the Actiontech Router as well as Microsoft to find out what the problem is and how to fix it.
    I would just like to reiterate I strongly believe this is primarily a FIOS internet issue since I previously had Comcast HSI for over a year with the same Windows Vista laptop and I NEVER had that problem. Also,  I can connect to my neighbors wireless connection(she uses Comcast HSI) and when I do, the globe stay on all the time on my computer and the internet does not lose connection.
    I know that there are a couple of Verizon employees here. Please tell the higher ups who handle FIOS internet that this is a major issue that needs to be resolved as soon as possible.
    P.S: Please don't tell me to go by my own router because then, I will have to deal with the issues of setting it up to work with Fios TV and the related VOD, widgets, remote DVR compatability issues to deal with. I don't think I can deal with the additional headaches. 

    FIOS is short for fiber optics.  fiber optics is different technology than DSL.   
    With that said, if you search the Microsoft databases for vista issues with fiber optics, (CURRENTLY THERE IS ONLY ONE PROVIDER OF FIBER TO THE HOUSE, that being Verizon, so yes you can also search Vista issues with verizon and\or fios) and you will find that Microsoft already acknowledges this issue with their software.  AND they offer you a fix.
    cjacobs001

  • Is there still problems with cs6 and  hidpi windows laptops?

    I consider to buy a windows laptop with a high resolution (3200x1800) but only if i can get photoshop, illustrator and indesign work??

    What is it that you are asking? There never was HighDPI support in CS6 on the Windows side and there never will be. Nobody goes back and reworks 3 year old software just because the hardware industry decided that HD monitors are no longer good enough...
    Mylenium

  • Is there a problem with Airport and Mountain Lion?

    Since upgrading to Mountain Lion, I am having all kinds of trouble connecting to the web. My connection drops and my network will not relaunch? Is anyone else having this problem?
    Thanks
    Chuck

    It wasn't Mountain Lion, it was my moving my stuff to a place that had a internet address conflict. I redid all of mine, and now is working fine.

  • Network problems with TC and windows vista

    When I try to transfer data from my laptop using Windows vista to the TC, I get an network error message after a few seconds saying the computer is not connected to the network. I have no problems transferring small files (that take less than a few seconds to transfer) and the external router, my laptop and the TC are located close to each other. I tried almost everything but i don't know what the problem is.
    Any suggestions?

    Hello Bastiaandp. Welcome to the Apple Discussions!
    There is quite a bit of dialogue going around the Internet about Windows Vista & Windows 7 when it comes to file sharing with either the Apple AirPorts or Time Capsules. Most of this dialogue seems to be revolving around the version of SMB used by the newer Microsoft OSs and that used by these routers for files sharing.
    A number of suggested solutions have been proposed, but none at this time, have provided a "permanent" solution. I too have experienced this same issue and have tried a number of these solutions. What finally worked for me was to make sure that: 1) The Workgroup name used on my Win 7 computer exactly matched the Workgroup name setting on the Disks > File Sharing tab within the AirPort Utility for my base station, & 2) That this name did NOT include any spaces. In my case, I used WORKGROUP for both settings.
    Since doing so over six months ago, I have had no problems copying/moving files between my PC and the AirPort, regardless of their size.

  • Problems with iTunes and Windows Vista

    I just got a new dell computer that came with Windows Vista. I'm new to Vista, and just downloaded iTunes. I was able to add my music and it will play, but I can't edit track information. I downloaded iTunes from the administrator account, so I don't know what the problem is or how to fix it. Please help!!

    For windows vista, like someone suggested, it may change your permission for editing a file and appear grey screen. As such, the following step might solve this problem.
    Go to "Computer", go to your portable hard drive, right click and go to "Properties". Select "Security" Under the "group and user names" choose your user name. To change the permission, choose "Edit" Under permission column, choose "Full Control". After this you may able to edit song information in your itunes.

  • Extreme Music - Problems with Driver and Installation

    Hi guys,
    ?After the my computer has given up it's life on the last friday, I bought a new one and wanted yesterday to install everything like OS, driver and so on.
    I started the install of the driver(which is the version from the creative website , released in july 2009) for my soundcard, the X-FI Extreme Music and when the information was given, that the Windows drivers will be updated and it will take some minutes, something happend:
    At my first try a bluescreen appered. You can imagine, that I was shocked to see a bluescreen on my new pc after an hour.
    I run CCleaner to remove some rests of the "maybe installed" driver and started it again. There was no bluescreen, but the mouse freezes and the setup does nothing anymore. I can close it with may keyboard, but the driver wasn't installed.
    After a new clean up with CCleaner I tried it again. I put out my cable of the mouse , so maybe this was the problem(ofc, WHY is there a problem with USB and PCI Cards ?). The installations works, no hang up or freezes. After a restart nothing happend. No sound. I looked at the hardware manager(do not know, whether it is the correct word, I'm german and have a german windows ) of windows and at audio, video and gamecontroller, there is a warning of not working driver.
    I remember, that on my old system the driver was titled something like
    X-FI Audio[800] or something like that.
    But here it was named with?
    X-FI Processor WDM
    I thing the system is installing the wrong driver.
    I looked at some forums , find the hint to change the PCI slot. I did it, but nothing changed.
    So, here are some information of my system configuration, maybe someone can help.
    Old system(where the soundcard works fine with no problems):
    - Athlon X2 4200+(socket was the "old" 939)
    - Asus A8N-E
    - DDR 400 RAM, 2GB
    - Windows XP Professional(32 Bit) with SP3
    New System:
    - Phenom II X4 80(quadcore)
    - Gigabyte MA790XT-UD4P
    - DDR3 333 RAM , 4GB
    - same OS as used in the old configuration
    Ofc all chipdriver were installed and seems to work fine.
    The onboard soundchip is disabled too.
    Hope for help ^^
    Mel
    Message Edited by Meldanor on 08--2009 2:20 [email protected]

    Hi guys,
    I'm very sry for the wasted bytes and bits in this forum, but my problem was solved some minuetes after this post >.< .
    I tried once again to install the driver and everything is working ... until yet, but only the future will show me, whether it will work or not ^^
    What I've done? Just a restart after the post.

  • Discussion Forum Portlet - Problems with JAVA and UTF8?

    Hi
    I installed the Discussion Forum Portlet successfully. It also seems that almost everything works fine. There's only a problem if I have new posts that include special German characters (Umlaute) like ä, ö, ü or special French characters like é, è or ç. They are saved correctly in the table but if you view the post the characters are not displayed correctly.
    Example
    input: ça va?
    result: ça va?
    I know that there are problems with Java and UTF8 Database. Is there a possibility to change this (bug)?
    Regards
    Mark

    Here's what I got. I don't see anything that helps but I'm kinda new to using SQL and java together.
    D:\javatemp\viddb>java videodb
    Problem with SQL java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver
    ] Syntax error in CREATE TABLE statement.
    Driver Error Number-3551
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in
    CREATE TABLE statement.
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcStatement.execute(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcStatement.executeUpdate(Unknown Source)
    at videodb.main(videodb.java:31)
    D:\javatemp\viddb>

Maybe you are looking for