How to install Wt (Witty) on Windows
Installing Wt can be a challenging task if you don’t have the right tools. I spent many days trying to make it work with MinGW and Visual Studio 2005. No luck. Here are some of my results: MinGW I was...
View ArticleTwo ways to create a Hello World application with Wt (Witty)
Let’s start by talking a little bit about some elements and methods you will find in the code. Inheriting from WApplication or WContainerWidget are the most common ways to start an application using...
View ArticleCreating a simple form using C++/Wt (Witty)
In this entry I’m going to create a simple form. This form will show you how to use controls and events in a very simple way. A couple things you have to notice before we start: I’m going to inherit...
View ArticleHow to use a WComboBox with C++/Wt (Witty)
In this entry I’m going to create a simple form that shows how to add items to WComboBox in two different ways. The first one is useful for static combo items while the second one might be used to...
View ArticleA simple C++/Wt (Witty) skeleton for starting an application
The objective of this lesson is to show you how to make a simple web page navigation using Wt. Before starting you have to remember that Wt can be used to create 1 URL applications. That means you can...
View Article