Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/23/2016 in all areas

  1. So your question has nothing to do with reading memory. No wonder people are confused. To act on a value only if it is different from the previous time, you should do something like this. Switch $value Case somevalue1 if $value <> $previousValue Then Do Something $previousValue = $value EndIf Case somevalue2 if $value <> $previousValue Then Do Something $previousValue = $value EndIf Case somevalue3 if $value <> $previousValue Then Do Something $previousValue = $value EndIf Case somevalue4 if $value <> $previousValue Then Do Something $previousValue = $value EndIf EndSwitch
    1 point
  2. Can you tell me why anybody should figure out the adress from a programm and modify your script for working with this programm? When you like to get help it's your turn to make a runable reproducer showing the issue. And therefore the example.exe you used in this reproducer script is needed. So hurry up and post both.
    1 point
  3. Hi again. You also can use Fileinstall() to force a copy or telnet.exe e.g. to @TEMPDIR Regards, Rudi.
    1 point
  4. Seems you run AutoIt 3.3.10.2. Those variables are part of later versions (at least 3.3.12.0 I think).
    1 point
  5. Sorry to be resurrecting an old thread, but since I am not creating a new UDF, but just updating this one to be functional under v3.3.14.1, I thought it best to just post the update in the original thread to be found more easily, and to render proper credit where due. Again, no new functionality, but tweaked to work with the latest AutoIt versions.
    1 point
  6. Hi, LuxiVDN. This is how I do it, in case I do something stupid and delete my source (not that that ever happens) Using this method, the source file only gets put onto the machine when you want it, not every time you run the script. You can make the switch for your command line anything you would like. In this case, if you execute "MySource.exe" /Extract from the Run line, it will extract the source code and then exit without actually running through the script. If StringInStr($cmdlineRaw, "/Extract") Then FileInstall("C:MySource.au3", @TempDir & "MySource.au3", 1) Exit EndIf
    1 point
  7. Gives me (crazy) idea to create app that uses SQLite for local (single user) access and MySQL for network / multi-user access.... hmmmm
    1 point
×
×
  • Create New...