Change comma with dot in writing measuremen​t file

Hello,
I'm using the write to measurement file vi for save some data. I don't manage to read the text file in Matlab, I guess is because the decimal separator is the comma.
Is there a simple way in LabVIEW for set the decimal separator to be the dot instead of the comma? (in the writing to measurement file vi)
now the data is like this 56,897 but I would like it in the format 56.897
Thanks
Solved!
Go to Solution.

It has been working fine inside LabVIEW, but when I make the .exe application and start recording it register the text file with the comma separator again. So I guess it was just a temporary setting of LabVIEW.
Is there a way to have the dot separator also when I register the data file from the application .exe?
I don't find a way to set it in the "Write to measurement file"..
Regards

Similar Messages

  • Time change to stop and start writing to a file

    Guys,
    I'm trying to stop writing to a file at 12:00 AM and start writing to a new file when it gets to this time. I also need to start writing to the same directory. How can I do this. I beleive I know how to do it with a close and open file but i'm still learning these functions. Attached is my code.
    Thanks
    Attachments:
    Test1.vi ‏141 KB

    You were getting help on this problem in your other thread. It usually is best to continue the active one rather than start an all new one for the same problem. If the answer(s) you get in the other thread don't help, specify why and the original poster, or others will usually add detail to their answers. Starting a new thread usually results in repeated work, as the respondents may not have seen what was proposed in the other thread.
    P.M.
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • How to save changes developed with LR to the original photo file?

    Once changes developed I want to save them onto the original file. I export the selected image (original photo + changes) with overwriting choice but the result file has only the original and not the changes

    Presumably we’re talking about something other than RAW files, here, right?
    LR is not Photoshop.  I don’t think you can overwight your original during an Export because it is in use.  LR isn’t really set up to do this, anyway.  LR is non-destructive so it would apply whatever settings it has for an image to the image and display the result for you.  If you overwrote the image, then LR would still apply the settings it had for the original image to the new image with the same name and would effectively be applying the settings twice, which is not what you want. 
    What you probably want to do is export to a subfolder and then re-import those images so what you’ve exported are distinct from your originals.  If you really don’t want your originals after the export, just delete the originals and leave the exported images that you’ve already imported.

  • Replace comma with dot

    Dear all,
    I'm getteing mad with the following issue and need your help.
    I'm working at a PDF-Form including a table. The Values in this table create a datamatrix. This works fine for now.
    Here is my issue: The values in the table are numbers like 12.2 but also 12 or 9 but maximum two digits in front of the "."(dot). Seperation character should be a "." In Germany there is the ","(comma) instead of the "." at the number block.
    For better usability it would be nice having a java script that replaces onBlur all "," with a ".". So I don't have to change the keyboard language to English.
    Is this possible and if yes, how?
    I am an absolutely noob on javascript, so please be patient and do not expect any specific knowledge.
    What I tried (menue is translatet from the German version, I don't know if it is correct:
    onBlur.replace(",", ".");
    I put this in (right click on form) -> properties ->action ->
    add action: on mouse exit
    choose action: run JavaScript
    click on "add"
    Then I copied the terminus from the top in the opening window. Ready (at least this was my thought...)
    It dit not work, now I nedd your help.
    Thank you for your hints, your help and your time.
    Adobe Acrobat XI (German) on Windows 7 64bit (also german).

    ***************SOLVED**********************
    The solution was much easier than expected:
    when you open "properties" by right clicking on the form, go to "validation" NOT "action" (make sure you are in the form editing mode: "tools" -> "forms" -> "edit")
    then chose "run user defined script" and click on "edit"
    type in the following line:
    event.value = event.value.replace(/\,/g, ".");
    click "OK" and then "Close"
    Then you are done. Now, when you leave the form field Acrobat checks if there is a comma and replaces it with a dot.
    For me this was the easiest way to make it work.
    ***************SOLVED**********************
    ***************GELÖST**********************
    Die Lösung war einfacher als gedacht.
    Öffnet man "Eigenschaften" mit einem Rechtsklick auf das Formular, muss man "Validierung" und nicht "Aktionen" auswählen. (man muss im Formulareditierungsmodus sein: "Werkzeuge" -> "Formulare" -> "Bearbeiten")
    dann unter "Benutzerdefiniertes Validierungsskript ausführen" auf "Berabeiten" klicken.
    Im Editorfenster folgende Zeile eingeben:
    event.value = event.value.replace(/\,/g, ".");
    Über "OK" und "Schließen" zurück zu den Eigenschaften
    Das war's. Nun ersetzt Acrobat im Formularfeld jedes Komma durch einen Punkt.
    ***************GELÖST**********************

  • Issue with Reading and Writing to a File

    Hello all,
    I'm having trouble when I run the following example;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.BufferedReader;
    import java.io.PrintWriter;
    import java.io.IOException;
    public class ReadWriteTextFile {
        private static void doReadWriteTextFile() {
            try {
                // input/output file names
                String inputFileName  = "README_InputFile.txt";
                String outputFileName = "ReadWriteTextFile.out";
                // Create FileReader Object
                FileReader inputFileReader   = new FileReader(inputFileName);
                FileWriter outputFileReader  = new FileWriter(outputFileName);
                // Create Buffered/PrintWriter Objects
                BufferedReader inputStream   = new BufferedReader(inputFileReader);
                PrintWriter    outputStream  = new PrintWriter(outputFileReader);
                outputStream.println("+---------- Testing output to a file ----------+");
                outputStream.println();
                String inLine = null;
                while ((inLine = inputStream.readLine()) != null) {
                    outputStream.println(inLine);
                outputStream.println();
                outputStream.println("+---------- Testing output to a file ----------+");
                outputStream.close();
                inputStream.close();
            } catch (IOException e) {
                System.out.println("IOException:");
                e.printStackTrace();
        public static void main(String[] args) {
            doReadWriteTextFile();
    }Im getting the error
    java.io.FileNotFoundException: README_InputFile.txt (The system cannot find the file specified)However the file README_InputFile.txt is definately in the same folder as the class file. So why is this not working?
    Any help would be greatly appreciated.
    Jaz

    Sorry you've lost me. All I get are error messages
    when I try to compile that statement. What am I
    missing?I don't know, it should work:
    import java.io.*;
    public class Test {
    public static void main(String[] args) throws
    IOException {
    System.out.println(new
    File(".").getCanonicalPath());
    Sorry I forgot to add the "throws IOException" bit. It works and told me that the path is;
    C:\Documents and Settings\Jaz\workspace\Tutorial
    I've amended the code so it now looks like this;
    String inputFileName  = "C:/Documents and Settings/Jaz/workspace/TutorialREADME_InputFile.out";
                String outputFileName = "C:/Documents and Settings/Jaz/workspace/TutorialReadWriteTextFile.out";but I still get the error below even though the files are present in that directory;
    IOException:
    java.io.FileNotFoundException: C:\Documents and Settings\Jaz\workspace\TutorialREADME_InputFile.out (The system cannot find the file specified)

  • After recovery, admin password filled in with "dots" and cannot delete or change it

    Hello.
    I ran the Windows 7 updates yesterday, but only the necessary ones.  I did not install any of the optional ones.  After the updates completed, I turned the computer on and it was stuck in a loop cycle - starting windows, then the admin password log in box came up.  The box was fiiled in (with "dots" but too many to represent my password) and the screen just quickly flashed back & forth between the log in screen and "password incorrect".     I tried to switch user, and it flashed back to the admin log in. 
    I did a system recovery to factory defaults (after backing up all data)  using the recovery discs.  After recovery, the "Set a password for account" screen comes up with the box below "Type a password" filled in completely with dots.  I cannot erase them with the backspace or delete keys.  If I highlight it and then try erase it with backspace or delete, the cursor just moves to the right hand side of the password box, but it still doesn't delete the faulty password "dots" so that I can change it. 
    I tried to reboot by holding in the power button and then turning it back on.  After selecting country & language again, the same password screen come up.
    It is stuck!  Any help would be greatly appreciated!  I computer I have  is the HP TouchSmart 310 PC 1155-Y.
    Thank You!
    This question was solved.
    View Solution.

    That is curious with a Recovery.  First, try to reset the password using NTPassword.  Make the CD, boot to it  following the directions.  If that does not solve the signon problem, consider installing the OS from a regular Windows 7 disk of the same version, using the key from the COA sticker.
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • How to change the comma and dot for Pricing

    Dear All,
    As per the requirement, we need to change the Comma as dot and dot as comma for all the condition type values.
    Please let me know where we have to do this setting.
    Also explain, what is the impact on FI after this change.
    Regards,
    Mullairaja

    Hello,
    I hope you are talking about decimal notation in User defaults. You may choose the options in transaction SU3->Defaults->Decimal Notation.
    This is user-specific settings and there will not be any impact on applications.
    Thanks,
    Venu

  • The cursor has changed to a dot with a circle around it; how can I get my normal cursor back?

    The cursor in the main part of Firefox has changed to a dot with a circle around it. This only occurs in Firefox and only in the page display area. I still have the arrow in the tool bar and tabs area. When moving the cursor around in the display area the dot/circle is accompanied by a blinking arrow.

    It's the quicktime plug-in causing the problem. If you disable it, your cursor will return to normal. Happened to me, and fixed it by doing that.

  • Sales order purchase order field is updated with dots in data base table

    HI
    we have problem in  Production when sale order created
    P O date is update with dots and these dots  we are unable to see at screen and data base table
    we go t change mode of the order and delete the P O field with back space (button)  and saving the order
    when we see the change log of the order
    there it is sowing
    Old value            =        "       .   .     "           
    New Value         =       " 00.00.0000"
    Can any one give the suggetions to come out of this problem
    This is we have noticed with only two customers
    Thanks and regards
    Kishore
    Edited by: DevarapalliKK on Oct 23, 2010 8:43 PM
    Edited by: DevarapalliKK on Oct 23, 2010 8:44 PM

    Hi Kishore,
    Two things could have happened:
    1) Since this is happening with only two customers - I am sure it has got to do with some custom code on your system which is causing this problem. I 'd suggest you to create a new order with all the fields
    2) It could be a bug with SAP- might want to check relevant SAP Notes. ( But this could not be a reason, if yes should have had the same prob with all cusotmers)
    regards
    sadhu kishore

  • HR master data change export with Interface-Toolbox PU12

    Hello out there !
    I implemented a HR master data change export with PU12 at one of my customers.
    It works fine - with one little problem:
    It is only possible to export one period (actual or selected).
    Is there any possibility to export more than one period (also periods in the future) ?
    The request is to export also master data with validity start date in a future period.
    Thanks for any help.
    Greetings, Holger Mächtig

    Dear Holger,
    I am very curious about your problem last year. Is it possible to do a future export with PU12?
    I am now working with PU12 for the first time and I have set up a export file in PU12.
    But when I am doing an update without filling the name for the file layout I have the following error:
    "An error occurred when opening the "export file"
    When I am filling the file layout I have the following error:
    "An error occurred when writing to an export file" (Error Number E107).
    "File processing: end of file".
    When I am not doing an update the export file runs and seems right.
    Do you know what I am doing wrong?
    Thanks in advance!
    Kind regards,
    Yvette

  • Hi when i am giving credit card number in payment gatway it should change to password dots , how it is possible, which plug in i have to use

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/891259]]</blockquote>
    Hi when i am giving credit card number in payment gatway it should change to password dots , how it is possible, which plug in i have to use for this feature...

    Hi vishwanath123-
    Most websites when asking for your credit card do encrypt your password, but it is not based on a plugin. The website is responsible for securely receiving and storing your data. If you do not trust the website is secure, be careful with your data.

  • Please help with "Error writing the project file. The specified module could not be found." error.

    I am a student.  I've been trying to install and use Visual Studio 2013 Professional for three weeks now and I cannot get it to work.  I am now two weeks behind in my Visual Basic class.  I've installed, uninstalled, ran the repair option... 
    I've tried everything I know how to do.  I just spent 45 minutes on the phone with Microsoft, was transferred four times and finally told I will have to use the forums to find an answer.  I'm almost completely out of patience with this.
    I got the software through the Dream Spark program as a student.  I installed it with the web installer and it appeared to install fine.  When I try to create a new project, I get the error:  "Error writing the project file.  The
    specified module could not be found."
    When I exit the application, I also get:  "The automatically saved settings file 'c:\users\user\documents\visual studio 2013\Settings\CurrentSettings-2015-02-02.vssettings' is not available for write.  You can change this file on the 'Import
    and Export Settings' Tools Options page."
    Please tell me you can help.

    Hi,
    could you please try the points mentioned here:
    http://social.msdn.microsoft.com/Forums/en-US/vssetup/thread/0376db8f-4761-4ae5-9af2-98c53216318a#VS_IDE_unexpected_problems to eliminate the possible cause of your issue?
    Please update the result in the forum after you try the method above!
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • "Flush right with dots" function????

    Hello all...
    I'm creating a table (a street index like in the back of a Thomas Guide). In each cell I want the street name aligned on the left side of the cell followed by a series of dots and then the page aligned to the right side of the cell. It would look like this:
    A St...............5145
    Anyone know a command or function for this? I know in Word Perfect it is "Flush right with dots"
    Thanks!!!

    TimB6932 wrote:
    I'm creating a table (a street index like in the back of a Thomas Guide). In each cell I want the street name aligned on the left side of the cell followed by a series of dots and then the page aligned to the right side of the cell. It would look like this:
    A St...............5145
    Hi Tim,
    The dotted line joining the two is called a Leader, and is part of the definition of the tab stop defining the location of the page number.
    In Numbers Tab properties are set in the Text Inspector.
    Click on the ruler to set a tab location (in the illustration the new tab is 1/8 inch left of the right margin on this 4 x 6 inch page).
    Open the Text Inspector and click on the Tab button.
    Select on the tab you want to format in the list at the bottom of the Inspector window.
    Click the Right radio button to change it to a Right tab (the symbol on the ruler will reverse to point the direction shown above).
    Choose one of the three Leader styles from the pop-up menu.
    Then drag the Tab maerer on the ruler 1/8 inch to the right to place it at the right margin.
    In the document, enter the street name, press tab, enter the page.
    Regards,
    Barry

  • Change Notification with C#

    I am trying to get a test application to work using Oracle Change Notification with C#, but I am not receiving the callback notification in my application. Oracle DB version is 11.2.0.1.0. Oracle.DataAccess v.2.112.30. I can confirm the query gets registered in Oracle by viewing SYS.USER_CHANGE_NOTIFICATION_REGS and SYS.USER_CQ_NOTIFICATION_QUERIES. However, nothing ever appears in SYS.DBA_CHANGE_NOTIFICATION_REGS.
    The registration persists until I commit a transaction on the table. The registration disappears after a few seconds after the commit and my application does not received the notification.
    I have made sure my computer is listening on the correct port and have even tried turning off any firewall that could be blocking the port.
    I do have GRANT CHANGE NOTIFICATION to MYSCHEMA, GRANT EXECUTE ON DBMS_CHANGE_NOTIFICATION TO MYSCHEMA, and the JOB_QUEUE_PROCESSES is set to 1.
    Questions:
    1) Should the registration be visible in SYS.DBA_CHANGE_NOTIFICATION_REGS and, if so, what could be causing it not to be when it is visible in SYS.USER_CHANGE_NOTIFICATION_REGS and SYS.USER_CQ_NOTIFICATION_QUERIES?
    2) What could be causing the registration to disappear after a commit?
    3) What could be causing the failure of the notification to my application?
    Here is the C# code I am using and it is basically the same as from the Oracle website:
    using System;
    using System.Threading;
    using System.Data;
    using Oracle.DataAccess.Client;
    namespace NotifyTest
    public class Program
    public static bool IsNotified = false;
    public static void Main(string[] args)
    string constr = "User Id=mySchema;Password=myPassword;Data Source=myOracleInstance";
    OracleDependency dep = null;
    try
    using (var con = new OracleConnection(constr))
    Console.WriteLine("Registering query...");
    var cmd = new OracleCommand("select * from mySchema.NOTIFY_TEST", con);
    con.Open();
    OracleDependency.Port = 1005;
    dep = new OracleDependency(cmd);
    dep.OnChange += OnMyNotificaton;
    int queryRegistered = cmd.ExecuteNonQuery();
    // If oracle returns -1, then the query is successfully registered
    if (queryRegistered == -1)
    Console.WriteLine("Query Registered...");
    Console.WriteLine("Listening for Callback...");
    else
    Console.WriteLine("There was an error...");
    catch (Exception e)
    Console.WriteLine(e.Message);
    // Loop while waiting for notification
    while (IsNotified == false)
    Thread.Sleep(100);
    public static void OnMyNotificaton(object sender, OracleNotificationEventArgs arg)
    Console.WriteLine("Table change notification event is raised");
    Console.WriteLine(arg.Source.ToString());
    Console.WriteLine(arg.Info.ToString());
    Console.WriteLine(arg.Source.ToString());
    Console.WriteLine(arg.Type.ToString());
    IsNotified = true;
    }

    Just wanted to provide an update as to how I resolved this issue. I changed my Oracle.DataAccess.dll from v.2.112.3.0 to v.2.112.1.2 and it works fine.

  • Pages symbol what is it? looks like lollipop vertical line with dot on end?

    trying to migrate from old pages in I work to new.  totally lost.  see a symbol in my document looks like a vertical line - with dot at top.  is one line tall. can't make it go away.
    What is it?  What does it do?  Had some shapes in the document - until I found what I really wanted - text boxes.  had devil of a time getting rid of shapes, still can't get rid of mystery lollipop.

    You seem to be supplying all your own answers, why not ask yourself?
    If they have an anchor their object placement is:
    Format > Arrange > Object Placement > Move with Text
    Change it to:
    Stay on Page
    Which is the equivalent of the old Floating.
    Peter

Maybe you are looking for