http://www.visuallogic.org/ ?
Never heard of it. There have been lots of attempts at making programming easier by allowing people to put pieces together like a flowchart. Things get hard if you have to do certain kinds of task, such as managing concurrency or parsing specific file formats, but 99% of programming is comparatively easy and people can easily make careers in programming without ever hitting that 1% of hard stuff.
The next hardest part of programming is writing your code in such a way that makes sense to someone else (or to yourself 6 months from now). This means things like how you decompose a problem into branches and loops and subroutines, as well as how you name your variables and subroutines. And comments. Comments are a wonderful thing when done properly. Don't describe what the code is doing, describe why the code exists. People will be able to tell what the code is doing if it's named and organized well. Code alone can't tell you why something needs to be a certain way, though.
The hard part of software development isn't programming, though, it's modeling the processes that need to be executed and figuring out what needs to be done in the first place. Programming is just one step in software development.