In one of my current projects I had to implement client-server communication and protection by MAC address when client machine can’t connect to server if its MAC address is not allowed, regardless of network or broadband connection. But what was a surprise that wxWidgets does not have API which allows obtaining MAC address in cross-platform way. So, I decided to write a small class which allows obtainig MAC address for Windows, Linux, Mac OS and Windows Mobile. Here it is:
Continue reading…
New video which shows ho to:
- Create minimal wxWidgets application for Windows Mobile
- Compile SQLite for Windows Mobile 5
- Compile wxSQLite3 for Windows Mobile 5
- Setup wxWidgets application to use wxSQLite
- Create SQLite database programmatically
- Create tables in database programmatically
- Fill tables with data
- Retrieve data
- Handle exceptions
Download video “Using wxSQLite3 for Creating Mobile Software”
Download sample “Using wxSQLite3 for Creating Mobile Software”
Появилась необходимость программно отправлять SMS с телефона под управлением Windows Mobile. Решил не изобретать велосипед и поиспользовать MAPI для этих целей. После недолгих поисков набрел на эту статью на CodeProject. Немного переделал код для использования с wxWidgets. Вот что получилось
Continue reading…
Several days ago I found How to draw gradient buttons post at Native Mobile blog. Looks nice but I think that using GradienFill()
is not very convenient because you need to fill all these TRIVERTEX
structures. wxWidgets provides more convenient way of drawing gradients by using wxDC::GradientFillLinear()
. Here is how it can be done in wxWidgets:
Continue reading…
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).