Symbian OS | Pocket PC | Smartphone | Android | BlackBerry | Apple iPhone OS | Java | Mobile Gaming | Linux | Palm | Win CE | Tablet  
     

Free Mobile Software, Themes, Games, Apps for PDA and Smartphones

     
Search by Device
My Device

  
Search by Category
Business & Profession
Databases
Dictionary & Translator
Entertainment
Finance
Games
Healthcare & Medicine
Internet & Communications
Multimedia & Graphics
Organisation & Productivity
Programming & Development
Reading
Science & Education
System Utilities
Themes & Wallpapers & Skins
Travel & Navigation
Search by Platform
Android
Apple iPhone OS
iPad
iPhone
iPod Touch
BlackBerry
Java
Linux
Maemo Nokia Internet Tablet
MeeGO
Sharp Zaurus
Mobile Gaming
Nintendo DS
Playstation 3
Playstation Portable
Wii
Xbox 360
Palm OS
Symbian OS
Series 60
Series 80
Series 90
UIQ
Tablet PC
Windows CE.NET
Windows Mobile Pocket PC
Windows Mobile Smartphone
     


Achivx Partner
 
 
Mobile SMS Remote





Mobile SMS Remote
Version: 1.0

Platforms: Pocket PC


Categories: Internet & Communications

Upload date: 16 Aug 11

Developer: Chris Craft

License: Freeware

Downloads: 149

File Size: 82 Kb
Download Free Mobile SMS Remote 



Rating: 2.0/5 (Total votes: 2)




  Mobile SMS Remote - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET.

People can use SMS to send and receive information through text messages, but with the power of Windows Mobile it is easy for application to send and receive commands and data. There is a big movement for software to expose its features and functions to other programs. But image a world, that probably isn't too far, where your mobile device has it's own API that you and others can use to access its data and functions.

Where could this be useful? Well many companies need the ability to send "Alerts" of some kind to their workers. It is easy to use the Windows Mobile SMS API to have a custom written application that check for specially "tagged" SMS messages.

SMS Remote is an application that could run on two or more Windows Mobile device and allow each of the phones run to support "commands" on the phones. For example, a user could get the date and time of another device running SMS Remote. Or the user could run a command to get the other phone's current GPS location information. The possibilities are limitless. Both devices are both servers and both clients in other words a very simple peer-to-peer network using SMS technology. How cool is that?

What if sometimes we don't want others to be able to run commands on our device remotely? First of all we could always exit the application. The application must be running in other to execute remote commands. Be I have also added an "Allow Remote Commands" feature.

How can we send SMS remote commands? Use the SMS command ComboBox and choose a command, and enter the remote device's phone number. Then just click "Send".

How can we tell what commands have been remotely run on our device? There is a received commands listing at the bottom the screen. It shows the phone number of the device that send the command, the time the command arrive, and which command was requested.

This is a rough prototype of an idea that has HUGE potential. Some point in the next ten years this concept will take off and become something along the lines of Mobile 2.0.

The trick to this application is using the very cooly named Windows Mobile 6.0 SDK MessageInterceptor class. We can use it to have any SMS that begins with "30days:" fire an event in our application that we will then handle. This is very, very, very simple for something so powerful. Use it!

MessageInterceptor _smsInterceptor = null;
private void LoadSmsIntercepter()
{
_smsInterceptor = new MessageInterceptor(InterceptionAction.NotifyAndDelete);

_smsInterceptor.MessageCondition =
new MessageCondition(MessageProperty.Subject,
MessagePropertyComparisonType.StartsWith, "30days:", true);
_smsInterceptor.MessageReceived += SmsInterceptor_MessageReceived;
}

The rest is simple. Was the SMS a "command" or a "result"? If command we need to run and return a result. If result we need to act on or display to device user.

Possibilities:

I implemented the get date and time function, but not the GPS function. This would be a very useful addition to the application that I would love to say a reader did. Or how about a way to add Internet Explorer Mobile favorites? Or how about something more Web 2.0 like what song is currently playing.
 
Like it? Share with your friends!

If you got an error while installing Themes, Software or Games, please, read FAQ.
 

Supported operating systems: Windows Mobile 2003, Windows Mobile 5.0, Windows Mobile 6 Classic, Windows Mobile 6 Professional, Windows Mobile 6.1 Classic, Windows Mobile 6.1 Professional
 
Similar Software:

SMSArchivererSMSArchiverer
SMSArchiverer allows you to create SMS contact folders and store each outgoing SMS to the contact as a tiny dated/timed text file in the SMS contacts folder. To send a SMS tap on the folder contact to start the SMS composer. When you send the SMS a tiny text file with the date/time stamp is placed into the contacts folder
WMM ShopsWMM Shops
WMM Shops-Management application and the search of open shops / institutions. Search is possible according to time and type of goods / services of shops / institutions. In the basic version of the application contains SK, CZ, EN language. To translation to other languages contact author
Mobile Tracking SystemMobile Tracking System
Mobile Tracking System is a new project from Fightersoft Multimedia that provides real time tracking and messaging services. How does it work? The client version of MTS is a smartphone application that can get the identification data of the current cell in use by the mobile phone
SMSesXMLSMSesXML
SMSesXML converts your SMS Inbox or OutBox folder into a XML file. Select the folder and tap the button to export the SMSes with the date/sender and text of each message as the XML fields. You can also preview the XML file in Pocket Internet Explorer
SMSSenderSMSSender
SMSSender is a group SMS sending software. With this Software you can send a SMS to a contacts list. Contacts list can be a textfile, a CSV file or can be add manually. For add manual contact just enter numbers with semicolon seperated format & press add button. For add contacts with txt file, just enter one number per line & import file within software
Best Reminder (PPC)Best Reminder (PPC)
Best Reminder - It is very easy to miss the initial sound of an incoming message or a phone call especially if the smartphone was in another room at this moment, in a leather wallet or in your jacket when you''re in a car or at the street
PhoneSMSPhoneSMS
PhoneSMS - This program is a guide to 120 cell phone SMS short terms. Start typing the term to display the meaning. You can sort by code or meaning. Tap on the term to display fullscreen. This program requires that you have both the 'BeanDLL.dll' file ** and ** the runtime files for Visual Basic on your PocketPC computer
GodswMobile Windows Mobile Transfer SuiteGodswMobile Windows Mobile Transfer Suite
GodswMobile Windows Mobile Transfer Suite is a software package which contains two mainly functions-sms transfer and contacts transfer.With this package,you could transfer both mobile text messages and contacts to pc
SMSpamSMSpam
SMSpam -New User-Interface and interval spamming. A little app for people with contracts with free SMS. Maybe you don't use all your free SMS, so with this app you can play a trick to your friends (or enemies ^^). Use at own risk !!! [Warning:] * Extra charges may occur in case you don't have a contract including free text messages
Qimsoft SMS AssistantQimsoft SMS Assistant
Qimsoft SMS Assistant - Enhance native messaging application for sending text message (SMS) to a group of contacts, reject text message (SMS) spam, and automatically hang up incoming call and reply a pre-defined text message (SMS). It include Group SMS, Multi-contacts SMS, SMS firewall and SMS Reply
 

Other Software by developer «Chris Craft»:

SMS LoggerSMS Logger
SMS Logger - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET. I've had a lot of requests for SMS related applications
TripprTrippr
Trippr - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET. You've probably already figured out what this application does
Mobile SignatureMobile Signature
Mobile Signature - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET
GPS ClockGPS Clock
GPS Clock - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET. I couldn't resist creating another GPS related mobile application
Mobile QuizMobile Quiz
Mobile Quiz - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET. Today we are going to look at another classic goal in Mobile development, data collection
Lunch-O-MaticLunch-O-Matic
Lunch-O-Matic - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET. Being a geek, I have a lot of geek friends. Being friends, we tend to eat lunch together
Prize PickerPrize Picker
Prize Picker - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET. There is probably someone out there who doesn't think this is the best looking application ever
Mobile WeatherMobile Weather
Mobile Weather - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET
Pocket Death ClockPocket Death Clock
Pocket Death Clock - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET. Let's have some fun today. And do an application that is just for kicks
What Is My IP?What Is My IP?
What Is My IP? - This application is part of the author's "30 Days of .NET" initiative to develop 30 mobile applications in 30 days. The source code of the application is included in order to help programmers new to Windows Mobile development write applications in .NET. You may have seen sites like WhatIsMyIP.com, IPChicken.com, and my favorite IPCow.com

» show more

 

Comments on Mobile SMS Remote:

Comments not found

Name:


Comment:


Enter text from image below:

Turn on images!

 
 

If you noted an error or download link is broken, please, report it via this page or use comments.
 

Mobile SMS Remote is compatible with your device Asus MyPal A686
 
 
© Pantich 2009 - 2025 All rights reserved.