• Solutions
    • FERC XBRL Reporting
    • FDTA Financial Reporting
    • SEC Compliance
    • Windows Clipboard Management
    • Legato Scripting
  • Products
    • GoFiler Suite
    • XBRLworks
    • SEC Exhibit Explorer
    • SEC Extractor
    • Clipboard Scout
    • Legato
  • Education
    • Training
    • SEC and EDGAR Compliance
    • Legato Developers
  • Blog
  • Support
  • Skip to blog entries
  • Skip to archive page
  • Skip to right sidebar

Friday, June 01. 2018

LDC #87: Using Progress Bars

Legato is an interpreted language, but even so, it performs quite quickly. Most scripts will execute within a second or so, even if it’s the script contains relatively complex HTML parsing or something similar. However, occasionally there are scripts that iterate over extremely large data sets, or work with file IO, or really do anything that can take a long time. If the script is just running, unless you put up some sort of a progress bar, it might look like the application has frozen to the user. Therefore, it’s really important to put up a progress bar to let the user know what’s going on with the script. I’ve put together a simple example script of a progress bar below, but let’s talk about how to use one first.

Continue reading "LDC #87: Using Progress Bars" »
Posted by
Steven Horowitz
in Development at 18:12

Monday, May 28. 2018

SEC Proposes FAIR Act Rules to Promote Research Reports on Investment Funds

On May 23, 2018, the SEC proposed new rules and amendments that would promote research on mutual funds, exchange-traded funds, registered closed-end funds, business development companies, and similar investment funds. These changes would reduce obstacles often encountered in providing research on investment funds by aligning the treatment of such reports with research on other public entities. The Congressional mandate of the Fair Access to Investment Act of 2017 (FAIR ACT) underlies the SEC’s actions in proposing these changes.

Continue reading "SEC Proposes FAIR Act Rules to Promote Research..." »
Posted by
The Novaworks Team
in SEC, SEC Filing Help at 13:48

Friday, May 25. 2018

LDC #86: Uncovering the Storage Vault

Computers are amazing at creating things like photos, videos, papers, books, Powerpoint presentations, and the ultimate combination of all of the above: Grumpy Cat memes. An essential but often invisible part of computers is the storage space where all of this stuff goes: hard drives, network drives, and other physical storage space. These things are required to make your computer work the way it should, but they do a very good job at not calling attention to themselves. However, knowing that storage spaces exist and how you can interact with them can help you later on when you want to create programs and scripts that require certain types of storage to be available.

 

Continue reading "LDC #86: Uncovering the Storage Vault" »
Posted by
Joshua Kwiatkowski
in Development at 16:17

Friday, May 18. 2018

LDC #85: Math Functions in Legato

For this week’s blog we are going to create a simple calculator using Legato. Legato offers a wide variety of math functions that we can use to program the calculator. Before we get started coding, let’s think about the parts of the script we will need. First there will need to be a user interface. In our case, a dialog works perfectly. Secondly, we need to have a way to store operands, and a floating point number is good choice here. If we use only an integer the user cannot do decimal math. Finally, we will need to have operation processing. For this we will use Legato’s math functions. To begin I am going to set up the basics of the dialog, and we can add the processing together.

Continue reading "LDC #85: Math Functions in Legato" »
Posted by
David Theis
in Development at 16:58

Monday, May 14. 2018

SEC Launches Additional Investor Protection Search Tool

The SEC announced on May 2nd that it will launch an additional online search tool that will help investors in researching whether persons trying to sell them investments has a judgment or order against them in an enforcement action. This new tool, the SEC Action Lookup for Individuals (SALI), is intended to assist the public in making informed investment decisions and avoiding financial fraud. Continue reading "SEC Launches Additional Investor Protection..." »
Posted by
The Novaworks Team
in Investor Education, SEC at 15:06

Friday, May 11. 2018

LDC #84: Dialog Boxes Part III — List Boxes

Allowing the user to select items or review lists of data is fundamental to many interfaces. For one or two items, radio buttons or check boxes can work, but for more complex data, a list box can be a good choice. In this blog, I will cover the ‘listbox’ common control, one of many methods of presenting and managing lists of data.

Continue reading "LDC #84: Dialog Boxes Part III — List Boxes" »
Posted by
Scott Theis
in Development at 16:02

Monday, May 07. 2018

SEC Enforcement Division Issues FAQs for Share Class Selection Disclosure Initiative

On May 1st, the Securities and Exchange Commission’s Division of Enforcement released answers to frequently asked questions concerning the Share Class Selection Disclosure (SCSD) Initiative. This initiative was announced earlier this year on February 12th with the goal of protecting advisory clients from undisclosed conflicts of interest and aid in returning money to those investors affected by previous undisclosed conflicts of interest.

Continue reading "SEC Enforcement Division Issues FAQs for Share..." »
Posted by
The Novaworks Team
in SEC at 10:45

Friday, May 04. 2018

LDC #83: Validating With The XBRL Object Part 2

Back in February, I wrote a blog post about how we can use the XBRL Object in Legato to do some extra validation on XBRL. In that blog we added a check for the number of custom elements. That was a relatively basic application of XBRL in Legato though, not very complicated. What if we want to do something a lot more in depth? For example, check to ensure we’re not defining any cyclic presentation relationships. By that, I mean that you have a dimension - member pair in a context, but in the presentation properties for a presentation where that context appears the domain for that dimension is set to the same member. That’s a cyclic relationship; saying something is it’s own parent element. This isn’t Futurama, you can’t be your own grandfather in XBRL.


Continue reading "LDC #83: Validating With The XBRL Object Part 2" »
Posted by
Steven Horowitz
in Development at 17:29

Tuesday, May 01. 2018

SEC Proposes Regulation Best Interest to Enhance Protections for Retail Investors

The Securities and Exchange Commission has proposed a package of rulemakings and interpretations designed to enhance the quality and transparency of investors’ relationships with investment advisers and broker-dealers. These changes will also preserve access to a variety of types of advice relationships and investment products. Generally, the proposed regulations would enhance investor protection by applying consistent principles to investment advisers and broker-dealers that provide for clear disclosures, encouraging exercising due care, and addressing conflicts of interest.

Continue reading "SEC Proposes Regulation Best Interest to..." »
Posted by
The Novaworks Team
in Investor Education, SEC at 13:22

Monday, April 30. 2018

SEC Releases Fee Rate Advisory #3 for 2018 Fiscal Year

On April 17, the SEC announced that the fee rates applicable to most securities transactions will be set at $13.00 per million dollars starting on May 22, 2018. The reduction in the fee rate is partly due to the higher dollar amount of covered sales in recent months.

Continue reading "SEC Releases Fee Rate Advisory #3 for 2018..." »
Posted by
The Novaworks Team
in SEC at 17:59

Friday, April 27. 2018

LDC #82: A Second Snap of the Clipboard

A few weeks ago we talked about what the clipboard object is and how you can get information off of the clipboard using Legato. This week we’re going to talk about putting information onto the clipboard using Legato by modifying one of our previous scripts.

Continue reading "LDC #82: A Second Snap of the Clipboard" »
Posted by
Joshua Kwiatkowski
in Development at 15:00

Friday, April 20. 2018

LDC #81: Automating Other Applications Through Legato

This week we released version 4.22b of the GoFiler line of products, and with the release came new Legato functions to control Internet Explorer through OLE. Note that in future releases of Legato we will be adding further OLE functionality. The concepts used in this blog can be applied to any other OLE automation project.

Continue reading "LDC #81: Automating Other Applications Through..." »
Posted by
David Theis
in Development at 13:13

Thursday, April 19. 2018

What's New in UGT 2018

With the last EDGAR release, the Securities and Exchange Commission updated EDGAR to accept the US GAAP 2018 taxonomy among other new taxonomies. It’s always a good practice to transition your SEC filings as soon as possible when the SEC accepts the new taxonomy year.

Continue reading "What's New in UGT 2018" »
Posted by
The Novaworks Team
in EDGAR News, FASB News, SEC, SEC Filing Help, US GAAP Taxonomy at 16:40

Friday, April 13. 2018

LDC #80: Dialog Boxes Part II — A Simple Dialog Box

In my first article about dialog boxes, I introduced how dialogs work and provided an overview dialog resources. In the article, we’ll dive into three dialog procedures and some common controls employed in a simple survey program.

Continue reading "LDC #80: Dialog Boxes Part II — A Simple Dialog..." »
Posted by
Scott Theis
in Development at 18:08

SEC Now Accepts 2018 US-GAAP Taxonomy

The Securities and Exchange Commission has begun accepting XBRL filings under the new 2018 US-GAAP Taxonomy. Four of the nine SEC-maintained XBRL taxonomies have been altered: the DEI, EXCH, RR,
and STPR taxonomies.

Continue reading "SEC Now Accepts 2018 US-GAAP Taxonomy" »
Posted by
The Novaworks Team
in EDGAR News, SEC, SEC Filing Help, US GAAP Taxonomy at 18:02
« previous page   (Page 87 of 103, totaling 1532 entries) next page »

Quicksearch

Categories

  • XML Accounting
  • XML AICPA News
  • XML FASB News
  • XML GASB News
  • XML IASB News
  • XML Development
  • XML Events
  • XML FERC
  • XML eForms News
  • XML FERC Filing Help
  • XML Filing Technology
  • XML Information Technology
  • XML Investor Education
  • XML MSRB
  • XML EMMA News
  • XML FDTA
  • XML MSRB Filing Help
  • XML Novaworks News
  • XML GoFiler Online Updates
  • XML GoFiler Updates
  • XML XBRLworks Updates
  • XML SEC
  • XML Corporation Finance
  • XML DERA
  • XML EDGAR News
  • XML Investment Management
  • XML SEC Filing Help
  • XML XBRL
  • XML Data Quality Committee
  • XML GRIP Taxonomy
  • XML IFRS Taxonomy
  • XML US GAAP Taxonomy

Calendar

Back August '25 Forward
Mo Tu We Th Fr Sa Su
Monday, August 25. 2025
        1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

Feeds

  • XML
Sign Up Now
Get SEC news articles and blog posts delivered monthly to your inbox!
Based on the s9y Bulletproof template framework

Compliance

  • FERC
  • EDGAR
  • EMMA

Software

  • GoFiler
  • SEC Exhibit Explorer
  • SEC Extractor
  • XBRLworks
  • Legato Scripting

Company

  • About Novaworks
  • News
  • Site Map
  • Support

Follow Us:

  • LinkedIn
  • YouTube
  • RSS
  • Newsletter
  • © 2025 Novaworks, LLC
  • Privacy
  • Terms of Use
  • Trademarks and Patents
  • Contact Us