I'm looking for a way to send Sms throught MbnApi using : http://msdn.microsoft.com/en-us/library/windows/desktop/dd323167(v=vs.85).aspx IMbnSms interface. But it's not working at all. I could not have a sample project to see how to do it. I'm coding on C# .Net Thx public class NaErrorHandling { public Dictionary<UInt32, string> Hresults { get;private [...] read more
I have the following code snippet which calls a COM interface api (MS Mobile API) try { MbnInterfaceManager mbnInfMgr = new MbnInterfaceManager(); IMbnInterfaceManager infMgr = (IMbnInterfaceManager)mbnInfMgr; IMbnInterface[] interfaces = (IMbnInterface[])infMgr.GetInterfaces(); /// /// NOTE: Will throw exception here if no Adapter Present - "Service not Started" /// foreach (IMbnInterface mobileInterface in [...] read more