Neptune Century
Software development blogs, sample source code, templates, and other resources for .NET, C, C++, and SQL developers.
Love WinVisible? Did one of my blog posts help you? The best way to say thanks is to send a small donation to help with continued software development.
Learn how to work with html, css3, and javascript. Explore technologies like jQuery, MVC, Web Forms, and many others!
posted on 10/19/2016 7:07 AM by Eric Butler
A goof. That's what happened.
posted on 4/17/2015 4:53 AM by Eric Butler
If you come from a C++/C# background, you'll most likely have a good grasp on what the 'this' keyword is. But enter the JavaScript realm, and 'this' takes a whole new twist.
posted on 4/4/2015 5:47 AM by Eric Butler
One of the fundamentals of Windows desktop programming is drawing, and depending on your application, you may need to do a lot of it. In this example, I'll show you how to set up a simple form and draw on it using C++.
posted on 3/11/2015 9:00 AM by Eric Butler
In this post, I'll show you how to make an ajax call to a Web Api service using AngularJS. While working on another project using Angular, I needed to call a Web Api service and bind the returned data. I'm no expert with Angular, but I decided to do some exploring, and that's when I discovered the $http Angular service.
posted on 1/5/2015 6:38 PM by Eric Butler
I came across something in C# the other day, and it's something I haven't put much thought into, but I figured I would try to understand the differences between an explicit cast, and using the AS keyword.