Other Posts

  • LV 2D Remove Duplicate and Sort

    LV 2D Remove Duplicate and Sort

    Relatively new tools for 2D Array Removing duplication and Sort       Read more

  • LV – File sort by Last Mod Date

    LV – File sort by Last Mod Date

    Showing a way to sort files in folder by Last Modified Date. The basic file tool only sorts by filename.   LabVIEW® is a National Instrument product This post is not connected or endorsed by any company. Created to spark ideas on the subject. Use at your own risk. Read more

  • PY3 with TKinter using the Grid-Row-Col method (not place,pack)

    In a previous post I showed similar GUI using place,pack . Now will show similar sample GUI (Graphical User Interface) using Python 3 and Tkinter with Grid,row,col method Widgets used Window Frame Labels Buttons Canvas Circle Frame Text ScrollBar Design layout Restart pressed (clears text and indicators – show that is was restarted pressing of… Read more

  • PY3 and TKinter GUI (place and pack)

    PY3 and TKinter GUI (place and pack)

    Example GUI with Python3 and Tkinter using Place and Pack (grid will be another post) Widgets used window canvas label button frame circle oval   Read more

  • Some Basic SQLITE 3 Tables operations

    Working at the database level with SQLITE3 in Python 3.7 Using :Memory: as a way to tryout interaction with the SQL command in SQLITE3 Two Tables TESTSTATION TS_LOCATION Key SQL used Create TABLE INSERT INTO SELECT  and with INNER JOIN(so data from two tables can be seen) DELETE FROM UPDATE Output from above (remember this… Read more

  • LV Queue showing two ways and effects

    LV Queue showing two ways and effects

    Using a simple simulated traffic light example to show two ways and effects when pressing button. More about seeing how queues work in two situations. The desired effect is when going from Green to Red it should go Yellow then Red. One is the Event Loop (which handle events like button pressing) adding to queue… Read more