Look here www.derdack.com They've got everything from a COM object for SMS to an application server for mobile applications. Mobile banking could be easily accomplished with message master xsp. PS: I work for that company... :)
A
askadar
@askadar
Posts
-
Receive SMS by using Computer ? -
i wanna learn abt directx programming in vc++6 -
Converting _int64 to string_int64 is a compiler specific data type. Therefor it is not supported by the STL which is by design compiler independant (at least it's supposed to). You can use the printf() family of functions, they support _int64 via the prefix I64 (but only on MSVC). So this should work: sprintf(my_char_buffer, "%I64i", my_int64_num); - askadar
-
books on Windows device driversHi, what books on windows device drivers can you recommend for a newbie to the topic? Askadar