Skip to content

Instantly share code, notes, and snippets.

@MikeRalphson
Created March 25, 2009 16:13
Show Gist options
  • Save MikeRalphson/85552 to your computer and use it in GitHub Desktop.
Save MikeRalphson/85552 to your computer and use it in GitHub Desktop.
Softshare Delta Warning in Perl
use strict;
use warnings;
use OLE; # OLE.pm module
# Make OLE connection: this creates an instance of an Delta object
my $delta = CreateObject OLE 'Delta.Executor.1' || die $!;
my $args = "";
my $c = 0;
for($c = 0; $c < @ARGV; $c++)
{
$args .= $ARGV[$c];
$args .= " ";
}
$delta->LogMessage(4, $args);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment