QT QML how to convert milliseconds to time hh:mm:ss:zzz?milliseconds to time in javascriptHow do I calculate someone's age in C#?Calculate relative time in C#How to return only the Date from a SQL Server DateTime datatypeHow do you get a timestamp in JavaScript?How to get the current time in PythonConverting string into datetimeHow do I get the current date and time in PHP?Daylight saving time and time zone best practicesHow to get the current date/time in JavaGet current time in milliseconds in Python?

Is it grammatical to use "car" like this?

Restoring order in a deck of playing cards (II)

What is a simple, physical situation where complex numbers emerge naturally?

Opposite of "Squeaky wheel gets the grease"

Should we freeze the number of people coming in to the study for Kaplan-Meier test

Explain Ant-Man's "not it" scene from Avengers: Endgame

Creating Fictional Slavic Place Names

What people are called boars ("кабан") and why?

The term for the person/group a political party aligns themselves with to appear concerned about the general public

What is the correct expression of 10/20, 20/30, 30/40 etc?

How can I offer a test ride while selling a bike?

You've spoiled/damaged the card

What is the right way to float a home lab?

Rotated Position of Integers

Does any lore text explain why the planes of Acheron, Gehenna, and Carceri are the alignment they are?

How to detach yourself from a character you're going to kill?

What happens if you do emergency landing on a US base in middle of the ocean?

Imperfective Aspect in German "not since" constructions

Is it possible for people to live in the eye of a permanent hypercane?

Why does a helium balloon rise?

Is there a practical difference between different types of Berachos?

Did thousands of women die every year due to illegal abortions before Roe v. Wade?

Is there any Biblical Basis for 400 years of silence between Old and New Testament?

Why does MS SQL allow you to create an illegal column?



QT QML how to convert milliseconds to time hh:mm:ss:zzz?


milliseconds to time in javascriptHow do I calculate someone's age in C#?Calculate relative time in C#How to return only the Date from a SQL Server DateTime datatypeHow do you get a timestamp in JavaScript?How to get the current time in PythonConverting string into datetimeHow do I get the current date and time in PHP?Daylight saving time and time zone best practicesHow to get the current date/time in JavaGet current time in milliseconds in Python?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















Is there a easy function in QT QML to convert milliseconds to a user readable time in the format hh:mm:ss:zzz ? I found tis documentation https://doc.qt.io/qt-5/qml-qtqml-date.html but i don't really understand how to use it in my case . Here is my code so far but it only displays seconds and millisenconds.



import QtQuick 2.8
import QtQuick.Controls 2.1


Rectangle
id: mapItem
anchors.fill: parent

property int count: 0


Timer
id: timer
interval: 100
running: true
repeat: true
onTriggered: count += 1


Text

text: (count / 10).toFixed(3)
font.pixelSize: 20
font.bold: true
font.family: "Eurostile"










share|improve this question






















  • Possible duplicate of milliseconds to time in javascript

    – folibis
    Mar 24 at 15:00

















1















Is there a easy function in QT QML to convert milliseconds to a user readable time in the format hh:mm:ss:zzz ? I found tis documentation https://doc.qt.io/qt-5/qml-qtqml-date.html but i don't really understand how to use it in my case . Here is my code so far but it only displays seconds and millisenconds.



import QtQuick 2.8
import QtQuick.Controls 2.1


Rectangle
id: mapItem
anchors.fill: parent

property int count: 0


Timer
id: timer
interval: 100
running: true
repeat: true
onTriggered: count += 1


Text

text: (count / 10).toFixed(3)
font.pixelSize: 20
font.bold: true
font.family: "Eurostile"










share|improve this question






















  • Possible duplicate of milliseconds to time in javascript

    – folibis
    Mar 24 at 15:00













1












1








1








Is there a easy function in QT QML to convert milliseconds to a user readable time in the format hh:mm:ss:zzz ? I found tis documentation https://doc.qt.io/qt-5/qml-qtqml-date.html but i don't really understand how to use it in my case . Here is my code so far but it only displays seconds and millisenconds.



import QtQuick 2.8
import QtQuick.Controls 2.1


Rectangle
id: mapItem
anchors.fill: parent

property int count: 0


Timer
id: timer
interval: 100
running: true
repeat: true
onTriggered: count += 1


Text

text: (count / 10).toFixed(3)
font.pixelSize: 20
font.bold: true
font.family: "Eurostile"










share|improve this question














Is there a easy function in QT QML to convert milliseconds to a user readable time in the format hh:mm:ss:zzz ? I found tis documentation https://doc.qt.io/qt-5/qml-qtqml-date.html but i don't really understand how to use it in my case . Here is my code so far but it only displays seconds and millisenconds.



import QtQuick 2.8
import QtQuick.Controls 2.1


Rectangle
id: mapItem
anchors.fill: parent

property int count: 0


Timer
id: timer
interval: 100
running: true
repeat: true
onTriggered: count += 1


Text

text: (count / 10).toFixed(3)
font.pixelSize: 20
font.bold: true
font.family: "Eurostile"







datetime qml






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 12:20









Markus IppyMarkus Ippy

10210




10210












  • Possible duplicate of milliseconds to time in javascript

    – folibis
    Mar 24 at 15:00

















  • Possible duplicate of milliseconds to time in javascript

    – folibis
    Mar 24 at 15:00
















Possible duplicate of milliseconds to time in javascript

– folibis
Mar 24 at 15:00





Possible duplicate of milliseconds to time in javascript

– folibis
Mar 24 at 15:00












1 Answer
1






active

oldest

votes


















0














Tested on Felgo Web Editor, I have formatted the counter as intended, please see below!;



import Felgo 3.0
import QtQuick 2.5

App
id: app

Rectangle
id: mapItem
property int count: 0
Timer
id: timer
interval: 10 // i set to 10 for testing for faster results, but worked on 100 also
running: true
repeat: true
onTriggered: time.text = new Date(mapItem.count += 1).toLocaleTimeString(Qt.locale(), "hh " + "mm " + "ss " + "zzz") // you can change the formatting as you please


Text
id: time
font.bold: true
font.family: "Eurostile"





Remember if you were formatting dates, you would replace the toLocaleTimeString with toLocaleDateString or whatever is best for each use-case.



Update! if you are looking for counting in realtime, you probably want to change the count += 1 to += 16 also with the interval, unless the timer is not intended for realtime seconds



Hope this helps!






share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55323738%2fqt-qml-how-to-convert-milliseconds-to-time-hhmmsszzz%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Tested on Felgo Web Editor, I have formatted the counter as intended, please see below!;



    import Felgo 3.0
    import QtQuick 2.5

    App
    id: app

    Rectangle
    id: mapItem
    property int count: 0
    Timer
    id: timer
    interval: 10 // i set to 10 for testing for faster results, but worked on 100 also
    running: true
    repeat: true
    onTriggered: time.text = new Date(mapItem.count += 1).toLocaleTimeString(Qt.locale(), "hh " + "mm " + "ss " + "zzz") // you can change the formatting as you please


    Text
    id: time
    font.bold: true
    font.family: "Eurostile"





    Remember if you were formatting dates, you would replace the toLocaleTimeString with toLocaleDateString or whatever is best for each use-case.



    Update! if you are looking for counting in realtime, you probably want to change the count += 1 to += 16 also with the interval, unless the timer is not intended for realtime seconds



    Hope this helps!






    share|improve this answer





























      0














      Tested on Felgo Web Editor, I have formatted the counter as intended, please see below!;



      import Felgo 3.0
      import QtQuick 2.5

      App
      id: app

      Rectangle
      id: mapItem
      property int count: 0
      Timer
      id: timer
      interval: 10 // i set to 10 for testing for faster results, but worked on 100 also
      running: true
      repeat: true
      onTriggered: time.text = new Date(mapItem.count += 1).toLocaleTimeString(Qt.locale(), "hh " + "mm " + "ss " + "zzz") // you can change the formatting as you please


      Text
      id: time
      font.bold: true
      font.family: "Eurostile"





      Remember if you were formatting dates, you would replace the toLocaleTimeString with toLocaleDateString or whatever is best for each use-case.



      Update! if you are looking for counting in realtime, you probably want to change the count += 1 to += 16 also with the interval, unless the timer is not intended for realtime seconds



      Hope this helps!






      share|improve this answer



























        0












        0








        0







        Tested on Felgo Web Editor, I have formatted the counter as intended, please see below!;



        import Felgo 3.0
        import QtQuick 2.5

        App
        id: app

        Rectangle
        id: mapItem
        property int count: 0
        Timer
        id: timer
        interval: 10 // i set to 10 for testing for faster results, but worked on 100 also
        running: true
        repeat: true
        onTriggered: time.text = new Date(mapItem.count += 1).toLocaleTimeString(Qt.locale(), "hh " + "mm " + "ss " + "zzz") // you can change the formatting as you please


        Text
        id: time
        font.bold: true
        font.family: "Eurostile"





        Remember if you were formatting dates, you would replace the toLocaleTimeString with toLocaleDateString or whatever is best for each use-case.



        Update! if you are looking for counting in realtime, you probably want to change the count += 1 to += 16 also with the interval, unless the timer is not intended for realtime seconds



        Hope this helps!






        share|improve this answer















        Tested on Felgo Web Editor, I have formatted the counter as intended, please see below!;



        import Felgo 3.0
        import QtQuick 2.5

        App
        id: app

        Rectangle
        id: mapItem
        property int count: 0
        Timer
        id: timer
        interval: 10 // i set to 10 for testing for faster results, but worked on 100 also
        running: true
        repeat: true
        onTriggered: time.text = new Date(mapItem.count += 1).toLocaleTimeString(Qt.locale(), "hh " + "mm " + "ss " + "zzz") // you can change the formatting as you please


        Text
        id: time
        font.bold: true
        font.family: "Eurostile"





        Remember if you were formatting dates, you would replace the toLocaleTimeString with toLocaleDateString or whatever is best for each use-case.



        Update! if you are looking for counting in realtime, you probably want to change the count += 1 to += 16 also with the interval, unless the timer is not intended for realtime seconds



        Hope this helps!







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 24 at 17:36

























        answered Mar 24 at 17:24









        LdwellerLdweller

        150111




        150111





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55323738%2fqt-qml-how-to-convert-milliseconds-to-time-hhmmsszzz%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript