VB.net: Auto Scroll a Listbox

Auto scroll listbox in VB.net

Do you want to make a Listbox in VB.net auto scroll to the last value? I use this to log and show the progress of what my application is currently doing. Amazingly ugly UI I made. The first line just add date and the current time to the Listbox. The second line is the one … Read more

JavaScript: Show the current year (4 digits)

Use Javascript to show the current year in a HTML-document to display the date. Remember that Javascript is using the clients time-settings. . JavaScript Code: <script>document.write(new Date().getFullYear());</script> Output: 2019 And that’s everything needed to make this magic happen.