Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/05/2019 in all areas

  1. This is the best software ... the best forum .... Thank you very much
    1 point
  2. Well, for 4 bits flag, I suppose it is alright but imagine that you need to extract 8 or 16 bits flag. The approach I proposed is simpler and it is adaptable to any array size...
    1 point
  3. What are your requirements? or is your goal to have solution with AT commands and AutoIt and your own phone? This gives a good direction: https://www.smssolutions.net/tutorials/gsm/sendsmsat/ Looking at MS and HUAWEI solution I assume you need 2 apps in some client/server logic On your phone On your PC On your phone app this should happen http://weibeld.net/mobcom/at-commands.html And many alternatives probably easiest to buy a cheap usb dongle with a sim and then do just some com port programming with the relevant AT commands https://routerunlock.com/send-command-usb-modem-using-putty/ On my Huawei I have the HISuite which works well when connected over USB Your Phone app in Windows 10 https://en.wikipedia.org/wiki/Your_Phone https://github.com/microsoft/Windows-universal-samples/tree/master/Samples/SmsSendAndReceive https://www.developershome.com/sms/howToSendSMSFromPC.asp https://www.codeproject.com/Articles/886784/How-to-Send-Receive-and-Delete-SMS-with-IOT-Device
    1 point
  4. Looks like you're dealing with unicode characters. This revised code works for me -- #include <Array.au3> Global $sEML = "Message-ID: <20191203114629.18789103.20749@sailthru.com>"&@CRLF $sEML &= "Subject: =?utf-8?B?8J+TiCA1IG9mIHRoZSBCZXN0IFN0b2NrcyB0byBCdXkgZm9yIERlY2VtYmVy?="&@CRLF $sEML &= "MIME-Version: 1.0"&@CRLF ConsoleWrite(">>> $sEML: "&@CRLF&$sEML&@CRLF) Global $sSubject = _QuotedPrintable_DecodeEncodedWord($sEML) ConsoleWrite(">>> $sSubject (_QuotedPrintable_DecodeEncodedWord): "&@CRLF&$sSubject&@CRLF) $sSubject = StringReplace($sSubject, ChrW(55357) & ChrW(56520), "") ; <---------------------------- ERROR? ConsoleWrite(">>> $sSubject (StringReplace): "&@CRLF&$sSubject&@CRLF) Global $aArray = StringSplit($sSubject, "", $STR_NOCOUNT) For $i = 0 To UBound($aArray)-1 ConsoleWrite($aArray[$i] & " - " & AscW($aArray[$i])& @CR) Next
    1 point
  5. Nine

    File functions

    What @Musashi wanted to show you is how to debug your script, not to solve it. ConsoleWrite and ArrayDisplay are there to trace the path of the script. With that you should understand why your script is not working properly. If you still need help, please provide images of the Scite Console and the ArrayDisplay as well. Btw, your fileopen, fileflush and fileclose are useless.
    1 point
  6. Something like this (untested): Global $oOL = _OL_Open() Global $oInspector = $oOL.ActiveInspector Global $oItem = $oInspector.CurrentItem Global $oItem.Send
    1 point
  7. Go to AutoIt Installed folder and open the file AutoIt.chm and: UnCheck Always ask before openning this file. And Press Open. F1 now working!
    1 point
×
×
  • Create New...