Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/26/2012 in all areas

  1. try this: $string = 'C:yourdiryourfile.xml' $oXML=ObjCreate("Microsoft.XMLDOM") $oXML.load($string) ; load file $oVersion= $oXML.selectSingleNode("//vers") ConsoleWrite ( $oVersion.text & @CRLF ) else, i'm out of ideas for you...is it possible you have multiple nodes = 'vers'?
    1 point
  2. funkey

    BigNum UDF

    You could use my GMP-UDF: I added a Xor example: http://www.autoit.de/index.php?page=Attachment&attachmentID=16822&h=694d3496bcf2998e0fabc1d4e2b4eb8ae4327517
    1 point
  3. I almost began to overthink abd thought of maybe MOD_NOREPEAT constant added to source code but then maybe that's just used with registering a hotkey. Then I just thought, stop it john you jackass.
    1 point
  4. llewxam

    Folder Sync Tool

    Mirror is actually the hardest part of the code, and honestly I never use it, so it will probably be disappearing from any future builds. The idea is to remove any files and folders in the destination that do not exist in the source. If you rename a file, or even just delete one, the Mirror function would remove that from the destination, since it no longer exists in the source. Kind of a housekeeping operation. As for the online backup, that depends on where you save your online files. My web host (HostGator) has some sort of feature where you can set up a mapped drive to their server, as does Mozy and Jungle Disk. So, as long as your online storage provider gives you a drive letter you could use this with no problems. If you wanted to do something more like FTP, there are plenty of UDFs with FTP support, and you could do something like: Generate an MD5 hash for a file Save the file name and the MD5 to a database Compare the MD5 from your file to the MD5 on the server Update if the MD5 is different. Thanks for the comments. Ian
    1 point
×
×
  • Create New...