Jump to content

jonk

Active Members
  • Posts

    39
  • Joined

  • Last visited

Profile Information

  • Location
    Germany

jonk's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. your local smtp server send the message to at least one other smtp sever. Namly the responsible smtp server for the receiverdomain (the one wich is registered as mx-record in DNS). But the question you asked, is answered isn't it? You always need a smtp server regardless if it is a local one or not
  2. the attached code uses a smtp-server
  3. Hi, which database are you using? There is a really awesome thread for sqlite you can find here Sqlite-Autoit Some other threads you can find here in the Forum e.g about mySql and autoit. If you use an other database it also may be possible.
  4. a regexp to determine a valid ip: StringRegExp($s_ip, "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)") this Code is out of the Function _INetSmtpMail() which could be find in the "inet.au3" include.
  5. I have had this error too, after installing Beta 106. I used au2exe of the prodversion. After changing to betaversion au2exe it worked.
  6. Hmm your code works for me. I have tested it with beta and prod.
  7. what about the script I pm you? $string = "http://url/announce.php?passkey=ba5e00c1a3272c7cf970f40acdffac4c?info_hash=%7DM%D0%98%0Ef%0B%E2%A2%16I%00%C5%05%8B%F4%BF%E9J%3F&peer_id=%2DBC0060%2D2%2D0%87z%1D%BF%88p2%8F%1E&port=6999&natmapped=1&localip=127.0.0.1&uploaded=0&downloaded=0&left=0&numwant=200&compact=1&no_peer_id=1&key=18478&event=started%22%22" ;~ "jka" 'jkgjalsgjls' "62" $a_Result = StringRegExp($string,"=([^&]*)",3) If @error = 0 Then if isArray($a_Result) then for $i=0 to ubound($a_Result)-1 Step 1 msgbox(64,"Result",$a_Result[$i]) next EndIf ElseIf @error = 1 Then msgBox(64,"Error","Count invalid") ElseIF @error = 2 Then msgBox(64,"Error","Pattern invalid") EndIf it worked for me.
  8. jep, regular expressions sometimes make me mad too . I am using a nicetool to test my patterns: RegExp-Coach
  9. $string = "gjsagjkajkgjalsgjls624623ajgkjlgkagajgas359283" ;~ "jka" 'jkgjalsgjls' "62" $a_Result = StringRegExp($string,"(jka)([^62]*)",1) If @error = 0 Then msgbox(64,"Result",$a_Result[1]) ElseIf @error = 1 Then msgBox(64,"Error","Count invalid") ElseIF @error = 2 Then msgBox(64,"Error","Pattern invalid") EndIf well, some slight changes...and tadaaa?
  10. you can set an option at the begin of your script to get this feature: Opt("TrayIconDebug", 0) ;0=no info, 1=debug line info you could post your questions in dutch, but if you post in english more users can answer .
  11. to find or replace a string in a string wich must match a special Pattern try StringRegExpReplace $string = "123abcdefghijklk456789" $newString = StringRegExpReplace($string,"[a-zA-Z]+","yourString") If @error = 0 Then msgbox(64,"Result",$newString) ElseIf @error = 1 Then msgBox(64,"Error","Count invalid") ElseIF @error = 2 Then msgBox(64,"Error","Pattern invalid") EndIf ... you need a betaversion for this example ....
  12. Do you want to suppress the authentication-dialog?
  13. the same behavior for me -> tested
  14. this happen because $r1 is the first radio-Control on your Gui and is selected by default on loading
  15. [sectionName] Key=Value $a_KeyValues[1][1] -> 1st Key in the Section $a_KeyValues[1][1] -> 1st Value in the Section The number of elements returned will be in $result[0][0].
×
×
  • Create New...