Jump to content

VernV3

Members
  • Posts

    3
  • Joined

  • Last visited

VernV3's Achievements

Seeker

Seeker (1/7)

1

Reputation

  1. Since this post had been somehow posted 6 times, when I asked the moderators that only the final one be kept that request somehow got overlooked and the final one was deleted. This is only a partially completed post, but since the final one was longer and had taken me an hour to put together, I won't be expanding this post again. I rarely post here (this was only my second post) and some idiot asked me on one of the other (duplicates) postings what the point was and told me not to post 5 times... If there is interest I will consider re-doing the expanded version again. I have better things to do than spend an hour putting a post together to have it bashed and deleted. (I don't have the ability on this forum to edit my posts nor delete them.)
  2. I noticed someone else Zip plugin, A plugin to add zip function to AutoIt V3. was making a zip plugin. I've been using 7-zip and/or rar via command line for awhile so thought I'd pass along some usage info. 7-zip (from the help file.) =============================================== 7z <command> [<switch>...] <base_archive_name> [<arguments>...] <arguments> ::= <switch> | <wildcard> | <filename> | <list_file> <switch>::= <switch_symbol><switch_characters>[<option>] <switch_symbol> ::= '/' | '-' <list_file> ::= @{filename} =============================================== I just noticed that the help file has "7z", not "7za" like I've been using. Anyway, an example of usage: CODE RunWait("7za.exe a -pPassword " & $s_ZipFileOutputFile & " " & "TestTextFile.txt", @TempDir, @SW_HIDE) It's very basic, but it shows just how easy it can be to call a command-line tool. 7-zip is freely available and is constantly being upgraded. I use it for those reasons and for the fact that it can recurse directories automatically, encrypt the output and choose the compression and output type. If someone can build into a pure AutoIT -uncompiled- script everything that 7-zip can do, then I will definately consider moving to it. Since I can't upload the help file here, I've copied some to here: Commands quick reference Command Description a Add b Benchmark d Delete e Extract l List t Test u Update x eXtract with full paths
  3. Hi, good job. You might want to change the following: If $s_CcAddress <> "" Then $objEmail.Cc = $s_CcAddress If $s_BccAddress <> "" Then $objEmail.Cc = $s_BccAddress to If $s_CcAddress <> "" Then $objEmail.Cc = $s_CcAddress If $s_BccAddress <> "" Then $objEmail.BCc = $s_BccAddress Also, here are a couple of links to the MSDN site for further research on the CDO.Message object for anyone interested: IMessage Interface http://msdn.microsoft.com/library/default....e_interface.asp Message CoClass http://msdn.microsoft.com/library/default....age_coclass.asp CDO: Part I http://msdn.microsoft.com/library/default....ml/cDOpart1.asp
×
×
  • Create New...