This tutorial shows how to:
Build wxWidgets with Visual Studio 2005
Configure the IDE
Create, configure and build small wxWidgets project
You can download this video here (1.77 MB).
wxWidgets
wxWidgets-related Articles and Tutorials
Tutorial shows how to:
Install Eclipse (with dependencies)
Install Eclipse CDT
Install MinGW
Install wxWidgets (2.7.0)
Build wxWidgets with MinGW
Create small C++ project with Eclipse
Perform project configuration to make it work with wxWidgets
You can download this video here (2 MB).
This tutorial shows how to:
Install MinGW
Build wxWidgets-2.8 with MinGW
Install Code::Blocks IDE (which has nice new wizard for wxWidgets projects from now)
Create, configure and build small wxWidgets project
You can download this video here (1.47 MB).
This tutorial shows how to:
Install MinGW
Build wxWidgets with MinGW
Install Code::Blocks IDE
Create, configure and build small wxWidgets project
You can download this video here (1.74 MB).
This tutorial shows how to:
Install MinGW
Install and build wxWidgets with MinGW
Install NetBeans
Create, configure and build small wxWidgets project
You can download this viedo here (2.51 MB).
This tutorial shows how to:
Install Microsoft SmartPhone 2003 SDK
Build wxWinCE
Build Minimal wxWidgets sample for smartphone
You can download this video here (1.57 MB).
Продолжение статьи о работе с базами данных на wxWidgets. Первая часть статьи доступна здесь. Вторая часть доступна здесь.
В третьей части рассказывается о том, как собрать приложение, использующее DatabaseLayer, SQLite и wxARG в Linux с помощью Eclipse.
Я использую дистрибутив Fedora Core 5, в котором не оказалось файла libsqlite3.a, необходимого для сборки проекта. Для того чтобы решить…
Продолжение статьи, рассказывающей о работе с базами данных в wxWidgets. Первую чать статьи можно почитать здесь.
В предыдущей части мы рассмотрели настройку проекта, сборку дополнительных библиотек и создание графического интерфейса приложения. В этой часит рассказывается как создать классы бизнес-логики с помощью утилиты wxARG и о том, как эти классы использовать в своем проекте.
Очень часто вижу на форумах темы, связанные с организацией доступа к базам данных для приложений на C++. Тема, сама по себе, довольно актуальная и очень интересная, хотя у новичков зачастую вызывает трудности. И в этот раз я хочу рассказать о том, что написание кросс-платформенных приложений на C++, использующих для своей работы базы данных, не является…
wxWidgets contains a set of classes which handle several archive formats. Most commonly used archive format is ZIP. This tutorial shows how to use wxWidgets API for reading and writing ZIP-files.
As you probably know, Microsoft Office 2007 produces .DOCX files which are ZIP archives which contain several XML files, images and few directories inside. After visiting Microsoft Developer’s Days I decided to add new feature to my current project and create new type of report which is based on .DOCX file format. This tutorial contains some techniques which you can use for generating such reports by yourself.