I worte code about IMEI ....now want send sms of that

Login to reply to this topic.
Wed, 2007-04-18 07:39
Joined: 2006-08-19
Forum posts: 20
Hi All,


   I wrote one simple code about IMEI.Now it generates on c:\x.txt file. I want to send SMS of that x.txt file , How do i do that ?Any examples about that !


  EGetIMEI:
         buf.SetLength(0);
         buf.Append(_L("IMEI: "));
         if(iImei.Length()<(buf.MaxLength()-buf.Length()))
            buf.Append(iImei);
         else
            buf.Append(_L("increase size of buf in CMobInfo::RunL"));
         LogToFile(buf);
         break;


  then it will write to file

   logger.Replace(fs,_L("c:\\x.txt"), EFileShareAny | EFileWrite);
   iFirstTime = EFalse;
   }
  • Login to reply to this topic.