Posted on March 30th, 2009 by admin
Some monthes ago i found article on RSDN that explains how to enumerate process for windows, there was like 5 or 6 methods, one of them says to use ToolHelp api for that, and i asked my self “is it possible to use ToolHelph API on Windows CE, Windows Mobile?”… 10 minutes on MSDN and […]
Filed under: Programming | 6 Comments »
Posted on March 25th, 2009 by admin
If we will ask somebody experienced questions like:”What should we use to establish dial up connection on Windows”, i`m totally sure that 90% of asked will answer use RAS library!
If some somebody will ask me what do to establish GPRS connection on Windows Mobile i answer use Connection Manager API, but there is nothing regarding […]
Filed under: Programming | 22 Comments »
Posted on March 21st, 2009 by admin
There are many reasons to make browser serf pages through proxy server:
someone wanna catch http requests/responses
someone wanna hide his IP
so on
What to do if you want set proxy for android browser? there some ways:
add record to database: /data/data/com.android.providers.settings/databases/settings.db
pull database to pc add record (using for example sdk tool sqlite3) and replace existing db
make changes in […]
Filed under: Programming | 27 Comments »
Posted on March 20th, 2009 by admin
In previous post i wrote small description how asynchronously work with com port, in this post i gave small list where we can use it.
Today i wanna explain how to send sms if you have GSM modem connected to Com Port using created class and AT commands.
The simpliest way if your GSM modem support text […]
Filed under: Programming | 8 Comments »
Posted on March 7th, 2009 by admin
I think most of us heard about young mobile platform Android by Google.
Google recomend to use Java for developing applications for Android, but there nothing dificult to use gcc cross compiler to build applications on C or C++, in one of next post i will write how to build application/library on c/c++ using android toolchain.
[…]
Filed under: Programming | 11 Comments »
Posted on March 7th, 2009 by admin
From time to time i have tasks to read/write data to Com port, for example:
1. Sending/Receiving sms (using GSM modem)
2. Working with com port connected printer
3. GPS device
4. Some exotic devices, so on
there tons components you can find using google, but perhaps i was so lazy to find what i need or something else… anyway […]
Filed under: Programming | 6 Comments »
Posted on March 6th, 2009 by admin